diff --git a/.gitignore b/.gitignore
index de6d529..9e08885 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,7 +5,7 @@ __pycache__/
# C extensions
*.so
-
+wandb/
# Distribution / packaging
.Python
build/
@@ -159,4 +159,8 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
-testing/
\ No newline at end of file
+testing/subtensor/
+venv/
+*.log
+venv-6.11/
+venv-testnet
diff --git a/README.md b/README.md
index 6f16e6d..890721c 100644
--- a/README.md
+++ b/README.md
@@ -1,134 +1,133 @@
-# **OCR Subnet Template**
-[](https://discord.gg/bittensor)
-[](https://opensource.org/licenses/MIT)
+

+
+# **Infinite Games**
+
+
+[Discord](https://discord.gg/eZaZ6unD) • [Incentivized Testnet](https://tally.so/r/wkYDqo) •
+[Website](https://www.infinitegam.es/) • [Twitter](https://twitter.com/Playinfgames) • [Network](https://taostats.io/)
---
-## The Incentivized Internet
+[](https://opensource.org/licenses/MIT)
-[Discord](https://discord.gg/bittensor) • [Network](https://taostats.io/) • [Research](https://bittensor.com/whitepaper)
----
-- [Subnet quickstarter](#subnet-quickstarter)
-- [Introduction to subnets (Optional)](#introduction-to-subnets-optional)
-- [Cloning the Bittensor Subnet Template](#cloning-the-bittensor-subnet-template)
-- [Incorporating Python notebook code](#incorporating-python-notebook-code)
- - [Before you proceed](#before-you-proceed)
- - [Changing the code and filenames in this repo](#changing-the-code-and-filenames-in-this-repo)
- - [Code from notebook](#code-from-notebook)
-- [Preparing to run the OCR subnet](#preparing-to-run-the-ocr-subnet)
-- [Running the OCR subnet](#running-the-ocr-subnet)
-- [License](#license)
----
-## Subnet quickstarter
+
-This repo shows how you can quickstart creating a Bittensor subnet. This is a companion repo for the [OCR Subnet Tutorial](https://docs.bittensor.com/tutorials/ocr-subnet-tutorial).
+
-In specific, this repo demonstrates the power of:
+
+
+
-- Starting from your Python notebook that contains the validated code for your incentive mechanism (in this case, the OCR), and
-- Incorporating the Python notebook code into the [Bittensor Subnet Template](https://github.com/opentensor/bittensor-subnet-template) to quickly build a Bittensor subnet.
-**Start with the template**
+# Forecasting of Future Events
-The Bittensor Subnet Template abstracts away the underlying complexity of Bittensor API, the underlying blockchain and other boilerplate code. The Bittensor Subnet Template also contains the required installation instructions, scripts, and files and functions for building Bittensor subnets with custom incentive mechanisms.
+## Introduction
-**Incorporate Python notebook code**
-In this repo we incorporate a custom incentive mechanism called **Optical Character Recognition (OCR)**. The Bittensor document [OCR Subnet Tutorial]() contains an introduction to the OCR subnet, links to the Python notebook and the detailed instructions for integrating the notebook code into this repo.
+We incentivize the prediction of future events. We currently restrict the prediction space to binary future events listed on Polymarket. We will expand soon to new markets and providers. We are focused on *judgemental forecasting* rather than *statistical forecasting*. We hence expect the models used by miners to be LLMs.
----
+### High-level mechanism
-## Introduction to subnets (Optional)
+Miners submit their predictions to validators. Each prediction has to be done early enough before the event underlying the prediction settles. Once the event settles, the validators that received the prediction score the miner.
-**You can skip this section if you** are already familiar with Bittensor subnets.
+## LLMs open new predictive capabilities
-The Bittensor blockchain hosts multiple self-contained incentive mechanisms called **subnets**. Subnets are playing fields in which:
-- Subnet miners who produce value, and
-- Subnet validators who produce consensus
+Making predictions is a hard task that requires cross-domain knowledge and intuition. It is often limited in explanatory reasoning and domain-specific (the expert in predicting election results will differ from the one predicting the progress in rocket-engine technology) ([1]). At the same time it is fundamental to human society, from geopolitics to economics.
-determine together the proper distribution of TAO for the purpose of incentivizing the creation of value, i.e., generating digital commodities, such as intelligence or data.
+
-Each subnet consists of:
-- Subnet miners and subnet validators.
-- A protocol using which the subnet miners and subnet validators interact with one another. This protocol is part of the incentive mechanism.
-- The Bittensor API using which the subnet miners and subnet validators interact with Bittensor's onchain consensus engine Yuma Consensus. The Yuma Consensus is designed to drive subnet validators and subnet miners into agreement on who is creating value and what that value is worth.
+LLMs approach or surpass human forecasting abilities. They near on average the crowd prediction on prediction market events ([1]), and surpass humans in predicting neuroscience results ([2]). They are also shown to be calibrated with their predictions i.e confident when right. Through their generalization capabilities and unbounded information processing, LLMs have the potential to automate the prediction process or complement humans.
-**ALSO SEE**
-- [Introduction](https://docs.bittensor.com/learn/introduction).
+### Real-world applications
-## Cloning the Bittensor Subnet Template
+The value of the subnet first relies in the improvement of the efficiency of prediction markets. This value can be extracted by validators through arbitrage. The validators may obtain a better knowledge of the probability of an event settling and communicate this information to a prediction market by opening a position.
-Read the [OCR Subnet Tutorial](https://docs.bittensor.com/tutorials/ocr-subnet-tutorial) first. Then follow the below steps when you are ready to create your own OCR Subnet repo.
+The first applications built on top of our subnet could be related to prediction markets. A trader could query our market to obtain the most up to date and relevant predictions to their portfolio based on the current news landscape (LLMs would be constantly ingressing the most up to date and relevant news articles). They could then readjust their positions accordingly or trade directly on this information.
-1. Go to [Bittensor Subnet Template](https://github.com/opentensor/bittensor-subnet-template) and click on the **Use this template** dropdown on the top right.
-2. Click on **Create a new repository** and give your preferred name in the **Repository name** field. We will use the name **ocr_subnet** in this tutorial.
-3. Optionally provide a description in the **Description** field.
-4. Choose either **Public** or **Private**.
-5. Click on **Create repository**.
-6. GitHub will now show you your **ocr_subnet** repository page.
-7. Clone your **ocr_subnet** repo locally.
+In the long term, a validator could provide paid economic forecasts or more generally the output of any forward-looking task addressed to an LLM ([2]). A customer might then provide a series of paid sub-queries related to the information they aim at retrieving.
----
+
-## Incorporating Python notebook code
-### Before you proceed
+## Miners
-Now we begin to incorporate our Python notebook code into this repo. At this stage we strongly recommend that you first go over the validated code in the Python notebook as presented in the [OCR Subnet Tutorial](https://docs.bittensor.com/tutorials/ocr-subnet-tutorial). Familiarize yourself with the code flow in the notebook before proceeding further.
+Miners compete by sending to the validators a dictionary where the key is a [Polymarket condition id](https://docs.polymarket.com/#overview-8) to an event $E$ and the value is a probability $p$ that $E$ is realized. For example, $E$ could be *SBF is sentenced to life*.
-### Changing the code and filenames in this repo
-As described in [this section of Bittensor Subnet Template](https://github.com/opentensor/bittensor-subnet-template?tab=readme-ov-file#introduction), to write our own incentive mechanism, we must edit the below files in this cloned OCR subnet repo:
+### Miner strategy
-1. `template/protocol.py`: Contains the definition of the protocol used by subnet miners and subnet validators.
-2. `neurons/miner.py`: Script that defines the subnet miner's behavior, i.e., how the subnet miner responds to requests from subnet validators.
-3. `neurons/validator.py`: This script defines the subnet validator's behavior, i.e., how the subnet validator requests information from the subnet miners and determines the scores.
+A reference providing a **baseline miner** strategy is the article ["Approaching Human Level Forecasting with Langage Models"](https://arxiv.org/html/2402.18563v1?s=35) ([1]). The authors fine-tune an LLM to generate predictions on binary events (including the ones listed on Polymarket) which nears the performance of human forecasters when submitting a forecast for each prediction, and which beats human forecasters in a setting where the LLM can choose to give a prediction or not based on its confidence.
-Below we show the changes we made to this OCR subnet repo. You can use your preferred names, but ensure that your code is consistent with the names you use.
-- Renamed `/template` to `/ocr_subnet`.
-- `ocr_subnet/protocol.py`: Renamed the synapse to `OCRSynapse` and provided the necessary attributes to communication between miner and validator.
-- `ocr_subnet/forward.py`: Included the synthetic data generation (invoice pdf) and used `OCRSynapse`.
-- `ocr_subnet/reward.py`: Added custom loss function to calculate the reward.
-- `neurons/miner.py`: Used `pytesseract` for OCR, and used `OCRSynapse` to communicate with validator.
+## Validators
-**Additional changes**
+Validators record the miners' predictions and score them once the Polymarket events settles. At each event settlement, a score is added to the moving average of the miner's score. This simple model ensures that all validators score the miners at roughly the same time. Importantly, we implement a **cutoff** for the submission time of a prediction, currently set at 24 hours. This means that miners must submit their prediction for a given Polymarket event 24 hours before the settlement time.
-In addition, make a note to update the following files:
-- `README.md`: This file contains the documentation for the OCR project.
-- `contrib/CONTRIBUTING.md` and other files in `contrib`: Contains the instructions for contributing to your project. Update this file and the directory to reflect your project's contribution guidelines.
-- `ocr_subnet/__init__.py`: This file contains the version of your project.
-- `setup.py`: This file contains the metadata about your project. Update this file to reflect your project's metadata.
+## Scoring rule
+*We will launch our subnet with model 1 and then move to model 2.*
+
+Denote by $S(p_i, o_i) = (o_i - p_i)^2$ the quadratic scoring rule (the Brier score) for a prediction $p_i$ of a binary event $E_i$ and where $o_i$ is $0$ or $1$ depending on the realization of $E_i$. The lower the quadratic scoring rule the better the score. A quadratic scoring rule is strictly proper i.e it strictly incentivizes miner to report their true prediction.
+
+### model 1
+
+The validators directly use a **quadratic scoring rule** on the miners' predictions. If the miner predicted that $E_i$ be realized with probability $p_i$, upon settlement of the outcome the validator scores the miner by adding $S(p_i, o_i)$ to their moving average of the miner's score.
+
+### model 2
+
+In this model, we discard the moving average update and validators record the scores they obtained at settlement time. The validators then all update the aggregated scores of miners at an agreed upon time.
+
+We implement a **sequentially shared quadratic scoring rule**. This allows us to score $0$ miners that do not bring new information to the market, as well as to bring value by aggregating information.
+The scoring rule functions by scoring each miner relatively to the previous one. The score of the miner $j$ is then $S_j = S(p_j, o_i) - S(p_{j-1}, o_i)$ where $p_{j-1}$ is the submission of the previous miner. Importantly this payoff can be negative, therefore in practice when aggregating the scores of a miner we add a $\max(-,0)$ operation.
+
+The aggregated score of a miner that a validator sends to the blockchain is the following:
+
+$$\frac{1}{N} \sum_j S_j$$
+where $N$ is the number of events that the validator registered as settled during the tempo.
+
+We give miners a score of $0$ on the events for which they did not submit a prediction.
+
+In the first iteration of the model, instead of paying the miner for their delta to the previous prediction, we will pay them for their delta to the Polymarket probability at the submission time i.e $S(p_j, o_i) - S(\text{price on polymarket at t}, o_i)$ where $p_j$ is submitted at $t$.
+
+## Incentive compability
+
+See [here](docs/mechanism.md) for a discussion of our mechanism.
+
+## Roadmap
+
+We first aim at adjusting the scoring rule by updating to the *model 1* described above. We will likely implement several other updates in order to make the mechanism more robust. One of them could be a commit-reveal step for the predictions submitted by miners. Some updates may be due to experimental data.
+
+We would also possibly like to make the prediction framework more LLM specific and create mechanisms that explicitely generate data for the fine-tuning of prediction focused LLMs.
+
+We plan to extend the set of predicted events to other prediction markets and event providers (Metacalculus, Azuro). Our goal is to obtain a continuous feed of organic events by using e.g Reuters' API or WSJ headlines.
+
+
----
-### Code from notebook
+## Running a miner or validator
-Next, copy the code from the Python notebook into specific sections of this repo. Follow Steps 1 through 3 of [OCR Subnet Tutorial](https://docs.bittensor.com/tutorials/ocr-subnet-tutorial) and copy the code from the linked Python notebook into this repo.
+Regarding instructions and requirements, see [here](docs/validator.md) for validators and [here](docs/miner.md) for miners.
+## Setting up a bittensor wallet
+A detailed explanation of how to set up a wallet can be found [here](https://docs.bittensor.com/getting-started/wallets).
+We also provide some indications [here](docs/wallet-setup.md).
-## Preparing to run the OCR subnet
-Before you proceed with the installation and running of the subnet, note the following:
-- Use these instructions to run your subnet locally for your development and testing, or on Bittensor testnet or on Bittensor mainnet.
-- **IMPORTANT**: We **strongly recommend** that you first run your subnet locally and complete your development and testing before running the subnet on Bittensor testnet. Furthermore, make sure that you next run your subnet on Bittensor testnet before running it on the Bittensor mainnet.
-- You can run your subnet either as a subnet owner, or as a subnet validator or as a subnet miner.
-- **IMPORTANT:** Make sure you are aware of the minimum compute requirements for your subnet. See the [Minimum compute YAML configuration](./min_compute.yml).
-- Note that installation instructions differ based on your situation: For example, installing for local development and testing will require a few additional steps compared to installing for testnet. Similarly, installation instructions differ for a subnet owner vs a validator or a miner.
+## References
-## Running the OCR subnet
+| Reference ID | Author(s) | Year | Title |
+|--------------|-----------|------|-------|
+| 1 | Halawi and al. | 2024| [Approaching Human Level Forecasting with Langage Models](https://arxiv.org/html/2402.18563v1?s=35)|
+| 2 | Luo and al. | 2024 | [LLM surpass human experts in predicting neuroscience results](https://arxiv.org/pdf/2403.03230.pdf)|
-- **Running locally**: Follow the step-by-step instructions described in this section: [Running Subnet Locally](./docs/running_on_staging.md).
-- **Running on Bittensor testnet**: Follow the step-by-step instructions described in this section: [Running on the Test Network](./docs/running_on_testnet.md).
-- **Running on Bittensor mainnet**: Follow the step-by-step instructions described in this section: [Running on the Main Network](./docs/running_on_mainnet.md).
---
diff --git a/docs/infinite-games.jpeg b/docs/infinite-games.jpeg
new file mode 100644
index 0000000..3536730
Binary files /dev/null and b/docs/infinite-games.jpeg differ
diff --git a/ocr_subnet/base/__init__.py b/docs/mechanism.md
similarity index 100%
rename from ocr_subnet/base/__init__.py
rename to docs/mechanism.md
diff --git a/docs/miner.md b/docs/miner.md
new file mode 100644
index 0000000..515bc51
--- /dev/null
+++ b/docs/miner.md
@@ -0,0 +1,50 @@
+
+# Miner
+
+As a miner you should implement your prediction strategy in the `forward` function.
+
+# System requirements
+
+TBD
+
+## Direct Run
+
+Run the following command inside the `infinite_games` directory:
+
+`python neurons/miner.py --netuid 155 --subtensor.network test --wallet.name {default} --wallet.hotkey {default}`
+
+## PM2 Installation
+
+Install and run pm2 commands to keep your validator online at all times.
+
+
+`sudo apt update`
+
+`sudo apt install npm`
+
+`sudo npm install pm2 -g`
+
+`Confirm pm2 is installed and running correctly`
+
+`pm2 ls`
+
+
+Example Command for miner
+
+`pm2 start neurons/miner.py --interpreter /usr/bin/python3 --name miner -- --wallet.name miner --netuid 155 --wallet.hotkey hotkey --subtensor.network testnet --logging.debug`
+
+
+Variable Explanation
+
+--wallet.name: Provide the name of your wallet.
+--wallet.hotkey: Enter your wallet's hotkey.
+--netuid: Use 155 for testnet.
+--subtensor.network: Specify the network you want to use (finney, test, local, etc).
+--logging.debug: Adjust the logging level according to your preference.
+--axon.port: Specify the port number you want to use.
+
+
+Monitor the status and logs:
+
+`pm2 status`
+`pm2 logs 0`
diff --git a/docs/running_on_mainnet.md b/docs/running_on_mainnet.md
deleted file mode 100644
index bf8842d..0000000
--- a/docs/running_on_mainnet.md
+++ /dev/null
@@ -1,244 +0,0 @@
-# Running Subnet on Mainnet
-
-This tutorial shows how to use the bittensor `btcli` to create a subnetwork and connect your incentive mechanism to it.
-
-**IMPORTANT:** Before attempting to register on mainnet, we strongly recommend that you:
-- First run [Running Subnet Locally](running_on_staging.md), and
-- Then run [Running on the Testnet](running_on_testnet.md).
-
-Your incentive mechanisms running on the mainnet are open to anyone. They emit real TAO. Creating these mechanisms incur a `lock_cost` in TAO.
-
-**DANGER**
-- Do not expose your private keys.
-- Only use your testnet wallet.
-- Do not reuse the password of your mainnet wallet.
-- Make sure your incentive mechanism is resistant to abuse.
-
-## Prerequisites
-
-Before proceeding further, make sure that you have installed Bittensor. See the below instructions:
-
-- [Install `bittensor`](https://github.com/opentensor/bittensor#install).
-
-After installing `bittensor`, proceed as below:
-
-## Steps
-
-## 1. Install your subnet template
-
-**NOTE: Skip this step if** you already did this during local testing and development.
-
-In your project directory:
-
-```bash
-git clone https://github.com/opentensor/bittensor-subnet-template.git
-```
-
-Next, `cd` into `bittensor-subnet-template` repo directory:
-
-```bash
-cd bittensor-subnet-template
-```
-
-Install the Bittensor subnet template package:
-
-```bash
-python -m pip install -e . # Install your subnet template package
-```
-
-## 2. Create wallets
-
-Create wallets for subnet owner, subnet validator and for subnet miner.
-
-This step creates local coldkey and hotkey pairs for your three identities: subnet owner, subnet validator and subnet miner.
-
-The owner will create and control the subnet. The owner must have at least 100 TAO before the owner can run next steps.
-
-The validator and miner will be registered to the subnet created by the owner. This ensures that the validator and miner can run the respective validator and miner scripts.
-
-**NOTE**: You can also use existing wallets to register. Creating new keys is shown here for reference.
-
-Create a coldkey for the owner wallet:
-
-```bash
-btcli wallet new_coldkey --wallet.name owner
-```
-
-Create a coldkey and hotkey for the subnet miner wallet:
-```bash
-btcli wallet new_coldkey --wallet.name miner
-```
-
-and
-
-```bash
-btcli wallet new_hotkey --wallet.name miner --wallet.hotkey default
-```
-
-Create a coldkey and hotkey for the subnet validator wallet:
-
-```bash
-btcli wallet new_coldkey --wallet.name validator
-```
-
-and
-
-```bash
-btcli wallet new_hotkey --wallet.name validator --wallet.hotkey default
-```
-
-## 3. Getting the price of subnet creation
-
-Creating subnets on mainnet is competitive. The cost is determined by the rate at which new subnets are being registered onto the Bittensor blockchain.
-
-By default you must have at least 100 TAO on your owner wallet to create a subnet. However, the exact amount will fluctuate based on demand. The below code shows how to get the current price of creating a subnet.
-
-```bash
-btcli subnet lock_cost
-```
-
-The above command will show:
-
-```bash
->> Subnet lock cost: τ100.000000000
-```
-
-## 4. Purchasing a slot
-
-Using your TAO balance, you can register your subnet to the mainchain. This will create a new subnet on the mainchain and give you the owner permissions to it. The below command shows how to purchase a slot.
-
-**NOTE**: Slots cost TAO to lock. You will get this TAO back when the subnet is dissolved.
-
-```bash
-btcli subnet create
-```
-
-Enter the owner wallet name. This gives permissions to the coldkey.
-
-```bash
->> Enter wallet name (default): owner # Enter your owner wallet name
->> Enter password to unlock key: # Enter your wallet password.
->> Register subnet? [y/n]: # Select yes (y)
->> ⠇ 📡 Registering subnet...
-✅ Registered subnetwork with netuid: 1 # Your subnet netuid will show here, save this for later.
-```
-
-## 5. (Optional) Register keys
-
-**NOTE**: While this is not enforced, we recommend subnet owners to run a subnet validator and a subnet miner on the subnet to demonstrate proper use to the community.
-
-This step registers your subnet validator and subnet miner keys to the subnet giving them the **first two slots** on the subnet.
-
-Register your miner key to the subnet:
-
-```bash
-btcli subnet recycle_register --netuid 1 --subtensor.network finney --wallet.name miner --wallet.hotkey default
-```
-
-Follow the below prompts:
-
-```bash
->> Enter netuid [1] (1): # Enter netuid 1 to specify the subnet you just created.
->> Continue Registration?
- hotkey: ...
- coldkey: ...
- network: finney [y/n]: # Select yes (y)
->> ✅ Registered
-```
-
-Next, register your validator key to the subnet:
-
-```bash
-btcli subnet recycle_register --netuid 1 --subtensor.network finney --wallet.name validator --wallet.hotkey default
-```
-
-Follow the below prompts:
-
-```bash
->> Enter netuid [1] (1): # Enter netuid 1 to specify the subnet you just created.
->> Continue Registration?
- hotkey: ...
- coldkey: ...
- network: finney [y/n]: # Select yes (y)
->> ✅ Registered
-```
-
-## 6. Check that your keys have been registered
-
-Check that your subnet validator key has been registered:
-
-```bash
-btcli wallet overview --wallet.name validator
-```
-
-The output will be similar to the below:
-
-```bash
-Subnet: 1
-COLDKEY HOTKEY UID ACTIVE STAKE(τ) RANK TRUST CONSENSUS INCENTIVE DIVIDENDS EMISSION(ρ) VTRUST VPERMIT UPDATED AXON HOTKEY_SS58
-miner default 0 True 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0 0.00000 14 none 5GTFrsEQfvTsh3WjiEVFeKzFTc2xcf…
-1 1 2 τ0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 ρ0 0.00000
- Wallet balance: τ0.0
-```
-
-Check that your subnet miner has been registered:
-
-```bash
-btcli wallet overview --wallet.name miner
-```
-
-The output will be similar to the below:
-
-```bash
-Subnet: 1
-COLDKEY HOTKEY UID ACTIVE STAKE(τ) RANK TRUST CONSENSUS INCENTIVE DIVIDENDS EMISSION(ρ) VTRUST VPERMIT UPDATED AXON HOTKEY_SS58
-miner default 1 True 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0 0.00000 14 none 5GTFrsEQfvTsh3WjiEVFeKzFTc2xcf…
-1 1 2 τ0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 ρ0 0.00000
- Wallet balance: τ0.0
-```
-
-## 7. Run subnet miner and subnet validator
-
-Run the subnet miner:
-
-```bash
-python neurons/miner.py --netuid 1 --wallet.name miner --wallet.hotkey default --logging.debug
-```
-
-You will see the below terminal output:
-
-```bash
->> 2023-08-08 16:58:11.223 | INFO | Running miner for subnet: 1 on network: wss://entrypoint-finney.opentensor.ai:443 with config: ...
-```
-
-Run the subnet validator:
-
-```bash
-python neurons/validator.py --netuid 1 --wallet.name validator --wallet.hotkey default --logging.debug
-```
-
-You will see the below terminal output:
-
-```bash
->> 2023-08-08 16:58:11.223 | INFO | Running validator for subnet: 1 on network: wss://entrypoint-finney.opentensor.ai:443 with config: ...
-```
-
-## 8. Get emissions flowing
-
-Register to the root subnet using the `btcli`:
-
-```bash
-btcli root register
-```
-
-Then set your weights for the subnet:
-
-```bash
-btcli root weights
-```
-
-## 9. Stopping your nodes
-
-To stop your nodes, press CTRL + C in the terminal where the nodes are running.
-
----
\ No newline at end of file
diff --git a/docs/running_on_staging.md b/docs/running_on_staging.md
deleted file mode 100644
index 70ea74f..0000000
--- a/docs/running_on_staging.md
+++ /dev/null
@@ -1,325 +0,0 @@
-# Running Subnet Locally
-
-This tutorial will guide you through:
-
-- Setting up a local blockchain that is not connected to either Bittensor testchain or mainchain
-- Creating a subnet
-- Run your incentive mechanism on the subnet.
-
-## Local blockchain vs local subtensor node
-
-Running a local blockchain is sometimes synonymously referred as running on staging. This is **different** from running a local subtensor node that connects to the Bittensor mainchain.
-
-A local subtensor node will connect to the mainchain and sync with the mainchain, giving you your own access point to the mainchain.
-
-Running a local blockchain spins up two authority nodes locally, not connected to any other nodes or testchain or mainchain. This tutorial is for running a local blockchain.
-
-## Prerequisites
-
-Before proceeding further, make sure that you have installed Bittensor. See the below instructions:
-
-- [Install `bittensor`](https://github.com/opentensor/bittensor#install).
-
-After installing `bittensor`, proceed as below:
-
-## 1. Install Substrate dependencies
-
-Begin by installing the required dependencies for running a Substrate node.
-
-Update your system packages:
-
-```bash
-sudo apt update
-```
-
-Install additional required libraries and tools
-
-```bash
-sudo apt install --assume-yes make build-essential git clang curl libssl-dev llvm libudev-dev protobuf-compiler
-```
-
-## 2. Install Rust and Cargo
-
-Rust is the programming language used in Substrate development. Cargo is Rust package manager.
-
-Install rust and cargo:
-
-```bash
-curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
-```
-
-Update your shell's source to include Cargo's path:
-
-```bash
-source "$HOME/.cargo/env"
-```
-
-## 3. Clone the subtensor repository
-
-This step fetches the subtensor codebase to your local machine.
-
-```bash
-git clone https://github.com/opentensor/subtensor.git
-```
-
-## 4. Setup Rust
-
-This step ensures that you have the nightly toolchain and the WebAssembly (wasm) compilation target. Note that this step will run the subtensor chain on your terminal directly, hence we advise that you run this as a background process using PM2 or other software.
-
-Update to the nightly version of Rust:
-
-```bash
-./subtensor/scripts/init.sh
-```
-
-## 5. Initialize
-
-These steps initialize your local subtensor chain in development mode. These commands will set up and run a local subtensor.
-
-Build the binary with the faucet feature enabled:
-
-```bash
-cargo build --release --features pow-faucet
-```
-
-**NOTE**: The `--features pow-faucet` option in the above is required if we want to use the command `btcli wallet faucet` [See the below Mint tokens step](#8-mint-tokens-from-faucet).
-
-Next, run the localnet script and turn off the attempt to build the binary (as we have already done this above):
-
-```bash
-BUILD_BINARY=0 ./scripts/localnet.sh
-```
-
-**NOTE**: Watch for any build or initialization outputs in this step. If you are building the project for the first time, this step will take a while to finish building, depending on your hardware.
-
-## 6. Install subnet template
-
-`cd` to your project directory and clone the bittensor subnet template repository:
-
-```bash
-git clone https://github.com/opentensor/bittensor-subnet-template.git
-```
-
-Navigate to the cloned repository:
-
-```bash
-cd bittensor-subnet-template
-```
-
-Install the bittensor-subnet-template Python package:
-
-```bash
-python -m pip install -e .
-```
-
-## 7. Set up wallets
-
-You will need wallets for the different roles, i.e., subnet owner, subnet validator and subnet miner, in the subnet.
-
-- The owner wallet creates and controls the subnet.
-- The validator and miner will be registered to the subnet created by the owner. This ensures that the validator and miner can run the respective validator and miner scripts.
-
-Create a coldkey for the owner role:
-
-```bash
-btcli wallet new_coldkey --wallet.name owner
-```
-
-Set up the miner's wallets:
-
-```bash
-btcli wallet new_coldkey --wallet.name miner
-```
-
-```bash
-btcli wallet new_hotkey --wallet.name miner --wallet.hotkey default
-```
-
-Set up the validator's wallets:
-
-```bash
-btcli wallet new_coldkey --wallet.name validator
-```
-```bash
-btcli wallet new_hotkey --wallet.name validator --wallet.hotkey default
-```
-
-## 8. Mint tokens from faucet
-
-You will need tokens to initialize the intentive mechanism on the chain as well as for registering the subnet.
-
-Run the following commands to mint faucet tokens for the owner and for the validator.
-
-Mint faucet tokens for the owner:
-
-```bash
-btcli wallet faucet --wallet.name owner --subtensor.chain_endpoint ws://127.0.0.1:9946
-```
-
-You will see:
-
-```bash
->> Balance: τ0.000000000 ➡ τ100.000000000
-```
-
-Mint tokens for the validator:
-
-```bash
-btcli wallet faucet --wallet.name validator --subtensor.chain_endpoint ws://127.0.0.1:9946
-```
-
-You will see:
-
-```bash
->> Balance: τ0.000000000 ➡ τ100.000000000
-```
-
-## 9. Create a subnet
-
-The below commands establish a new subnet on the local chain. The cost will be exactly τ100.000000000 for the first subnet you create.
-
-```bash
-btcli subnet create --wallet.name owner --subtensor.chain_endpoint ws://127.0.0.1:9946
-```
-
-You will see:
-
-```bash
->> Your balance is: τ200.000000000
->> Do you want to register a subnet for τ100.000000000? [y/n]:
->> Enter password to unlock key: [YOUR_PASSWORD]
->> ✅ Registered subnetwork with netuid: 1
-```
-
-**NOTE**: The local chain will now have a default `netuid` of 1. The second registration will create a `netuid` 2 and so on, until you reach the subnet limit of 8. If you register more than 8 subnets, then a subnet with the least staked TAO will be replaced by the 9th subnet you register.
-
-## 10. Register keys
-
-Register your subnet validator and subnet miner on the subnet. This gives your two keys unique slots on the subnet. The subnet has a current limit of 128 slots.
-
-Register the subnet miner:
-
-```bash
-btcli subnet recycle_register --wallet.name miner --wallet.hotkey default --subtensor.chain_endpoint ws://127.0.0.1:9946
-```
-
-Follow the below prompts:
-
-```bash
->> Enter netuid [1] (1): 1
->> Continue Registration? [y/n]: y
->> ✅ Registered
-```
-
-Register the subnet validator:
-
-```bash
-
-btcli subnet recycle_register --wallet.name validator --wallet.hotkey default --subtensor.chain_endpoint ws://127.0.0.1:9946
-```
-
-Follow the below prompts:
-
-```
->> Enter netuid [1] (1): 1
->> Continue Registration? [y/n]: y
->> ✅ Registered
-```
-
-## 11. Add stake
-
-This step bootstraps the incentives on your new subnet by adding stake into its incentive mechanism.
-
-```bash
-btcli stake add --wallet.name validator --wallet.hotkey default --subtensor.chain_endpoint ws://127.0.0.1:9946
-```
-
-Follow the below prompts:
-
-```bash
->> Stake all Tao from account: 'validator'? [y/n]: y
->> Stake:
- τ0.000000000 ➡ τ100.000000000
-```
-
-## 12. Validate key registrations
-
-Verify that both the miner and validator keys are successfully registered:
-
-```bash
-btcli subnet list --subtensor.chain_endpoint ws://127.0.0.1:9946
-```
-
-You will see the `2` entry under `NEURONS` column for the `NETUID` of 1, indicating that you have registered a validator and a miner in this subnet:
-
-```bash
-NETUID NEURONS MAX_N DIFFICULTY TEMPO CON_REQ EMISSION BURN(τ)
- 1 2 256.00 10.00 M 1000 None 0.00% τ1.00000
- 2 128
-```
-
-See the subnet validator's registered details:
-
-```bash
-btcli wallet overview --wallet.name validator --subtensor.chain_endpoint ws://127.0.0.1:9946
-```
-
-You will see:
-
-```
-Subnet: 1
-COLDKEY HOTKEY UID ACTIVE STAKE(τ) RANK TRUST CONSENSUS INCENTIVE DIVIDENDS EMISSION(ρ) VTRUST VPERMIT UPDATED AXON HOTKEY_SS58
-miner default 0 True 100.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0 0.00000 14 none 5GTFrsEQfvTsh3WjiEVFeKzFTc2xcf…
-1 1 2 τ100.00000 0.00000 0.00000 0.00000 0.00000 0.00000 ρ0 0.00000
- Wallet balance: τ0.0
-```
-
-See the subnet miner's registered details:
-
-```bash
-btcli wallet overview --wallet.name miner --subtensor.chain_endpoint ws://127.0.0.1:9946
-```
-
-You will see:
-
-```bash
-Subnet: 1
-COLDKEY HOTKEY UID ACTIVE STAKE(τ) RANK TRUST CONSENSUS INCENTIVE DIVIDENDS EMISSION(ρ) VTRUST VPERMIT UPDATED AXON HOTKEY_SS58
-miner default 1 True 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0 0.00000 14 none 5GTFrsEQfvTsh3WjiEVFeKzFTc2xcf…
-1 1 2 τ0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 ρ0 0.00000
- Wallet balance: τ0.0
-
-```
-
-## 13. Run subnet miner and subnet validator
-
-Run the subnet miner and subnet validator. Make sure to specify your subnet parameters.
-
-Run the subnet miner:
-
-```bash
-python neurons/miner.py --netuid 1 --subtensor.chain_endpoint ws://127.0.0.1:9946 --wallet.name miner --wallet.hotkey default --logging.debug
-```
-
-Run the subnet validator:
-
-```bash
-python neurons/validator.py --netuid 1 --subtensor.chain_endpoint ws://127.0.0.1:9946 --wallet.name validator --wallet.hotkey default --logging.debug
-```
-
-## 14. Verify your incentive mechanism
-
-After a few blocks the subnet validator will set weights. This indicates that the incentive mechanism is active. Then after a subnet tempo elapses (360 blocks or 72 minutes) you will see your incentive mechanism beginning to distribute TAO to the subnet miner.
-
-```bash
-btcli wallet overview --wallet.name miner --subtensor.chain_endpoint ws://127.0.0.1:9946
-```
-
-## Ending your session
-
-To halt your nodes:
-```bash
-# Press CTRL + C keys in the terminal.
-```
-
----
diff --git a/docs/running_on_testnet.md b/docs/running_on_testnet.md
deleted file mode 100644
index 37a9b66..0000000
--- a/docs/running_on_testnet.md
+++ /dev/null
@@ -1,242 +0,0 @@
-# Running Subnet on Testnet
-
-This tutorial shows how to use the Bittensor testnet to create a subnet and run your incentive mechanism on it.
-
-**IMPORTANT:** We strongly recommend that you first run [Running Subnet Locally](running_on_staging.md) before running on the testnet. Incentive mechanisms running on the testnet are open to anyone, and although these mechanisms on testnet do not emit real TAO, they cost you test TAO which you must create.
-
-**DANGER**
-- Do not expose your private keys.
-- Only use your testnet wallet.
-- Do not reuse the password of your mainnet wallet.
-- Make sure your incentive mechanism is resistant to abuse.
-
-## Prerequisites
-
-Before proceeding further, make sure that you have installed Bittensor. See the below instructions:
-
-- [Install `bittensor`](https://github.com/opentensor/bittensor#install).
-
-After installing `bittensor`, proceed as below:
-
-## 1. Install Bittensor subnet template
-
-**NOTE: Skip this step if** you already did this during local testing and development.
-
-`cd` into your project directory and clone the bittensor-subnet-template repo:
-
-```bash
-git clone https://github.com/opentensor/bittensor-subnet-template.git
-```
-
-Next, `cd` into bittensor-subnet-template repo directory:
-
-```bash
-cd bittensor-subnet-template # Enter the
-```
-
-Install the bittensor-subnet-template package:
-
-```bash
-python -m pip install -e .
-```
-
-## 2. Create wallets
-
-Create wallets for subnet owner, subnet validator and for subnet miner.
-
-This step creates local coldkey and hotkey pairs for your three identities: subnet owner, subnet validator and subnet miner.
-
-The owner will create and control the subnet. The owner must have at least 100 testnet TAO before the owner can run next steps.
-
-The validator and miner will be registered to the subnet created by the owner. This ensures that the validator and miner can run the respective validator and miner scripts.
-
-Create a coldkey for your owner wallet:
-
-```bash
-btcli wallet new_coldkey --wallet.name owner
-```
-
-Create a coldkey and hotkey for your miner wallet:
-
-```bash
-btcli wallet new_coldkey --wallet.name miner
-```
-
-and
-
-```bash
-btcli wallet new_hotkey --wallet.name miner --wallet.hotkey default
-```
-
-Create a coldkey and hotkey for your validator wallet:
-
-```bash
-btcli wallet new_coldkey --wallet.name validator
-```
-
-and
-
-```bash
-btcli wallet new_hotkey --wallet.name validator --wallet.hotkey default
-```
-
-## 3. Get the price of subnet creation
-
-Creating subnets on the testnet is competitive. The cost is determined by the rate at which new subnets are being registered onto the chain.
-
-By default you must have at least 100 testnet TAO in your owner wallet to create a subnet. However, the exact amount will fluctuate based on demand. The below command shows how to get the current price of creating a subnet.
-
-```bash
-btcli subnet lock_cost --subtensor.network test
-```
-
-The above command will show:
-
-```bash
->> Subnet lock cost: τ100.000000000
-```
-
-## 4. (Optional) Get faucet tokens
-
-Faucet is disabled on the testnet. Hence, if you don't have sufficient faucet tokens, ask the [Bittensor Discord community](https://discord.com/channels/799672011265015819/830068283314929684) for faucet tokens.
-
-## 5. Purchase a slot
-
-Using the test TAO from the previous step you can register your subnet on the testnet. This will create a new subnet on the testnet and give you the owner permissions to it.
-
-The below command shows how to purchase a slot.
-
-**NOTE**: Slots cost TAO, and you will not get this TAO back. Instead, this TAO is recycled back into your incentive mechanism, to be later mined.
-
-```bash
-btcli subnet create --subtensor.network test
-```
-
-Enter the owner wallet name which gives permissions to the coldkey:
-
-```bash
->> Enter wallet name (default): owner # Enter your owner wallet name
->> Enter password to unlock key: # Enter your wallet password.
->> Register subnet? [y/n]: # Select yes (y)
->> ⠇ 📡 Registering subnet...
-✅ Registered subnetwork with netuid: 1 # Your subnet netuid will show here, save this for later.
-```
-
-## 6. Register keys
-
-This step registers your subnet validator and subnet miner keys to the subnet, giving them the **first two slots** on the subnet.
-
-Register your miner key to the subnet:
-
-```bash
-btcli subnet recycle_register --netuid 13 --subtensor.network test --wallet.name miner --wallet.hotkey default
-```
-
-Follow the below prompts:
-
-```bash
->> Enter netuid [1] (1): # Enter netuid 1 to specify the subnet you just created.
->> Continue Registration?
- hotkey: ...
- coldkey: ...
- network: finney [y/n]: # Select yes (y)
->> ✅ Registered
-```
-
-Next, register your validator key to the subnet:
-
-```bash
-btcli subnet recycle_register --netuid 13 --subtensor.network test --wallet.name validator --wallet.hotkey default
-```
-
-Follow the prompts:
-
-```bash
->> Enter netuid [1] (1): # Enter netuid 1 to specify the subnet you just created.
->> Continue Registration?
- hotkey: ...
- coldkey: ...
- network: finney [y/n]: # Select yes (y)
->> ✅ Registered
-```
-
-## 7. Check that your keys have been registered
-
-This step returns information about your registered keys.
-
-Check that your validator key has been registered:
-
-```bash
-btcli wallet overview --wallet.name validator --subtensor.network test
-```
-
-The above command will display the below:
-
-```bash
-Subnet: 1
-COLDKEY HOTKEY UID ACTIVE STAKE(τ) RANK TRUST CONSENSUS INCENTIVE DIVIDENDS EMISSION(ρ) VTRUST VPERMIT UPDATED AXON HOTKEY_SS58
-miner default 0 True 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0 0.00000 14 none 5GTFrsEQfvTsh3WjiEVFeKzFTc2xcf…
-1 1 2 τ0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 ρ0 0.00000
- Wallet balance: τ0.0
-```
-
-Check that your miner has been registered:
-
-```bash
-btcli wallet overview --wallet.name miner --subtensor.network test
-```
-
-The above command will display the below:
-
-```bash
-Subnet: 1
-COLDKEY HOTKEY UID ACTIVE STAKE(τ) RANK TRUST CONSENSUS INCENTIVE DIVIDENDS EMISSION(ρ) VTRUST VPERMIT UPDATED AXON HOTKEY_SS58
-miner default 1 True 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0 0.00000 14 none 5GTFrsEQfvTsh3WjiEVFeKzFTc2xcf…
-1 1 2 τ0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 ρ0 0.00000
- Wallet balance: τ0.0
-```
-
-## 8. Run subnet miner and subnet validator
-
-Run the subnet miner:
-
-```bash
-python neurons/miner.py --netuid 1 --subtensor.network test --wallet.name miner --wallet.hotkey default --logging.debug
-```
-
-You will see the below terminal output:
-
-```bash
->> 2023-08-08 16:58:11.223 | INFO | Running miner for subnet: 1 on network: ws://127.0.0.1:9946 with config: ...
-```
-
-Next, run the subnet validator:
-
-```bash
-python neurons/validator.py --netuid 1 --subtensor.network test --wallet.name validator --wallet.hotkey default --logging.debug
-```
-
-You will see the below terminal output:
-
-```bash
->> 2023-08-08 16:58:11.223 | INFO | Running validator for subnet: 1 on network: ws://127.0.0.1:9946 with config: ...
-```
-
-
-## 9. Get emissions flowing
-
-Register to the root network using the `btcli`:
-
-```bash
-btcli root register --subtensor.network test
-```
-
-Then set your weights for the subnet:
-
-```bash
-btcli root weights --subtensor.network test
-```
-
-## 10. Stopping your nodes
-
-To stop your nodes, press CTRL + C in the terminal where the nodes are running.
diff --git a/docs/validator.md b/docs/validator.md
new file mode 100644
index 0000000..ea73781
--- /dev/null
+++ b/docs/validator.md
@@ -0,0 +1,209 @@
+
+
+# Validator
+
+Your validator will be sending binary outcomes events to miners. In the first phase of the subnet the events will come from prediction market APIs such as Polymarket or Manifold. Every time an event settles, your validator will score the miners that submitted a prediction for that event. The validator logic is essentially contained in the `neurons/validator.py` file.
+
+**IMPORTANT**
+
+Before attempting to register on mainnet, we strongly recommend that you run a validator on the testnet. For that matter ensure you add the appropriate testnet flag `--subtensor.network test`.
+
+| Environment | Netuid |
+| ----------- | -----: |
+| Mainnet | TBD |
+| Testnet | 155 |
+
+
+
+**DANGER**
+
+- Do not expose your private keys.
+- Only use your testnet wallet.
+- Do not reuse the password of your mainnet wallet.
+- Make sure your incentive mechanism is resistant to abuse.
+
+# System Requirements
+
+- Requires **Python 3.10.**
+- [Bittensor](https://github.com/opentensor/bittensor#install)
+
+Below are the prerequisites for validators. You may be able to make a validator work off lesser specs but it is not recommended.
+
+- Currently computing requirements are minimal. A "Starter" server on [Render](https://render.com/) for $7/month should be enough. As we optimize the fetching and processing of events these requirements may evolve.
+
+# Getting Started
+
+
+The miner and validator logic is contained in the appropriate files in `neuron`. =
+
+First clone this repo by running `git clone `. Then to run a miner or validator:
+
+
+Clone repository
+
+```bash
+git clone https://github.com/amedeo-gigaver/infinite_games.git
+```
+
+Change directory
+
+```bash
+cd infinite_games
+```
+
+Create Virtual Environment
+
+```bash
+python -m venv venv
+```
+
+Activate a Virtual Environment
+
+```bash
+source venv/bin/activate
+```
+
+Install dependencies
+
+```bash
+pip install -r requirements.txt
+```
+Enable `torch`:
+
+```bash
+export USE_TORCH=1
+```
+
+The venv should be active whenever the neurons are run.
+
+## 2. Create Wallets
+
+This step creates local coldkey and hotkey pairs for your validator.
+
+The validator will be registered to the subnet specified. This ensures that the validator can run the respective validator scripts.
+
+Create a coldkey and hotkey for your validator wallet.
+
+```bash
+btcli wallet new_coldkey --wallet.name validator
+btcli wallet new_hotkey --wallet.name validator --wallet.hotkey default
+```
+
+## 2a. (Optional) Getting faucet tokens
+
+Faucet is disabled on the testnet. Hence, if you don't have sufficient faucet tokens, ask the Bittensor Discord community for faucet tokens. Bittensor -> help-forum -> Requests for Testnet TAO
+
+## 3. Register keys
+
+This step registers your subnet validator keys to the subnet.
+
+```bash
+btcli subnet register --wallet.name validator --wallet.hotkey default
+```
+
+To register your validator on the testnet add the `--subtensor.network test` flag.
+
+Follow the below prompts:
+
+```bash
+>> Enter netuid (0): # Enter the appropriate netuid for your environment
+Your balance is: # Your wallet balance will be shown
+The cost to register by recycle is τ0.000000001 # Current registration costs
+>> Do you want to continue? [y/n] (n): # Enter y to continue
+>> Enter password to unlock key: # Enter your wallet password
+>> Recycle τ0.000000001 to register on subnet:8? [y/n]: # Enter y to register
+📡 Checking Balance...
+Balance:
+ τ5.000000000 ➡ τ4.999999999
+✅ Registered
+```
+
+## 4. Check that your keys have been registered
+
+This step returns information about your registered keys.
+
+Check that your validator key has been registered:
+
+```bash
+btcli wallet overview --wallet.name validator
+```
+
+To check your validator on the testnet add the `--subtensor.network test` flag
+
+The above command will display the below:
+
+```bash
+Subnet: TBD # or 155 on testnet
+COLDKEY HOTKEY UID ACTIVE STAKE(τ) RANK TRUST CONSENSUS INCENTIVE DIVIDENDS EMISSION(ρ) VTRUST VPERMIT UPDATED AXON HOTKEY_SS58
+validator default 197 True 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0 0.00000 56 none 5GKkQKmDLfsKaumnkD479RBoD5CsbN2yRbMpY88J8YeC5DT4
+1 1 1 τ0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 ρ0 0.00000
+ Wallet balance: τ0.000999999
+```
+
+## 6. Running a Validator
+
+### Direct Run
+
+Run the following command inside the `infinite_games` directory:
+
+`python neurons/validator.py --netuid 155 --subtensor.network test --wallet.name {default} --wallet.hotkey {default}`
+
+
+### PM2 Installation
+
+Install and run pm2 commands to keep your validator online at all times.
+
+
+`sudo apt update`
+
+`sudo apt install npm`
+
+`sudo npm install pm2 -g`
+
+`Confirm pm2 is installed and running correctly`
+
+`pm2 ls`
+
+
+Command to run the validator:
+
+`pm2 start neurons/validator.py --interpreter /usr/bin/python3 --name validator -- --wallet.name validator --netuid 155 --wallet.hotkey hotkey --subtensor.network testnet --logging.debug`
+
+
+Explanation of each variable:
+
+--wallet.name: Provide the name of your wallet.
+--wallet.hotkey: Enter your wallet's hotkey.
+--netuid: Use 155 for testnet.
+--subtensor.network: Specify the network you want to use (finney, test, local, etc).
+--logging.debug: Adjust the logging level according to your preference.
+--axon.port: Specify the port number you want to use.
+
+You can monitor the status and logs using these commands:
+
+`pm2 status`
+`pm2 logs 0`
+
+
+## 7. Get emissions flowing
+
+Register to the root network using the `btcli`:
+
+```bash
+btcli root register
+```
+
+To register your validator to the root network on testnet use the `--subtensor.network test` flag.
+
+Then set your weights for the subnet:
+
+```bash
+btcli root weights
+```
+
+To set your weights on testnet `--subtensor.network test` flag.
+
+## 8. Stopping your validator
+
+To stop your validator, press CTRL + C in the terminal where the validator is running.
+
diff --git a/docs/wallet-setup.md b/docs/wallet-setup.md
new file mode 100644
index 0000000..6c527d4
--- /dev/null
+++ b/docs/wallet-setup.md
@@ -0,0 +1,8 @@
+
+## Wallet setup
+
+Two important commands are `btcli wallet list` and `btcli wallet overview`.
+
+The first enables one to vizualize their wallets in a tree-like manner as well as which hotkeys are associated with a given coldkey. Importantly, one can see the wallet name that is associated with each pair of coldkey and hotkey. This is important since the names of the coldkey and the hotkey are used rather than the keys themselves when running bittensor commands related to wallets.
+
+The second enables one to see the subnets in which their wallet is registered as well as the wallet's balance.
\ No newline at end of file
diff --git a/docs/what_are_subnets.md b/docs/what_are_subnets.md
deleted file mode 100644
index eee24ce..0000000
--- a/docs/what_are_subnets.md
+++ /dev/null
@@ -1,27 +0,0 @@
-# What is Bittensor?
-Bittensor is a network where computers validate the work that other computers contribute to the network - the work what is most valuable to the collective will be rewarded
-
-Bittensor is a catalyst to the open-source developers and smaller AI research labs now have a financial incentive for fine-tuning open foundational models
-
-Bittensor is a library of machine intelligence that continuously grows and shares knowledge amongst peers
-
-# What is a subnet?
-
-Bittensor is releasing its own language for creating incentive mechanisms. This allows developers to build incentive systems on Bittensor, tapping into our web of intelligence to develop markets of the developer’s choosings
-
-Subnet 1, an incentive system for machine intelligence production, showcases the enormous potential of markets to procure huge amounts of resources. Releasing user-created subnets is set to create a cambrian explosion of additional resources into the Bittensor ecosystem
-
-# Why should you care?
-
-As an open-source developer, you now have the ability to write your own incentive mechanisms without creating an entirely new chain. By tapping into Bittensor’s network of intelligence, you can incentivize AI models from all over the world to perform tasks of your choosing (i.e., image generation, storage, compute access, etc.) - the possibilities are truly endless
-
-The release of subnets also offers the potential to pull these tools into a shared network, making all the ingredients necessary to create intelligence available within one network, governed by one token
-
-You get to play a vital role in helping bootstrap what could one day become one of the most powerful networks in the world - and you make money by doing so!
-
-By incentivizing developers to create their own markets, Bittensor is set to become a one-stop-shop for those seeking all the compute requirements for building unstoppable applications on top of an incentivized infrastructure
-
-# Deeper dive
-Check out the Bittensor about page [here](https://bittensor.com/about) for more details about what the bittensor paradigm is and why subnets are revolutionary technology.
-
-Also see our [linktree](https://linktr.ee/opentensor) for more information.
\ No newline at end of file
diff --git a/examples/prompting.ipynb b/examples/prompting.ipynb
deleted file mode 100644
index df6b154..0000000
--- a/examples/prompting.ipynb
+++ /dev/null
@@ -1,274 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "code",
- "execution_count": 1,
- "metadata": {},
- "outputs": [],
- "source": [
- "\"\"\"\n",
- "This notebook is designed to showcase how to build your own subnet, modeled after the \n",
- "Bittensor Text Prompting subnet. This subnet is designed to take in a list of messages\n",
- "and a list of roles, and generate a completion based on the current state of the network.\n",
- "\n",
- "To create a subnet, you must define three (3) main elements: \n",
- "- the protocol message format (synapse subclass)\n",
- "- the miner (how to complete requests)\n",
- "- the validator (how to validate requests)\n",
- "\n",
- "Below is a simple implementation of the protocol, so you can see how it works.\n",
- "\n",
- "You can also use the `deserialize` method to specify how to deserialize the data\n",
- "into a tensor. This is useful for converting strings into tensors, for example.\n",
- "\n",
- "You must also define your priority and blacklist functions. See below:\n",
- "\"\"\"\n",
- "\n",
- "\n",
- "import bittensor as bt\n",
- "import pydantic\n",
- "import time\n",
- "import torch\n",
- "bt.trace()\n",
- "\n",
- "from typing import List, Dict, Optional, Tuple, Union, Callable\n",
- "# Subnet creator controls\n",
- "class Prompting( bt.Synapse ):\n",
- " \"\"\"\n",
- " Represents the core component of a Synapse for handling and controlling message prompting in a network.\n",
- " \n",
- " The Prompting synapse captures roles and messages, and can generate a completion based on the current state. \n",
- " It also contains unique hashes for roles and messages to ensure integrity and uniqueness.\n",
- " \n",
- " Attributes:\n",
- " roles (List[str]): A list of roles associated with this synapse. Immutable post-instantiation.\n",
- " messages (List[str]): A list of messages associated with this synapse. Immutable post-instantiation.\n",
- " completion (str): A field to store the completion or result after processing.\n",
- " messages_hash (str): An immutable hash representing the messages in the prompting scenario.\n",
- " roles_hash (str): An immutable hash representing the roles in the prompting scenario.\n",
- " \"\"\"\n",
- " class Config: validate_assignment = True\n",
- " def deserialize( self ): return self.completion\n",
- "\n",
- " roles: List[str] = pydantic.Field(..., allow_mutation=False)\n",
- " messages: List[str] = pydantic.Field(..., allow_mutation=False)\n",
- " completion: str = None\n",
- "\n",
- " @property\n",
- " def required_hash_fields(self) -> List[str]:\n",
- " \"\"\" Returns the list of fields that are essential for hash computation. \"\"\"\n",
- " return ['messages']\n",
- "\n",
- "def prompt( synapse: Prompting ) -> Prompting:\n",
- " \"\"\"\n",
- " Process the provided synapse to generate a completion.\n",
- "\n",
- " Args:\n",
- " synapse (Prompting): The input synapse to be processed.\n",
- "\n",
- " Returns:\n",
- " Prompting: The updated synapse with a completion.\n",
- " \"\"\"\n",
- " bt.logging.debug(\"In prompt!\")\n",
- " synapse.completion = \"I am a chatbot\"\n",
- " return synapse\n",
- "\n",
- "def blacklist( synapse: Prompting ) -> Tuple[bool, str]:\n",
- " \"\"\"\n",
- " Determines if the provided synapse should be blacklisted.\n",
- "\n",
- " Args:\n",
- " synapse (Prompting): The input synapse to be evaluated.\n",
- "\n",
- " Returns:\n",
- " Tuple[bool, str]: A tuple containing a boolean that indicates whether the synapse is blacklisted,\n",
- " and a string providing the reason.\n",
- " \"\"\"\n",
- " return False, \"\"\n",
- "\n",
- "def priority( synapse: Prompting ) -> float:\n",
- " \"\"\"\n",
- " Determines the priority of the provided synapse.\n",
- "\n",
- " Args:\n",
- " synapse (Prompting): The input synapse to be evaluated.\n",
- "\n",
- " Returns:\n",
- " float: The priority value of the synapse, with higher values indicating higher priority.\n",
- " \"\"\"\n",
- " return 0.0\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 2,
- "metadata": {},
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "INFO: Started server process [1386675]\n",
- "INFO: Waiting for application startup.\n",
- "TRACE: ASGI [1] Started scope={'type': 'lifespan', 'asgi': {'version': '3.0', 'spec_version': '2.0'}, 'state': {}}\n",
- "TRACE: ASGI [1] Receive {'type': 'lifespan.startup'}\n",
- "TRACE: ASGI [1] Send {'type': 'lifespan.startup.complete'}\n",
- "INFO: Application startup complete.\n",
- "INFO: Uvicorn running on http://0.0.0.0:8099 (Press CTRL+C to quit)\n"
- ]
- },
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "\u001b[34m2023-10-08 19:50:45.555\u001b[0m | \u001b[34m\u001b[1m DEBUG \u001b[0m | dendrite | --> | 3908 B | Prompting | 5C86aJ2uQawR6P6veaJQXNK9HaWh6NMbUhTiLs65kq4ZW3NH | 149.137.225.62:8099 | 0 | Success\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "TRACE: 127.0.0.1:45274 - HTTP connection made\n",
- "TRACE: 127.0.0.1:45274 - ASGI [2] Started scope={'type': 'http', 'asgi': {'version': '3.0', 'spec_version': '2.3'}, 'http_version': '1.1', 'server': ('127.0.0.1', 8099), 'client': ('127.0.0.1', 45274), 'scheme': 'http', 'method': 'POST', 'root_path': '', 'path': '/Prompting', 'raw_path': b'/Prompting', 'query_string': b'', 'headers': '<...>', 'state': {}}\n"
- ]
- },
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "\u001b[34m2023-10-08 19:50:45.574\u001b[0m | \u001b[34m\u001b[1m DEBUG \u001b[0m | axon | <-- | 867 B | Prompting | 5C86aJ2uQawR6P6veaJQXNK9HaWh6NMbUhTiLs65kq4ZW3NH | 127.0.0.1:45274 | 200 | Success \n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "TRACE: 127.0.0.1:45274 - ASGI [2] Receive {'type': 'http.request', 'body': '<867 bytes>', 'more_body': False}\n"
- ]
- },
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "\u001b[34m2023-10-08 19:50:45.578\u001b[0m | \u001b[34m\u001b[1m DEBUG \u001b[0m | In prompt! \n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "TRACE: 127.0.0.1:45274 - ASGI [2] Send {'type': 'http.response.start', 'status': 200, 'headers': '<...>'}\n"
- ]
- },
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "\u001b[34m2023-10-08 19:50:45.585\u001b[0m | \u001b[34m\u001b[1m DEBUG \u001b[0m | axon | --> | 820 B | Prompting | 5C86aJ2uQawR6P6veaJQXNK9HaWh6NMbUhTiLs65kq4ZW3NH | 127.0.0.1:45274 | 200 | Success\n",
- "INFO: 127.0.0.1:45274 - \"POST /Prompting HTTP/1.1\" 200 OK\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "TRACE: 127.0.0.1:45274 - ASGI [2] Send {'type': 'http.response.body', 'body': '<820 bytes>', 'more_body': True}\n"
- ]
- },
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "\u001b[34m2023-10-08 19:50:45.589\u001b[0m | \u001b[34m\u001b[1m DEBUG \u001b[0m | dendrite | <-- | 4462 B | Prompting | 5C86aJ2uQawR6P6veaJQXNK9HaWh6NMbUhTiLs65kq4ZW3NH | 149.137.225.62:8099 | 200 | Success\n",
- "\u001b[34m2023-10-08 19:50:45.589\u001b[0m | \u001b[34m\u001b[1m DEBUG \u001b[0m | dendrite | <-- | 4462 B | Prompting | 5C86aJ2uQawR6P6veaJQXNK9HaWh6NMbUhTiLs65kq4ZW3NH | 149.137.225.62:8099 | 200 | Success\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "TRACE: 127.0.0.1:45274 - ASGI [2] Send {'type': 'http.response.body', 'body': '<0 bytes>', 'more_body': False}\n"
- ]
- },
- {
- "data": {
- "text/plain": [
- "[Prompting(roles=['user'], messages=['hello, who are you?'], completion='I am a chatbot')]"
- ]
- },
- "execution_count": 2,
- "metadata": {},
- "output_type": "execute_result"
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "TRACE: 127.0.0.1:45274 - ASGI [2] Receive {'type': 'http.disconnect'}\n",
- "TRACE: 127.0.0.1:45274 - ASGI [2] Completed\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "TRACE: 127.0.0.1:45274 - HTTP connection lost\n"
- ]
- }
- ],
- "source": [
- "# Create an Axon instance on port 8099.\n",
- "axon = bt.axon(port=8099)\n",
- "\n",
- "# Attach the forward, blacklist, and priority functions to the Axon.\n",
- "# forward_fn: The function to handle forwarding logic.\n",
- "# blacklist_fn: The function to determine if a request should be blacklisted.\n",
- "# priority_fn: The function to determine the priority of the request.\n",
- "axon.attach(\n",
- " forward_fn=prompt,\n",
- " blacklist_fn=blacklist,\n",
- " priority_fn=priority\n",
- ")\n",
- "\n",
- "# Start the Axon to begin listening for requests.\n",
- "axon.start()\n",
- "\n",
- "# Create a Dendrite instance to handle client-side communication.\n",
- "d = bt.dendrite()\n",
- "\n",
- "# Send a request to the Axon using the Dendrite, passing in a StreamPrompting instance with roles and messages.\n",
- "# The response is awaited, as the Dendrite communicates asynchronously with the Axon.\n",
- "resp = await d(\n",
- " [axon],\n",
- " Prompting(roles=[\"user\"], messages=[\"hello, who are you?\"]),\n",
- " deserialize=False\n",
- ")\n",
- "\n",
- "# The response object contains the result of the prompting operation.\n",
- "resp"
- ]
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "rev2",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.10.13"
- },
- "orig_nbformat": 4
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}
diff --git a/ocr_subnet/__init__.py b/infinite_games/__init__.py
similarity index 98%
rename from ocr_subnet/__init__.py
rename to infinite_games/__init__.py
index 3d9f8a6..058156b 100644
--- a/ocr_subnet/__init__.py
+++ b/infinite_games/__init__.py
@@ -15,7 +15,7 @@
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
-__version__ = "0.0.0"
+__version__ = "0.0.1"
version_split = __version__.split(".")
__spec_version__ = (
(1000 * int(version_split[0]))
diff --git a/infinite_games/azurodictionaries/__init__.py b/infinite_games/azurodictionaries/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/infinite_games/azurodictionaries/markets.py b/infinite_games/azurodictionaries/markets.py
new file mode 100644
index 0000000..b1f7401
--- /dev/null
+++ b/infinite_games/azurodictionaries/markets.py
@@ -0,0 +1,32 @@
+MARKETS = {
+ "1": "Full time result",
+ "2": "Double chance",
+ "3": "Handicap",
+ "4": "Total",
+ "5": "DEPRECATED",
+ "6": "DEPRECATED",
+ "7": "Individual Total",
+ "8": "Scored",
+ "9": "Both Teams To Score",
+ "10": "Correct Score",
+ "11": "To Score",
+ "12": "DEPRECATED",
+ "13": "DEPRECATED",
+ "14": "Total Even",
+ "15": "Individual Total Even",
+ "16": "Individual To Score",
+ "17": "HT-FT",
+ "18": "European handicap (3 way)",
+ "19": "Winner of match",
+ "20": "DEPRECATED",
+ "21": "DEPRECATED",
+ "22": "Race To",
+ "23": "Will there be",
+ "24": "Who First",
+ "25": "Who First (3 way)",
+ "26": "Both Teams To Score & Full time result",
+ "27": "Both Teams To Score & Total",
+ "28": "Full time result & Total",
+ "29": "Winner of match & Total",
+ "30": "Total Even & Total"
+}
\ No newline at end of file
diff --git a/infinite_games/azurodictionaries/outcomes.py b/infinite_games/azurodictionaries/outcomes.py
new file mode 100644
index 0000000..2bdb392
--- /dev/null
+++ b/infinite_games/azurodictionaries/outcomes.py
@@ -0,0 +1,158032 @@
+OUTCOMES = {
+ "1": {
+ "selectionId": 180,
+ "marketId": 9,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Both Teams To Score Goal Yes"
+ },
+ "2": {
+ "selectionId": 181,
+ "marketId": 9,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Both Teams To Score Goal No"
+ },
+ "3": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -4.5"
+ },
+ "4": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 4.5"
+ },
+ "5": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -3.5"
+ },
+ "6": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 3.5"
+ },
+ "7": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -2.5"
+ },
+ "8": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 2.5"
+ },
+ "9": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -1.5"
+ },
+ "10": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 1.5"
+ },
+ "11": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 0"
+ },
+ "12": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 0"
+ },
+ "13": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 1.5"
+ },
+ "14": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -1.5"
+ },
+ "15": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 2.5"
+ },
+ "16": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -2.5"
+ },
+ "17": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 3.5"
+ },
+ "18": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -3.5"
+ },
+ "19": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 4.5"
+ },
+ "20": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -4.5"
+ },
+ "21": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 1.5"
+ },
+ "22": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 1.5"
+ },
+ "23": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 2.5"
+ },
+ "24": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 2.5"
+ },
+ "25": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 3.5"
+ },
+ "26": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 3.5"
+ },
+ "27": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 4.5"
+ },
+ "28": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 4.5"
+ },
+ "29": {
+ "selectionId": 1,
+ "marketId": 1,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result Goal 1"
+ },
+ "30": {
+ "selectionId": 2,
+ "marketId": 1,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result Goal X"
+ },
+ "31": {
+ "selectionId": 3,
+ "marketId": 1,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result Goal 2"
+ },
+ "32": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 24,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Goal 1"
+ },
+ "33": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 24,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Goal 2"
+ },
+ "34": {
+ "selectionId": 10009,
+ "marketId": 20,
+ "gamePeriodId": 31,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st map Winner of 1st map Goal 1"
+ },
+ "35": {
+ "selectionId": 10010,
+ "marketId": 20,
+ "gamePeriodId": 31,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st map Winner of 1st map Goal 2"
+ },
+ "36": {
+ "selectionId": 10009,
+ "marketId": 21,
+ "gamePeriodId": 32,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "2nd map Winner of 2nd map Goal 1"
+ },
+ "37": {
+ "selectionId": 10010,
+ "marketId": 21,
+ "gamePeriodId": 32,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "2nd map Winner of 2nd map Goal 2"
+ },
+ "38": {
+ "selectionId": 4,
+ "marketId": 2,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Double chance Goal 1X"
+ },
+ "39": {
+ "selectionId": 5,
+ "marketId": 2,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Double chance Goal 12"
+ },
+ "40": {
+ "selectionId": 6,
+ "marketId": 2,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Double chance Goal 2X"
+ },
+ "41": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 30,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Goal 1"
+ },
+ "42": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 30,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Goal 2"
+ },
+ "43": {
+ "selectionId": 1,
+ "marketId": 1,
+ "gamePeriodId": 24,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result Goal 1"
+ },
+ "44": {
+ "selectionId": 2,
+ "marketId": 1,
+ "gamePeriodId": 24,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result Goal X"
+ },
+ "45": {
+ "selectionId": 3,
+ "marketId": 1,
+ "gamePeriodId": 24,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result Goal 2"
+ },
+ "46": {
+ "selectionId": 4,
+ "marketId": 2,
+ "gamePeriodId": 24,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Double chance Goal 1X"
+ },
+ "47": {
+ "selectionId": 5,
+ "marketId": 2,
+ "gamePeriodId": 24,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Double chance Goal 12"
+ },
+ "48": {
+ "selectionId": 6,
+ "marketId": 2,
+ "gamePeriodId": 24,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Double chance Goal 2X"
+ },
+ "49": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 1.5"
+ },
+ "50": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 1.5"
+ },
+ "51": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -0.5"
+ },
+ "52": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 0.5"
+ },
+ "53": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 0.5"
+ },
+ "54": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 0.5"
+ },
+ "55": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -1"
+ },
+ "56": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 1"
+ },
+ "57": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1"
+ },
+ "58": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2"
+ },
+ "59": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 2"
+ },
+ "60": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 2"
+ },
+ "61": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1"
+ },
+ "62": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2"
+ },
+ "63": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -1"
+ },
+ "64": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 1"
+ },
+ "65": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -0.5"
+ },
+ "66": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 0.5"
+ },
+ "67": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 0.5"
+ },
+ "68": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -0.5"
+ },
+ "69": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 1"
+ },
+ "70": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -1"
+ },
+ "71": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -2"
+ },
+ "72": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 2"
+ },
+ "73": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -3"
+ },
+ "74": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 3"
+ },
+ "75": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 11"
+ },
+ "76": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 11"
+ },
+ "77": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -2.5"
+ },
+ "78": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 2.5"
+ },
+ "79": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -1.5"
+ },
+ "80": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 1.5"
+ },
+ "81": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 10"
+ },
+ "82": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 10"
+ },
+ "83": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 10.5"
+ },
+ "84": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 10.5"
+ },
+ "85": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 9.5"
+ },
+ "86": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 9.5"
+ },
+ "87": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 11.5"
+ },
+ "88": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 11.5"
+ },
+ "89": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 12"
+ },
+ "90": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 12"
+ },
+ "91": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 5"
+ },
+ "92": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 5"
+ },
+ "93": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 4.5"
+ },
+ "94": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 4.5"
+ },
+ "95": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 5.5"
+ },
+ "96": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 5.5"
+ },
+ "97": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1"
+ },
+ "98": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2"
+ },
+ "99": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -0.5"
+ },
+ "100": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 0.5"
+ },
+ "101": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Over 0.5"
+ },
+ "102": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Under 0.5"
+ },
+ "103": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 0.5"
+ },
+ "104": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -0.5"
+ },
+ "105": {
+ "selectionId": 1,
+ "marketId": 1,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Full time result Goal 1"
+ },
+ "106": {
+ "selectionId": 3,
+ "marketId": 1,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Full time result Goal 2"
+ },
+ "107": {
+ "selectionId": 2,
+ "marketId": 1,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Full time result Goal X"
+ },
+ "108": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Over 0.5"
+ },
+ "109": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Under 0.5"
+ },
+ "110": {
+ "selectionId": 180,
+ "marketId": 9,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Both Teams To Score Goal Yes"
+ },
+ "111": {
+ "selectionId": 181,
+ "marketId": 9,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Both Teams To Score Goal No"
+ },
+ "112": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 0.5"
+ },
+ "113": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 0.5"
+ },
+ "114": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 1"
+ },
+ "115": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 1"
+ },
+ "116": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game To Score Goal Yes"
+ },
+ "117": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game To Score Goal No"
+ },
+ "118": {
+ "selectionId": 23,
+ "marketId": 16,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual To Score Goal Team 1 Yes"
+ },
+ "119": {
+ "selectionId": 24,
+ "marketId": 16,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual To Score Goal Team 1 No"
+ },
+ "120": {
+ "selectionId": 23,
+ "marketId": 16,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual To Score Goal Team 2 Yes"
+ },
+ "121": {
+ "selectionId": 24,
+ "marketId": 16,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual To Score Goal Team 2 No"
+ },
+ "122": {
+ "selectionId": 20,
+ "marketId": 15,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Even Goal Team 2 No"
+ },
+ "123": {
+ "selectionId": 19,
+ "marketId": 15,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Even Goal Team 2 Yes"
+ },
+ "124": {
+ "selectionId": 23,
+ "marketId": 16,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual To Score Goal Team 1 Yes"
+ },
+ "125": {
+ "selectionId": 24,
+ "marketId": 16,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual To Score Goal Team 1 No"
+ },
+ "126": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 3"
+ },
+ "127": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 3"
+ },
+ "128": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 2.5"
+ },
+ "129": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 2.5"
+ },
+ "130": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -4"
+ },
+ "131": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 4"
+ },
+ "132": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -3.5"
+ },
+ "133": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 3.5"
+ },
+ "134": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 9"
+ },
+ "135": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 9"
+ },
+ "136": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 8"
+ },
+ "137": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 8"
+ },
+ "138": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 8.5"
+ },
+ "139": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 8.5"
+ },
+ "140": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -2"
+ },
+ "141": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 2"
+ },
+ "142": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 0.5"
+ },
+ "143": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -0.5"
+ },
+ "144": {
+ "selectionId": 4,
+ "marketId": 2,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Double chance Multiple 1X"
+ },
+ "145": {
+ "selectionId": 5,
+ "marketId": 2,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Double chance Multiple 12"
+ },
+ "146": {
+ "selectionId": 6,
+ "marketId": 2,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Double chance Multiple 2X"
+ },
+ "147": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 0.5"
+ },
+ "148": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 0.5"
+ },
+ "149": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 1"
+ },
+ "150": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -1"
+ },
+ "151": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 1.5"
+ },
+ "152": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 1.5"
+ },
+ "153": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 1.5"
+ },
+ "154": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 1.5"
+ },
+ "155": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 0.5"
+ },
+ "156": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 0.5"
+ },
+ "157": {
+ "selectionId": 23,
+ "marketId": 16,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual To Score Goal Team 2 Yes"
+ },
+ "158": {
+ "selectionId": 24,
+ "marketId": 16,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual To Score Goal Team 2 No"
+ },
+ "159": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 1"
+ },
+ "160": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -1"
+ },
+ "161": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 2"
+ },
+ "162": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -2"
+ },
+ "163": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -1"
+ },
+ "164": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 1"
+ },
+ "165": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Over 1.5"
+ },
+ "166": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Under 1.5"
+ },
+ "167": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half To Score Goal Yes"
+ },
+ "168": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half To Score Goal No"
+ },
+ "169": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -1.5"
+ },
+ "170": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 1.5"
+ },
+ "171": {
+ "selectionId": 20,
+ "marketId": 15,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Even Goal Team 1 No"
+ },
+ "172": {
+ "selectionId": 19,
+ "marketId": 15,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Even Goal Team 1 Yes"
+ },
+ "173": {
+ "selectionId": 182,
+ "marketId": 14,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Even Goal Yes"
+ },
+ "174": {
+ "selectionId": 183,
+ "marketId": 14,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Even Goal No"
+ },
+ "175": {
+ "selectionId": 182,
+ "marketId": 14,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Even Goal Yes"
+ },
+ "176": {
+ "selectionId": 183,
+ "marketId": 14,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Even Goal No"
+ },
+ "177": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 4"
+ },
+ "178": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 4"
+ },
+ "179": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 4"
+ },
+ "180": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 4"
+ },
+ "181": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -3"
+ },
+ "182": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 3"
+ },
+ "183": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 2.5"
+ },
+ "184": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 2.5"
+ },
+ "185": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -4"
+ },
+ "186": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 4"
+ },
+ "187": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 4.5"
+ },
+ "188": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 4.5"
+ },
+ "189": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 5"
+ },
+ "190": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 5"
+ },
+ "191": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -2"
+ },
+ "192": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 2"
+ },
+ "193": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 2"
+ },
+ "194": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 2"
+ },
+ "195": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -5"
+ },
+ "196": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 5"
+ },
+ "197": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -4.5"
+ },
+ "198": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 4.5"
+ },
+ "199": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 7.5"
+ },
+ "200": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 7.5"
+ },
+ "201": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 3.5"
+ },
+ "202": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 3.5"
+ },
+ "203": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 5.5"
+ },
+ "204": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 5.5"
+ },
+ "205": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -5.5"
+ },
+ "206": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 5.5"
+ },
+ "207": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -6"
+ },
+ "208": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 6"
+ },
+ "209": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 2"
+ },
+ "210": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -2"
+ },
+ "211": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 1.5"
+ },
+ "212": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -1.5"
+ },
+ "213": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 2.5"
+ },
+ "214": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -2.5"
+ },
+ "215": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 3"
+ },
+ "216": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -3"
+ },
+ "217": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -6.5"
+ },
+ "218": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 6.5"
+ },
+ "219": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 3"
+ },
+ "220": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -3"
+ },
+ "221": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 1.5"
+ },
+ "222": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -1.5"
+ },
+ "223": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Over 1.5"
+ },
+ "224": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Under 1.5"
+ },
+ "225": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 3.5"
+ },
+ "226": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 3.5"
+ },
+ "227": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 3.5"
+ },
+ "228": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 3.5"
+ },
+ "229": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -7"
+ },
+ "230": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 7"
+ },
+ "231": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 3.5"
+ },
+ "232": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -3.5"
+ },
+ "233": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 7"
+ },
+ "234": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 7"
+ },
+ "235": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 12.5"
+ },
+ "236": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 12.5"
+ },
+ "237": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 6"
+ },
+ "238": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 6"
+ },
+ "239": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 2.5"
+ },
+ "240": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 2.5"
+ },
+ "241": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 2"
+ },
+ "242": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 2"
+ },
+ "243": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 1.5"
+ },
+ "244": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 1.5"
+ },
+ "245": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 2.5"
+ },
+ "246": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 2.5"
+ },
+ "247": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 3"
+ },
+ "248": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 3"
+ },
+ "249": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 4"
+ },
+ "250": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -4"
+ },
+ "251": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 4.5"
+ },
+ "252": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -4.5"
+ },
+ "253": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 5"
+ },
+ "254": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -5"
+ },
+ "255": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 13"
+ },
+ "256": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 13"
+ },
+ "257": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 13.5"
+ },
+ "258": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 13.5"
+ },
+ "259": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 6.5"
+ },
+ "260": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 6.5"
+ },
+ "261": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 5.5"
+ },
+ "262": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -5.5"
+ },
+ "263": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 1"
+ },
+ "264": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 1"
+ },
+ "265": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Over 2.5"
+ },
+ "266": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Under 2.5"
+ },
+ "267": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -5.5"
+ },
+ "268": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 5.5"
+ },
+ "269": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -5"
+ },
+ "270": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 5"
+ },
+ "271": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 6"
+ },
+ "272": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 6"
+ },
+ "273": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 5.5"
+ },
+ "274": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 5.5"
+ },
+ "275": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -2.5"
+ },
+ "276": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 2.5"
+ },
+ "277": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 3"
+ },
+ "278": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 3"
+ },
+ "279": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 2"
+ },
+ "280": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -2"
+ },
+ "281": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 4"
+ },
+ "282": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -4"
+ },
+ "283": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 4.5"
+ },
+ "284": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 4.5"
+ },
+ "285": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 22.5"
+ },
+ "286": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 22.5"
+ },
+ "287": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 14"
+ },
+ "288": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 14"
+ },
+ "289": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 14.5"
+ },
+ "290": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 14.5"
+ },
+ "291": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 6"
+ },
+ "292": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -6"
+ },
+ "293": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -6"
+ },
+ "294": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 6"
+ },
+ "295": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 6.5"
+ },
+ "296": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 6.5"
+ },
+ "297": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -6.5"
+ },
+ "298": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 6.5"
+ },
+ "299": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 7"
+ },
+ "300": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 7"
+ },
+ "301": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 6.5"
+ },
+ "302": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 6.5"
+ },
+ "303": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -3"
+ },
+ "304": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 3"
+ },
+ "305": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 20.5"
+ },
+ "306": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 20.5"
+ },
+ "307": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -2.5"
+ },
+ "308": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 2.5"
+ },
+ "309": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 5.5"
+ },
+ "310": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -5.5"
+ },
+ "311": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 19"
+ },
+ "312": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 19"
+ },
+ "313": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -4.5"
+ },
+ "314": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 4.5"
+ },
+ "315": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 21"
+ },
+ "316": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 21"
+ },
+ "317": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -5"
+ },
+ "318": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 5"
+ },
+ "319": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 20"
+ },
+ "320": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 20"
+ },
+ "321": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -5.5"
+ },
+ "322": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 5.5"
+ },
+ "323": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -4"
+ },
+ "324": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 4"
+ },
+ "325": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -3.5"
+ },
+ "326": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 3.5"
+ },
+ "327": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 19.5"
+ },
+ "328": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 19.5"
+ },
+ "329": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 12.5"
+ },
+ "330": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 12.5"
+ },
+ "331": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 10"
+ },
+ "332": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 10"
+ },
+ "333": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 9.5"
+ },
+ "334": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 9.5"
+ },
+ "335": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 9"
+ },
+ "336": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 9"
+ },
+ "337": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -6"
+ },
+ "338": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 6"
+ },
+ "339": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 18.5"
+ },
+ "340": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 18.5"
+ },
+ "341": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 8.5"
+ },
+ "342": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 8.5"
+ },
+ "343": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -6.5"
+ },
+ "344": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 6.5"
+ },
+ "345": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 18"
+ },
+ "346": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 18"
+ },
+ "347": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 7.5"
+ },
+ "348": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 7.5"
+ },
+ "349": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -2"
+ },
+ "350": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 2"
+ },
+ "351": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 4"
+ },
+ "352": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -4"
+ },
+ "353": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 5"
+ },
+ "354": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -5"
+ },
+ "355": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 2"
+ },
+ "356": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -2"
+ },
+ "357": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 0.5"
+ },
+ "358": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -0.5"
+ },
+ "359": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -3"
+ },
+ "360": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 3"
+ },
+ "361": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 2.5"
+ },
+ "362": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -2.5"
+ },
+ "363": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 4.5"
+ },
+ "364": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -4.5"
+ },
+ "365": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 3"
+ },
+ "366": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -3"
+ },
+ "367": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -1.5"
+ },
+ "368": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 1.5"
+ },
+ "369": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 21.5"
+ },
+ "370": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 21.5"
+ },
+ "371": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 3.5"
+ },
+ "372": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -3.5"
+ },
+ "373": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 11"
+ },
+ "374": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 11"
+ },
+ "375": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 12.5"
+ },
+ "376": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 12.5"
+ },
+ "377": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -7"
+ },
+ "378": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 7"
+ },
+ "379": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 7"
+ },
+ "380": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 7"
+ },
+ "381": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 10.5"
+ },
+ "382": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 10.5"
+ },
+ "383": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 22"
+ },
+ "384": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 22"
+ },
+ "385": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 12"
+ },
+ "386": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 12"
+ },
+ "387": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 12"
+ },
+ "388": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 12"
+ },
+ "389": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 1"
+ },
+ "390": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -1"
+ },
+ "391": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 1.5"
+ },
+ "392": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -1.5"
+ },
+ "393": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 6"
+ },
+ "394": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -6"
+ },
+ "395": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -1"
+ },
+ "396": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 1"
+ },
+ "397": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -0.5"
+ },
+ "398": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 0.5"
+ },
+ "399": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 6.5"
+ },
+ "400": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -6.5"
+ },
+ "401": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 17.5"
+ },
+ "402": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 17.5"
+ },
+ "403": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1"
+ },
+ "404": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2"
+ },
+ "405": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 17"
+ },
+ "406": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 17"
+ },
+ "407": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 7"
+ },
+ "408": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -7"
+ },
+ "409": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 7.5"
+ },
+ "410": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -7.5"
+ },
+ "411": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 16.5"
+ },
+ "412": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 16.5"
+ },
+ "413": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 22.5"
+ },
+ "414": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 22.5"
+ },
+ "415": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 11"
+ },
+ "416": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 11"
+ },
+ "417": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 23"
+ },
+ "418": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 23"
+ },
+ "419": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 11.5"
+ },
+ "420": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 11.5"
+ },
+ "421": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 7.5"
+ },
+ "422": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 7.5"
+ },
+ "423": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 6.5"
+ },
+ "424": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 6.5"
+ },
+ "425": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 7"
+ },
+ "426": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 7"
+ },
+ "427": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 8.5"
+ },
+ "428": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 8.5"
+ },
+ "429": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 9"
+ },
+ "430": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 9"
+ },
+ "431": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 8"
+ },
+ "432": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 8"
+ },
+ "433": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 9.5"
+ },
+ "434": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 9.5"
+ },
+ "435": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 23.5"
+ },
+ "436": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 23.5"
+ },
+ "437": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 13"
+ },
+ "438": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 13"
+ },
+ "439": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 11.5"
+ },
+ "440": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 11.5"
+ },
+ "441": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -7.5"
+ },
+ "442": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 7.5"
+ },
+ "443": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 6.5"
+ },
+ "444": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 6.5"
+ },
+ "445": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Race To Round 1 5"
+ },
+ "446": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Race To Round 2 5"
+ },
+ "447": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 3.5"
+ },
+ "448": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 -3.5"
+ },
+ "449": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 -5.5"
+ },
+ "450": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 5.5"
+ },
+ "451": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 -4.5"
+ },
+ "452": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 4.5"
+ },
+ "453": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 -3.5"
+ },
+ "454": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 3.5"
+ },
+ "455": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Over 12.5"
+ },
+ "456": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Under 12.5"
+ },
+ "457": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 -2.5"
+ },
+ "458": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 2.5"
+ },
+ "459": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Over 15.5"
+ },
+ "460": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Under 15.5"
+ },
+ "461": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 2.5"
+ },
+ "462": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 -2.5"
+ },
+ "463": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 4.5"
+ },
+ "464": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 -4.5"
+ },
+ "465": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 5.5"
+ },
+ "466": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 -5.5"
+ },
+ "467": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 6.5"
+ },
+ "468": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 -6.5"
+ },
+ "469": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 7.5"
+ },
+ "470": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 -7.5"
+ },
+ "471": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 8.5"
+ },
+ "472": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 -8.5"
+ },
+ "473": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 26.5"
+ },
+ "474": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 26.5"
+ },
+ "475": {
+ "selectionId": 23,
+ "marketId": 16,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual To Score Map Team 2 Yes"
+ },
+ "476": {
+ "selectionId": 24,
+ "marketId": 16,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual To Score Map Team 2 No"
+ },
+ "477": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 22.5"
+ },
+ "478": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 22.5"
+ },
+ "479": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 23.5"
+ },
+ "480": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 23.5"
+ },
+ "481": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 24.5"
+ },
+ "482": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 24.5"
+ },
+ "483": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 25.5"
+ },
+ "484": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 25.5"
+ },
+ "485": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 27.5"
+ },
+ "486": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 27.5"
+ },
+ "487": {
+ "selectionId": 182,
+ "marketId": 14,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Even Round Yes"
+ },
+ "488": {
+ "selectionId": 183,
+ "marketId": 14,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Even Round No"
+ },
+ "489": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 28.5"
+ },
+ "490": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 28.5"
+ },
+ "491": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 29.5"
+ },
+ "492": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 29.5"
+ },
+ "493": {
+ "selectionId": 23,
+ "marketId": 16,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual To Score Map Team 1 Yes"
+ },
+ "494": {
+ "selectionId": 24,
+ "marketId": 16,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual To Score Map Team 1 No"
+ },
+ "495": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 30.5"
+ },
+ "496": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 30.5"
+ },
+ "497": {
+ "selectionId": 192,
+ "marketId": 23,
+ "gamePeriodId": 78,
+ "gameTypeId": 71,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Will there be Overtime Yes"
+ },
+ "498": {
+ "selectionId": 193,
+ "marketId": 23,
+ "gamePeriodId": 78,
+ "gameTypeId": 71,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Will there be Overtime No"
+ },
+ "499": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Map Team 1 H1 -1.5"
+ },
+ "500": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Map Team 2 H2 1.5"
+ },
+ "501": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Map Team 1 H1 1.5"
+ },
+ "502": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Map Team 2 H2 -1.5"
+ },
+ "503": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 -7.5"
+ },
+ "504": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 7.5"
+ },
+ "505": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 -6.5"
+ },
+ "506": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 6.5"
+ },
+ "507": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Over 15.5"
+ },
+ "508": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Under 15.5"
+ },
+ "509": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 -2.5"
+ },
+ "510": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 2.5"
+ },
+ "511": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 -7.5"
+ },
+ "512": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 7.5"
+ },
+ "513": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 -6.5"
+ },
+ "514": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 6.5"
+ },
+ "515": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 -5.5"
+ },
+ "516": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 5.5"
+ },
+ "517": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 -4.5"
+ },
+ "518": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 4.5"
+ },
+ "519": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 -3.5"
+ },
+ "520": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 3.5"
+ },
+ "521": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 2.5"
+ },
+ "522": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 -2.5"
+ },
+ "523": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 3.5"
+ },
+ "524": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 -3.5"
+ },
+ "525": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 4.5"
+ },
+ "526": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 -4.5"
+ },
+ "527": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 5.5"
+ },
+ "528": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 -5.5"
+ },
+ "529": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 6.5"
+ },
+ "530": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 -6.5"
+ },
+ "531": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 26.5"
+ },
+ "532": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 26.5"
+ },
+ "533": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 22.5"
+ },
+ "534": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 22.5"
+ },
+ "535": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 23.5"
+ },
+ "536": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 23.5"
+ },
+ "537": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Over 14.5"
+ },
+ "538": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Under 14.5"
+ },
+ "539": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 24.5"
+ },
+ "540": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 24.5"
+ },
+ "541": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 25.5"
+ },
+ "542": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 25.5"
+ },
+ "543": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 27.5"
+ },
+ "544": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 27.5"
+ },
+ "545": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 28.5"
+ },
+ "546": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 28.5"
+ },
+ "547": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 29.5"
+ },
+ "548": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 29.5"
+ },
+ "549": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 30.5"
+ },
+ "550": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 30.5"
+ },
+ "551": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Over 15.5"
+ },
+ "552": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Under 15.5"
+ },
+ "553": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Over 15.5"
+ },
+ "554": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Under 15.5"
+ },
+ "555": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 -2.5"
+ },
+ "556": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 2.5"
+ },
+ "557": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 -7.5"
+ },
+ "558": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 7.5"
+ },
+ "559": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 -6.5"
+ },
+ "560": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 6.5"
+ },
+ "561": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 -5.5"
+ },
+ "562": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 5.5"
+ },
+ "563": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 -4.5"
+ },
+ "564": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 4.5"
+ },
+ "565": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 -3.5"
+ },
+ "566": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 3.5"
+ },
+ "567": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 2.5"
+ },
+ "568": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 -2.5"
+ },
+ "569": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 3.5"
+ },
+ "570": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 -3.5"
+ },
+ "571": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 4.5"
+ },
+ "572": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 -4.5"
+ },
+ "573": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 5.5"
+ },
+ "574": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 -5.5"
+ },
+ "575": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 6.5"
+ },
+ "576": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 -6.5"
+ },
+ "577": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Over 26.5"
+ },
+ "578": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Under 26.5"
+ },
+ "579": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Over 22.5"
+ },
+ "580": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Under 22.5"
+ },
+ "581": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Over 23.5"
+ },
+ "582": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Under 23.5"
+ },
+ "583": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Over 24.5"
+ },
+ "584": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Under 24.5"
+ },
+ "585": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Over 25.5"
+ },
+ "586": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Under 25.5"
+ },
+ "587": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Over 27.5"
+ },
+ "588": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Under 27.5"
+ },
+ "589": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Over 28.5"
+ },
+ "590": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Under 28.5"
+ },
+ "591": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Over 29.5"
+ },
+ "592": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Under 29.5"
+ },
+ "593": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Over 30.5"
+ },
+ "594": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Under 30.5"
+ },
+ "595": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Over 15.5"
+ },
+ "596": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Under 15.5"
+ },
+ "597": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Over 13.5"
+ },
+ "598": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Under 13.5"
+ },
+ "599": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 9.5"
+ },
+ "600": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 -9.5"
+ },
+ "601": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 78,
+ "gameTypeId": 5,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 To Score Ace Yes"
+ },
+ "602": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 78,
+ "gameTypeId": 5,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 To Score Ace No"
+ },
+ "603": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 78,
+ "gameTypeId": 65,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 To Score Knife Kill Yes"
+ },
+ "604": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 78,
+ "gameTypeId": 65,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 To Score Knife Kill No"
+ },
+ "605": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Over 11.5"
+ },
+ "606": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Under 11.5"
+ },
+ "607": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 -10.5"
+ },
+ "608": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 10.5"
+ },
+ "609": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 -9.5"
+ },
+ "610": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 9.5"
+ },
+ "611": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 -8.5"
+ },
+ "612": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 8.5"
+ },
+ "613": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Over 10.5"
+ },
+ "614": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Under 10.5"
+ },
+ "615": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 21.5"
+ },
+ "616": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 21.5"
+ },
+ "617": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 -10.5"
+ },
+ "618": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 10.5"
+ },
+ "619": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 -9.5"
+ },
+ "620": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 9.5"
+ },
+ "621": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 -8.5"
+ },
+ "622": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 8.5"
+ },
+ "623": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Over 10.5"
+ },
+ "624": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Under 10.5"
+ },
+ "625": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 2.5"
+ },
+ "626": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 2.5"
+ },
+ "627": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Over 13.5"
+ },
+ "628": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Under 13.5"
+ },
+ "629": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Over 12.5"
+ },
+ "630": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Under 12.5"
+ },
+ "631": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Over 11.5"
+ },
+ "632": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Under 11.5"
+ },
+ "633": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Over 14.5"
+ },
+ "634": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Under 14.5"
+ },
+ "635": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 -9.5"
+ },
+ "636": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 9.5"
+ },
+ "637": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 -8.5"
+ },
+ "638": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 8.5"
+ },
+ "639": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Over 21.5"
+ },
+ "640": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Under 21.5"
+ },
+ "641": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Over 11.5"
+ },
+ "642": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Under 11.5"
+ },
+ "643": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 7.5"
+ },
+ "644": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 -7.5"
+ },
+ "645": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Over 14.5"
+ },
+ "646": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Under 14.5"
+ },
+ "647": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Over 15.5"
+ },
+ "648": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Under 15.5"
+ },
+ "649": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 7.5"
+ },
+ "650": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 -7.5"
+ },
+ "651": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Over 14.5"
+ },
+ "652": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Under 14.5"
+ },
+ "653": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Over 14.5"
+ },
+ "654": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Under 14.5"
+ },
+ "655": {
+ "selectionId": 182,
+ "marketId": 14,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Even Round Yes"
+ },
+ "656": {
+ "selectionId": 183,
+ "marketId": 14,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Even Round No"
+ },
+ "657": {
+ "selectionId": 192,
+ "marketId": 23,
+ "gamePeriodId": 140,
+ "gameTypeId": 71,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Will there be Overtime Yes"
+ },
+ "658": {
+ "selectionId": 193,
+ "marketId": 23,
+ "gamePeriodId": 140,
+ "gameTypeId": 71,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Will there be Overtime No"
+ },
+ "659": {
+ "selectionId": 182,
+ "marketId": 14,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Even Round Yes"
+ },
+ "660": {
+ "selectionId": 183,
+ "marketId": 14,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Even Round No"
+ },
+ "661": {
+ "selectionId": 192,
+ "marketId": 23,
+ "gamePeriodId": 202,
+ "gameTypeId": 71,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Will there be Overtime Yes"
+ },
+ "662": {
+ "selectionId": 193,
+ "marketId": 23,
+ "gamePeriodId": 202,
+ "gameTypeId": 71,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Will there be Overtime No"
+ },
+ "663": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Over 14.5"
+ },
+ "664": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Under 14.5"
+ },
+ "665": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Race To Round 1 5"
+ },
+ "666": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Race To Round 2 5"
+ },
+ "667": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 140,
+ "gameTypeId": 5,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 To Score Ace Yes"
+ },
+ "668": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 140,
+ "gameTypeId": 5,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 To Score Ace No"
+ },
+ "669": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 140,
+ "gameTypeId": 65,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 To Score Knife Kill Yes"
+ },
+ "670": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 140,
+ "gameTypeId": 65,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 To Score Knife Kill No"
+ },
+ "671": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Race To Round 1 5"
+ },
+ "672": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Race To Round 2 5"
+ },
+ "673": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 202,
+ "gameTypeId": 65,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 To Score Knife Kill Yes"
+ },
+ "674": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 202,
+ "gameTypeId": 65,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 To Score Knife Kill No"
+ },
+ "675": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 202,
+ "gameTypeId": 5,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 To Score Ace Yes"
+ },
+ "676": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 202,
+ "gameTypeId": 5,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 To Score Ace No"
+ },
+ "677": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Over 13.5"
+ },
+ "678": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Under 13.5"
+ },
+ "679": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Over 13.5"
+ },
+ "680": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Under 13.5"
+ },
+ "681": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 8.5"
+ },
+ "682": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 -8.5"
+ },
+ "683": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 8.5"
+ },
+ "684": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 -8.5"
+ },
+ "685": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Over 12.5"
+ },
+ "686": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Under 12.5"
+ },
+ "687": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Over 12.5"
+ },
+ "688": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Under 12.5"
+ },
+ "689": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 9.5"
+ },
+ "690": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 -9.5"
+ },
+ "691": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Over 11.5"
+ },
+ "692": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Under 11.5"
+ },
+ "693": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 10.5"
+ },
+ "694": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 -10.5"
+ },
+ "695": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Over 10.5"
+ },
+ "696": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Under 10.5"
+ },
+ "697": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -2.5"
+ },
+ "698": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 2.5"
+ },
+ "699": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 47.5"
+ },
+ "700": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 47.5"
+ },
+ "701": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -7.5"
+ },
+ "702": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 7.5"
+ },
+ "703": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 32.5"
+ },
+ "704": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 32.5"
+ },
+ "705": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -6.5"
+ },
+ "706": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 6.5"
+ },
+ "707": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 43.5"
+ },
+ "708": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 43.5"
+ },
+ "709": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -5.5"
+ },
+ "710": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 5.5"
+ },
+ "711": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 44.5"
+ },
+ "712": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 44.5"
+ },
+ "713": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -4.5"
+ },
+ "714": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 4.5"
+ },
+ "715": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 45.5"
+ },
+ "716": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 45.5"
+ },
+ "717": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -3.5"
+ },
+ "718": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 3.5"
+ },
+ "719": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 46.5"
+ },
+ "720": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 46.5"
+ },
+ "721": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -1.5"
+ },
+ "722": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 1.5"
+ },
+ "723": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 48.5"
+ },
+ "724": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 48.5"
+ },
+ "725": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -0.5"
+ },
+ "726": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 0.5"
+ },
+ "727": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 49.5"
+ },
+ "728": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 49.5"
+ },
+ "729": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 0.5"
+ },
+ "730": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -0.5"
+ },
+ "731": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 50.5"
+ },
+ "732": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 50.5"
+ },
+ "733": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 1.5"
+ },
+ "734": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -1.5"
+ },
+ "735": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 51.5"
+ },
+ "736": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 51.5"
+ },
+ "737": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 2.5"
+ },
+ "738": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -2.5"
+ },
+ "739": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 67.5"
+ },
+ "740": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 67.5"
+ },
+ "741": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 24.5"
+ },
+ "742": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 24.5"
+ },
+ "743": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 23.5"
+ },
+ "744": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 23.5"
+ },
+ "745": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 47.5"
+ },
+ "746": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 47.5"
+ },
+ "747": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 32.5"
+ },
+ "748": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 32.5"
+ },
+ "749": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 43.5"
+ },
+ "750": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 43.5"
+ },
+ "751": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 44.5"
+ },
+ "752": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 44.5"
+ },
+ "753": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 45.5"
+ },
+ "754": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 45.5"
+ },
+ "755": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 46.5"
+ },
+ "756": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 46.5"
+ },
+ "757": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 48.5"
+ },
+ "758": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 48.5"
+ },
+ "759": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 49.5"
+ },
+ "760": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 49.5"
+ },
+ "761": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 50.5"
+ },
+ "762": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 50.5"
+ },
+ "763": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 51.5"
+ },
+ "764": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 51.5"
+ },
+ "765": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 67.5"
+ },
+ "766": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 67.5"
+ },
+ "767": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 24.5"
+ },
+ "768": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 24.5"
+ },
+ "769": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 0.5"
+ },
+ "770": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -0.5"
+ },
+ "771": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -4.5"
+ },
+ "772": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 4.5"
+ },
+ "773": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -3.5"
+ },
+ "774": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 3.5"
+ },
+ "775": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -2.5"
+ },
+ "776": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 2.5"
+ },
+ "777": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 47.5"
+ },
+ "778": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 47.5"
+ },
+ "779": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -1.5"
+ },
+ "780": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 1.5"
+ },
+ "781": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 32.5"
+ },
+ "782": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 32.5"
+ },
+ "783": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -0.5"
+ },
+ "784": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 0.5"
+ },
+ "785": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 43.5"
+ },
+ "786": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 43.5"
+ },
+ "787": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 47.5"
+ },
+ "788": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 47.5"
+ },
+ "789": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 1.5"
+ },
+ "790": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -1.5"
+ },
+ "791": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 44.5"
+ },
+ "792": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 44.5"
+ },
+ "793": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 32.5"
+ },
+ "794": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 32.5"
+ },
+ "795": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 2.5"
+ },
+ "796": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -2.5"
+ },
+ "797": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 45.5"
+ },
+ "798": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 45.5"
+ },
+ "799": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 43.5"
+ },
+ "800": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 43.5"
+ },
+ "801": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 3.5"
+ },
+ "802": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -3.5"
+ },
+ "803": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 46.5"
+ },
+ "804": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 46.5"
+ },
+ "805": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 44.5"
+ },
+ "806": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 44.5"
+ },
+ "807": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 4.5"
+ },
+ "808": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -4.5"
+ },
+ "809": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 48.5"
+ },
+ "810": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 48.5"
+ },
+ "811": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 47.5"
+ },
+ "812": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 47.5"
+ },
+ "813": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 45.5"
+ },
+ "814": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 45.5"
+ },
+ "815": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 5.5"
+ },
+ "816": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -5.5"
+ },
+ "817": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 49.5"
+ },
+ "818": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 49.5"
+ },
+ "819": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 32.5"
+ },
+ "820": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 32.5"
+ },
+ "821": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 46.5"
+ },
+ "822": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 46.5"
+ },
+ "823": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 50.5"
+ },
+ "824": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 50.5"
+ },
+ "825": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 43.5"
+ },
+ "826": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 43.5"
+ },
+ "827": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 48.5"
+ },
+ "828": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 48.5"
+ },
+ "829": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 51.5"
+ },
+ "830": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 51.5"
+ },
+ "831": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 44.5"
+ },
+ "832": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 44.5"
+ },
+ "833": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 49.5"
+ },
+ "834": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 49.5"
+ },
+ "835": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 67.5"
+ },
+ "836": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 67.5"
+ },
+ "837": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 45.5"
+ },
+ "838": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 45.5"
+ },
+ "839": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 50.5"
+ },
+ "840": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 50.5"
+ },
+ "841": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 24.5"
+ },
+ "842": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 24.5"
+ },
+ "843": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 46.5"
+ },
+ "844": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 46.5"
+ },
+ "845": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 51.5"
+ },
+ "846": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 51.5"
+ },
+ "847": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 48.5"
+ },
+ "848": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 48.5"
+ },
+ "849": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 67.5"
+ },
+ "850": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 67.5"
+ },
+ "851": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 49.5"
+ },
+ "852": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 49.5"
+ },
+ "853": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 50.5"
+ },
+ "854": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 50.5"
+ },
+ "855": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 51.5"
+ },
+ "856": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 51.5"
+ },
+ "857": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 67.5"
+ },
+ "858": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 67.5"
+ },
+ "859": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 24.5"
+ },
+ "860": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 24.5"
+ },
+ "861": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 3.5"
+ },
+ "862": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -3.5"
+ },
+ "863": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Map Team 1 H1 -2.5"
+ },
+ "864": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Map Team 2 H2 2.5"
+ },
+ "865": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Map Team 1 H1 2.5"
+ },
+ "866": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Map Team 2 H2 -2.5"
+ },
+ "867": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 4.5"
+ },
+ "868": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 4.5"
+ },
+ "869": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 3.5"
+ },
+ "870": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 3.5"
+ },
+ "871": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 78,
+ "gameTypeId": 43,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Who First Barrack 1"
+ },
+ "872": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 78,
+ "gameTypeId": 43,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Who First Barrack 2"
+ },
+ "873": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 78,
+ "gameTypeId": 52,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Who First First Blood 1"
+ },
+ "874": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 78,
+ "gameTypeId": 52,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Who First First Blood 2"
+ },
+ "875": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 78,
+ "gameTypeId": 81,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Who First Roshan 1"
+ },
+ "876": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 78,
+ "gameTypeId": 81,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Who First Roshan 2"
+ },
+ "877": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Race To Kill 1 5"
+ },
+ "878": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Race To Kill 2 5"
+ },
+ "879": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Race To Kill 1 10"
+ },
+ "880": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Race To Kill 2 10"
+ },
+ "881": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Race To Kill 1 15"
+ },
+ "882": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Race To Kill 2 15"
+ },
+ "883": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Race To Kill 1 20"
+ },
+ "884": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Race To Kill 2 20"
+ },
+ "885": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 78,
+ "gameTypeId": 95,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Who First Tower 1"
+ },
+ "886": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 78,
+ "gameTypeId": 95,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Who First Tower 2"
+ },
+ "887": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Map Team 1 H1 -0.5"
+ },
+ "888": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Map Team 2 H2 0.5"
+ },
+ "889": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Map Team 1 H1 0.5"
+ },
+ "890": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Map Team 2 H2 -0.5"
+ },
+ "891": {
+ "selectionId": 1,
+ "marketId": 1,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result Map 1"
+ },
+ "892": {
+ "selectionId": 2,
+ "marketId": 1,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result Map X"
+ },
+ "893": {
+ "selectionId": 3,
+ "marketId": 1,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result Map 2"
+ },
+ "894": {
+ "selectionId": 182,
+ "marketId": 14,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Even Kill Yes"
+ },
+ "895": {
+ "selectionId": 183,
+ "marketId": 14,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Even Kill No"
+ },
+ "896": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 23.5"
+ },
+ "897": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 23.5"
+ },
+ "898": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 4.5"
+ },
+ "899": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -4.5"
+ },
+ "900": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 5.5"
+ },
+ "901": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -5.5"
+ },
+ "902": {
+ "selectionId": 182,
+ "marketId": 14,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Even Kill Yes"
+ },
+ "903": {
+ "selectionId": 183,
+ "marketId": 14,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Even Kill No"
+ },
+ "904": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 0.5"
+ },
+ "905": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -0.5"
+ },
+ "906": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -4.5"
+ },
+ "907": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 4.5"
+ },
+ "908": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -3.5"
+ },
+ "909": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 3.5"
+ },
+ "910": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -2.5"
+ },
+ "911": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 2.5"
+ },
+ "912": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -1.5"
+ },
+ "913": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 1.5"
+ },
+ "914": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -0.5"
+ },
+ "915": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 0.5"
+ },
+ "916": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 1.5"
+ },
+ "917": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -1.5"
+ },
+ "918": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 2.5"
+ },
+ "919": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -2.5"
+ },
+ "920": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 3.5"
+ },
+ "921": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -3.5"
+ },
+ "922": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 4.5"
+ },
+ "923": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -4.5"
+ },
+ "924": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 23.5"
+ },
+ "925": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 23.5"
+ },
+ "926": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 5.5"
+ },
+ "927": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -5.5"
+ },
+ "928": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 23.5"
+ },
+ "929": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 23.5"
+ },
+ "930": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -6.5"
+ },
+ "931": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 6.5"
+ },
+ "932": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -5.5"
+ },
+ "933": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 5.5"
+ },
+ "934": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 140,
+ "gameTypeId": 43,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Who First Barrack 1"
+ },
+ "935": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 140,
+ "gameTypeId": 43,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Who First Barrack 2"
+ },
+ "936": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 140,
+ "gameTypeId": 52,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Who First First Blood 1"
+ },
+ "937": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 140,
+ "gameTypeId": 52,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Who First First Blood 2"
+ },
+ "938": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 140,
+ "gameTypeId": 81,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Who First Roshan 1"
+ },
+ "939": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 140,
+ "gameTypeId": 81,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Who First Roshan 2"
+ },
+ "940": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Race To Kill 1 10"
+ },
+ "941": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Race To Kill 2 10"
+ },
+ "942": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Race To Kill 1 5"
+ },
+ "943": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Race To Kill 2 5"
+ },
+ "944": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Race To Kill 1 15"
+ },
+ "945": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Race To Kill 2 15"
+ },
+ "946": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Race To Kill 1 20"
+ },
+ "947": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Race To Kill 2 20"
+ },
+ "948": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 140,
+ "gameTypeId": 95,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Who First Tower 1"
+ },
+ "949": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 140,
+ "gameTypeId": 95,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Who First Tower 2"
+ },
+ "950": {
+ "selectionId": 182,
+ "marketId": 14,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Even Kill Yes"
+ },
+ "951": {
+ "selectionId": 183,
+ "marketId": 14,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Even Kill No"
+ },
+ "952": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 2.5"
+ },
+ "953": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -2.5"
+ },
+ "954": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -2.5"
+ },
+ "955": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 2.5"
+ },
+ "956": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 24.5"
+ },
+ "957": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 24.5"
+ },
+ "958": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -1.5"
+ },
+ "959": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 1.5"
+ },
+ "960": {
+ "selectionId": 182,
+ "marketId": 14,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Even Kill Yes"
+ },
+ "961": {
+ "selectionId": 183,
+ "marketId": 14,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Even Kill No"
+ },
+ "962": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -0.5"
+ },
+ "963": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 0.5"
+ },
+ "964": {
+ "selectionId": 182,
+ "marketId": 14,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Even Kill Yes"
+ },
+ "965": {
+ "selectionId": 183,
+ "marketId": 14,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Even Kill No"
+ },
+ "966": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 0.5"
+ },
+ "967": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -0.5"
+ },
+ "968": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 2.5"
+ },
+ "969": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -2.5"
+ },
+ "970": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 1.5"
+ },
+ "971": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -1.5"
+ },
+ "972": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -2.5"
+ },
+ "973": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 2.5"
+ },
+ "974": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 3.5"
+ },
+ "975": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -3.5"
+ },
+ "976": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -1.5"
+ },
+ "977": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 1.5"
+ },
+ "978": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 4.5"
+ },
+ "979": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -4.5"
+ },
+ "980": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -0.5"
+ },
+ "981": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 0.5"
+ },
+ "982": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 5.5"
+ },
+ "983": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -5.5"
+ },
+ "984": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 0.5"
+ },
+ "985": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -0.5"
+ },
+ "986": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 6.5"
+ },
+ "987": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -6.5"
+ },
+ "988": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 1.5"
+ },
+ "989": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -1.5"
+ },
+ "990": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 7.5"
+ },
+ "991": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -7.5"
+ },
+ "992": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 3.5"
+ },
+ "993": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -3.5"
+ },
+ "994": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 4.5"
+ },
+ "995": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -4.5"
+ },
+ "996": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 24.5"
+ },
+ "997": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 24.5"
+ },
+ "998": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 5.5"
+ },
+ "999": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -5.5"
+ },
+ "1000": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 6.5"
+ },
+ "1001": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -6.5"
+ },
+ "1002": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 7.5"
+ },
+ "1003": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -7.5"
+ },
+ "1004": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 24.5"
+ },
+ "1005": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 24.5"
+ },
+ "1006": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 31.5"
+ },
+ "1007": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 31.5"
+ },
+ "1008": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 42.5"
+ },
+ "1009": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 42.5"
+ },
+ "1010": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 66.5"
+ },
+ "1011": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 66.5"
+ },
+ "1012": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 31.5"
+ },
+ "1013": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 31.5"
+ },
+ "1014": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 42.5"
+ },
+ "1015": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 42.5"
+ },
+ "1016": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 66.5"
+ },
+ "1017": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 66.5"
+ },
+ "1018": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 6.5"
+ },
+ "1019": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -6.5"
+ },
+ "1020": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -5.5"
+ },
+ "1021": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 5.5"
+ },
+ "1022": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 24.5"
+ },
+ "1023": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 24.5"
+ },
+ "1024": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -3.5"
+ },
+ "1025": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 3.5"
+ },
+ "1026": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 23.5"
+ },
+ "1027": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 23.5"
+ },
+ "1028": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 23.5"
+ },
+ "1029": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 23.5"
+ },
+ "1030": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Race To Kill 1 15"
+ },
+ "1031": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Race To Kill 2 15"
+ },
+ "1032": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Race To Kill 1 10"
+ },
+ "1033": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Race To Kill 2 10"
+ },
+ "1034": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Race To Kill 1 20"
+ },
+ "1035": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Race To Kill 2 20"
+ },
+ "1036": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 202,
+ "gameTypeId": 43,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Who First Barrack 1"
+ },
+ "1037": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 202,
+ "gameTypeId": 43,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Who First Barrack 2"
+ },
+ "1038": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 202,
+ "gameTypeId": 95,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Who First Tower 1"
+ },
+ "1039": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 202,
+ "gameTypeId": 95,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Who First Tower 2"
+ },
+ "1040": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 202,
+ "gameTypeId": 52,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Who First First Blood 1"
+ },
+ "1041": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 202,
+ "gameTypeId": 52,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Who First First Blood 2"
+ },
+ "1042": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 202,
+ "gameTypeId": 81,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Who First Roshan 1"
+ },
+ "1043": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 202,
+ "gameTypeId": 81,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Who First Roshan 2"
+ },
+ "1044": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Race To Kill 1 5"
+ },
+ "1045": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Race To Kill 2 5"
+ },
+ "1046": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 7.5"
+ },
+ "1047": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -7.5"
+ },
+ "1048": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 8.5"
+ },
+ "1049": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -8.5"
+ },
+ "1050": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 6.5"
+ },
+ "1051": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -6.5"
+ },
+ "1052": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 6.5"
+ },
+ "1053": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -6.5"
+ },
+ "1054": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 264,
+ "gameTypeId": 95,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Who First Tower 1"
+ },
+ "1055": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 264,
+ "gameTypeId": 95,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Who First Tower 2"
+ },
+ "1056": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Race To Kill 1 5"
+ },
+ "1057": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Race To Kill 2 5"
+ },
+ "1058": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Race To Kill 1 15"
+ },
+ "1059": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Race To Kill 2 15"
+ },
+ "1060": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 264,
+ "gameTypeId": 52,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Who First First Blood 1"
+ },
+ "1061": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 264,
+ "gameTypeId": 52,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Who First First Blood 2"
+ },
+ "1062": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 8.5"
+ },
+ "1063": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -8.5"
+ },
+ "1064": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 326,
+ "gameTypeId": 43,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Who First Barrack 1"
+ },
+ "1065": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 326,
+ "gameTypeId": 43,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Who First Barrack 2"
+ },
+ "1066": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 326,
+ "gameTypeId": 52,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Who First First Blood 1"
+ },
+ "1067": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 326,
+ "gameTypeId": 52,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Who First First Blood 2"
+ },
+ "1068": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 264,
+ "gameTypeId": 43,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Who First Barrack 1"
+ },
+ "1069": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 264,
+ "gameTypeId": 43,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Who First Barrack 2"
+ },
+ "1070": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 264,
+ "gameTypeId": 81,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Who First Roshan 1"
+ },
+ "1071": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 264,
+ "gameTypeId": 81,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Who First Roshan 2"
+ },
+ "1072": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Race To Kill 1 10"
+ },
+ "1073": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Race To Kill 2 10"
+ },
+ "1074": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Race To Kill 1 20"
+ },
+ "1075": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Race To Kill 2 20"
+ },
+ "1076": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Race To Kill 1 20"
+ },
+ "1077": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Race To Kill 2 20"
+ },
+ "1078": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 326,
+ "gameTypeId": 95,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Who First Tower 1"
+ },
+ "1079": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 326,
+ "gameTypeId": 95,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Who First Tower 2"
+ },
+ "1080": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Race To Kill 1 10"
+ },
+ "1081": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Race To Kill 2 10"
+ },
+ "1082": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 326,
+ "gameTypeId": 81,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Who First Roshan 1"
+ },
+ "1083": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 326,
+ "gameTypeId": 81,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Who First Roshan 2"
+ },
+ "1084": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Race To Kill 1 15"
+ },
+ "1085": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Race To Kill 2 15"
+ },
+ "1086": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Race To Kill 1 5"
+ },
+ "1087": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Race To Kill 2 5"
+ },
+ "1088": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 8.5"
+ },
+ "1089": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -8.5"
+ },
+ "1090": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 8.5"
+ },
+ "1091": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -8.5"
+ },
+ "1092": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 7.5"
+ },
+ "1093": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -7.5"
+ },
+ "1094": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 23.5"
+ },
+ "1095": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 23.5"
+ },
+ "1096": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 9.5"
+ },
+ "1097": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -9.5"
+ },
+ "1098": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 9.5"
+ },
+ "1099": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -9.5"
+ },
+ "1100": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 22.5"
+ },
+ "1101": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 22.5"
+ },
+ "1102": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 33.5"
+ },
+ "1103": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 33.5"
+ },
+ "1104": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 52.5"
+ },
+ "1105": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 52.5"
+ },
+ "1106": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 68.5"
+ },
+ "1107": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 68.5"
+ },
+ "1108": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 33.5"
+ },
+ "1109": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 33.5"
+ },
+ "1110": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 52.5"
+ },
+ "1111": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 52.5"
+ },
+ "1112": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 68.5"
+ },
+ "1113": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 68.5"
+ },
+ "1114": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 9.5"
+ },
+ "1115": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -9.5"
+ },
+ "1116": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 25.5"
+ },
+ "1117": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 25.5"
+ },
+ "1118": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 25.5"
+ },
+ "1119": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 25.5"
+ },
+ "1120": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 7.5"
+ },
+ "1121": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -7.5"
+ },
+ "1122": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 8.5"
+ },
+ "1123": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -8.5"
+ },
+ "1124": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 25.5"
+ },
+ "1125": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 25.5"
+ },
+ "1126": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 25.5"
+ },
+ "1127": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 25.5"
+ },
+ "1128": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 25.5"
+ },
+ "1129": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 25.5"
+ },
+ "1130": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 33.5"
+ },
+ "1131": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 33.5"
+ },
+ "1132": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 52.5"
+ },
+ "1133": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 52.5"
+ },
+ "1134": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 68.5"
+ },
+ "1135": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 68.5"
+ },
+ "1136": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 33.5"
+ },
+ "1137": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 33.5"
+ },
+ "1138": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 52.5"
+ },
+ "1139": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 52.5"
+ },
+ "1140": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 68.5"
+ },
+ "1141": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 68.5"
+ },
+ "1142": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 52.5"
+ },
+ "1143": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 52.5"
+ },
+ "1144": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 33.5"
+ },
+ "1145": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 33.5"
+ },
+ "1146": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 68.5"
+ },
+ "1147": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 68.5"
+ },
+ "1148": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 9.5"
+ },
+ "1149": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -9.5"
+ },
+ "1150": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 10.5"
+ },
+ "1151": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -10.5"
+ },
+ "1152": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 10.5"
+ },
+ "1153": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -10.5"
+ },
+ "1154": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 22.5"
+ },
+ "1155": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 22.5"
+ },
+ "1156": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 10.5"
+ },
+ "1157": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -10.5"
+ },
+ "1158": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 9.5"
+ },
+ "1159": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -9.5"
+ },
+ "1160": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 34.5"
+ },
+ "1161": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 34.5"
+ },
+ "1162": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 53.5"
+ },
+ "1163": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 53.5"
+ },
+ "1164": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 69.5"
+ },
+ "1165": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 69.5"
+ },
+ "1166": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 26.5"
+ },
+ "1167": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 26.5"
+ },
+ "1168": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 34.5"
+ },
+ "1169": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 34.5"
+ },
+ "1170": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 53.5"
+ },
+ "1171": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 53.5"
+ },
+ "1172": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 69.5"
+ },
+ "1173": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 69.5"
+ },
+ "1174": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 34.5"
+ },
+ "1175": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 34.5"
+ },
+ "1176": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 53.5"
+ },
+ "1177": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 53.5"
+ },
+ "1178": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 69.5"
+ },
+ "1179": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 69.5"
+ },
+ "1180": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 34.5"
+ },
+ "1181": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 34.5"
+ },
+ "1182": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 53.5"
+ },
+ "1183": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 53.5"
+ },
+ "1184": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 69.5"
+ },
+ "1185": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 69.5"
+ },
+ "1186": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 27.5"
+ },
+ "1187": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 27.5"
+ },
+ "1188": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 34.5"
+ },
+ "1189": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 34.5"
+ },
+ "1190": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 53.5"
+ },
+ "1191": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 53.5"
+ },
+ "1192": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 69.5"
+ },
+ "1193": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 69.5"
+ },
+ "1194": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 30.5"
+ },
+ "1195": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 30.5"
+ },
+ "1196": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 41.5"
+ },
+ "1197": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 41.5"
+ },
+ "1198": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 65.5"
+ },
+ "1199": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 65.5"
+ },
+ "1200": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 22.5"
+ },
+ "1201": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 22.5"
+ },
+ "1202": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 30.5"
+ },
+ "1203": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 30.5"
+ },
+ "1204": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 41.5"
+ },
+ "1205": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 41.5"
+ },
+ "1206": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 65.5"
+ },
+ "1207": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 65.5"
+ },
+ "1208": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 22.5"
+ },
+ "1209": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 22.5"
+ },
+ "1210": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 31.5"
+ },
+ "1211": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 31.5"
+ },
+ "1212": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 42.5"
+ },
+ "1213": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 42.5"
+ },
+ "1214": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 66.5"
+ },
+ "1215": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 66.5"
+ },
+ "1216": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 31.5"
+ },
+ "1217": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 31.5"
+ },
+ "1218": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 42.5"
+ },
+ "1219": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 42.5"
+ },
+ "1220": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 66.5"
+ },
+ "1221": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 66.5"
+ },
+ "1222": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 31.5"
+ },
+ "1223": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 31.5"
+ },
+ "1224": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 42.5"
+ },
+ "1225": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 42.5"
+ },
+ "1226": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 66.5"
+ },
+ "1227": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 66.5"
+ },
+ "1228": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 29.5"
+ },
+ "1229": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 29.5"
+ },
+ "1230": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 40.5"
+ },
+ "1231": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 40.5"
+ },
+ "1232": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 21.5"
+ },
+ "1233": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 21.5"
+ },
+ "1234": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 64.5"
+ },
+ "1235": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 64.5"
+ },
+ "1236": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 29.5"
+ },
+ "1237": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 29.5"
+ },
+ "1238": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 64.5"
+ },
+ "1239": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 64.5"
+ },
+ "1240": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 40.5"
+ },
+ "1241": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 40.5"
+ },
+ "1242": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 30.5"
+ },
+ "1243": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 30.5"
+ },
+ "1244": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 41.5"
+ },
+ "1245": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 41.5"
+ },
+ "1246": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 65.5"
+ },
+ "1247": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 65.5"
+ },
+ "1248": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 22.5"
+ },
+ "1249": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 22.5"
+ },
+ "1250": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 29.5"
+ },
+ "1251": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 29.5"
+ },
+ "1252": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 40.5"
+ },
+ "1253": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 40.5"
+ },
+ "1254": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 41.5"
+ },
+ "1255": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 41.5"
+ },
+ "1256": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 64.5"
+ },
+ "1257": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 64.5"
+ },
+ "1258": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 21.5"
+ },
+ "1259": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 21.5"
+ },
+ "1260": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 29.5"
+ },
+ "1261": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 29.5"
+ },
+ "1262": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 40.5"
+ },
+ "1263": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 40.5"
+ },
+ "1264": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 41.5"
+ },
+ "1265": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 41.5"
+ },
+ "1266": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 21.5"
+ },
+ "1267": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 21.5"
+ },
+ "1268": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 64.5"
+ },
+ "1269": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 64.5"
+ },
+ "1270": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -12.5"
+ },
+ "1271": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 12.5"
+ },
+ "1272": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -17.5"
+ },
+ "1273": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 17.5"
+ },
+ "1274": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -16.5"
+ },
+ "1275": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 16.5"
+ },
+ "1276": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -15.5"
+ },
+ "1277": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 15.5"
+ },
+ "1278": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -14.5"
+ },
+ "1279": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 14.5"
+ },
+ "1280": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -13.5"
+ },
+ "1281": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 13.5"
+ },
+ "1282": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -11.5"
+ },
+ "1283": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 11.5"
+ },
+ "1284": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -10.5"
+ },
+ "1285": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 10.5"
+ },
+ "1286": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -9.5"
+ },
+ "1287": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 9.5"
+ },
+ "1288": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -8.5"
+ },
+ "1289": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 8.5"
+ },
+ "1290": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 37.5"
+ },
+ "1291": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 37.5"
+ },
+ "1292": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 37.5"
+ },
+ "1293": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 37.5"
+ },
+ "1294": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 54.5"
+ },
+ "1295": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 54.5"
+ },
+ "1296": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 55.5"
+ },
+ "1297": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 55.5"
+ },
+ "1298": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 56.5"
+ },
+ "1299": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 56.5"
+ },
+ "1300": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 54.5"
+ },
+ "1301": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 54.5"
+ },
+ "1302": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 72.5"
+ },
+ "1303": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 72.5"
+ },
+ "1304": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 55.5"
+ },
+ "1305": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 55.5"
+ },
+ "1306": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 30.5"
+ },
+ "1307": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 30.5"
+ },
+ "1308": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 56.5"
+ },
+ "1309": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 56.5"
+ },
+ "1310": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 21.5"
+ },
+ "1311": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 21.5"
+ },
+ "1312": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 72.5"
+ },
+ "1313": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 72.5"
+ },
+ "1314": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 30.5"
+ },
+ "1315": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 30.5"
+ },
+ "1316": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -12.5"
+ },
+ "1317": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 12.5"
+ },
+ "1318": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -17.5"
+ },
+ "1319": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 17.5"
+ },
+ "1320": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -16.5"
+ },
+ "1321": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 16.5"
+ },
+ "1322": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -15.5"
+ },
+ "1323": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 15.5"
+ },
+ "1324": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -14.5"
+ },
+ "1325": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 14.5"
+ },
+ "1326": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -13.5"
+ },
+ "1327": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 13.5"
+ },
+ "1328": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -11.5"
+ },
+ "1329": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 11.5"
+ },
+ "1330": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -10.5"
+ },
+ "1331": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 10.5"
+ },
+ "1332": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -9.5"
+ },
+ "1333": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 9.5"
+ },
+ "1334": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -8.5"
+ },
+ "1335": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 8.5"
+ },
+ "1336": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -7.5"
+ },
+ "1337": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 7.5"
+ },
+ "1338": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 21.5"
+ },
+ "1339": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 21.5"
+ },
+ "1340": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -19.5"
+ },
+ "1341": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 19.5"
+ },
+ "1342": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -18.5"
+ },
+ "1343": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 18.5"
+ },
+ "1344": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 16.5"
+ },
+ "1345": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 16.5"
+ },
+ "1346": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 35.5"
+ },
+ "1347": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 35.5"
+ },
+ "1348": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 70.5"
+ },
+ "1349": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 70.5"
+ },
+ "1350": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 26.5"
+ },
+ "1351": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 26.5"
+ },
+ "1352": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 26.5"
+ },
+ "1353": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 26.5"
+ },
+ "1354": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 19.5"
+ },
+ "1355": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 19.5"
+ },
+ "1356": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 26.5"
+ },
+ "1357": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 26.5"
+ },
+ "1358": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 19.5"
+ },
+ "1359": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 19.5"
+ },
+ "1360": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 11.5"
+ },
+ "1361": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -11.5"
+ },
+ "1362": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 17.5"
+ },
+ "1363": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 17.5"
+ },
+ "1364": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 12.5"
+ },
+ "1365": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -12.5"
+ },
+ "1366": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 10.5"
+ },
+ "1367": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -10.5"
+ },
+ "1368": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 11.5"
+ },
+ "1369": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -11.5"
+ },
+ "1370": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 12.5"
+ },
+ "1371": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -12.5"
+ },
+ "1372": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 17.5"
+ },
+ "1373": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 17.5"
+ },
+ "1374": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 27.5"
+ },
+ "1375": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 27.5"
+ },
+ "1376": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 15.5"
+ },
+ "1377": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -15.5"
+ },
+ "1378": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 13.5"
+ },
+ "1379": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -13.5"
+ },
+ "1380": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 14.5"
+ },
+ "1381": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -14.5"
+ },
+ "1382": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 16.5"
+ },
+ "1383": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -16.5"
+ },
+ "1384": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 17.5"
+ },
+ "1385": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -17.5"
+ },
+ "1386": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 18.5"
+ },
+ "1387": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -18.5"
+ },
+ "1388": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 19.5"
+ },
+ "1389": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -19.5"
+ },
+ "1390": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 20.5"
+ },
+ "1391": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -20.5"
+ },
+ "1392": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 31.5"
+ },
+ "1393": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 31.5"
+ },
+ "1394": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 15.5"
+ },
+ "1395": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -15.5"
+ },
+ "1396": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 13.5"
+ },
+ "1397": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -13.5"
+ },
+ "1398": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 14.5"
+ },
+ "1399": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -14.5"
+ },
+ "1400": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 16.5"
+ },
+ "1401": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -16.5"
+ },
+ "1402": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 17.5"
+ },
+ "1403": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -17.5"
+ },
+ "1404": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 18.5"
+ },
+ "1405": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -18.5"
+ },
+ "1406": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 19.5"
+ },
+ "1407": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -19.5"
+ },
+ "1408": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 20.5"
+ },
+ "1409": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -20.5"
+ },
+ "1410": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 16.5"
+ },
+ "1411": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 16.5"
+ },
+ "1412": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 29.5"
+ },
+ "1413": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 29.5"
+ },
+ "1414": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -19.5"
+ },
+ "1415": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 19.5"
+ },
+ "1416": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -18.5"
+ },
+ "1417": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 18.5"
+ },
+ "1418": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 25.5"
+ },
+ "1419": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 25.5"
+ },
+ "1420": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 15.5"
+ },
+ "1421": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 15.5"
+ },
+ "1422": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 16.5"
+ },
+ "1423": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 16.5"
+ },
+ "1424": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 27.5"
+ },
+ "1425": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 27.5"
+ },
+ "1426": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 25.5"
+ },
+ "1427": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 25.5"
+ },
+ "1428": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 15.5"
+ },
+ "1429": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 15.5"
+ },
+ "1430": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 21.5"
+ },
+ "1431": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 21.5"
+ },
+ "1432": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 28.5"
+ },
+ "1433": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 28.5"
+ },
+ "1434": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 20.5"
+ },
+ "1435": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 20.5"
+ },
+ "1436": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Over 35"
+ },
+ "1437": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Under 35"
+ },
+ "1438": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 35"
+ },
+ "1439": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 35"
+ },
+ "1440": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 35.5"
+ },
+ "1441": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 35.5"
+ },
+ "1442": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 54.5"
+ },
+ "1443": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 54.5"
+ },
+ "1444": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 70.5"
+ },
+ "1445": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 70.5"
+ },
+ "1446": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 25.5"
+ },
+ "1447": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 25.5"
+ },
+ "1448": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -6.5"
+ },
+ "1449": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 6.5"
+ },
+ "1450": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 26.5"
+ },
+ "1451": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 26.5"
+ },
+ "1452": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -8.5"
+ },
+ "1453": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 8.5"
+ },
+ "1454": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -7.5"
+ },
+ "1455": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 7.5"
+ },
+ "1456": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -9.5"
+ },
+ "1457": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 9.5"
+ },
+ "1458": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 27.5"
+ },
+ "1459": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 27.5"
+ },
+ "1460": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -11.5"
+ },
+ "1461": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 11.5"
+ },
+ "1462": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -10.5"
+ },
+ "1463": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 10.5"
+ },
+ "1464": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 28.5"
+ },
+ "1465": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 28.5"
+ },
+ "1466": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 23.5"
+ },
+ "1467": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 23.5"
+ },
+ "1468": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -5.5"
+ },
+ "1469": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 5.5"
+ },
+ "1470": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -4.5"
+ },
+ "1471": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 4.5"
+ },
+ "1472": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 24.5"
+ },
+ "1473": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 24.5"
+ },
+ "1474": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -6.5"
+ },
+ "1475": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 6.5"
+ },
+ "1476": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 23.5"
+ },
+ "1477": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 23.5"
+ },
+ "1478": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 11.5"
+ },
+ "1479": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -11.5"
+ },
+ "1480": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 25.5"
+ },
+ "1481": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 25.5"
+ },
+ "1482": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 28.5"
+ },
+ "1483": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 28.5"
+ },
+ "1484": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -7.5"
+ },
+ "1485": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 7.5"
+ },
+ "1486": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 35.5"
+ },
+ "1487": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 35.5"
+ },
+ "1488": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 70.5"
+ },
+ "1489": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 70.5"
+ },
+ "1490": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 36.5"
+ },
+ "1491": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 36.5"
+ },
+ "1492": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 71.5"
+ },
+ "1493": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 71.5"
+ },
+ "1494": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -3.5"
+ },
+ "1495": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 3.5"
+ },
+ "1496": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -4.5"
+ },
+ "1497": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 4.5"
+ },
+ "1498": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 23.5"
+ },
+ "1499": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 23.5"
+ },
+ "1500": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -6.5"
+ },
+ "1501": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 6.5"
+ },
+ "1502": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -5.5"
+ },
+ "1503": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 5.5"
+ },
+ "1504": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 24.5"
+ },
+ "1505": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 24.5"
+ },
+ "1506": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -7.5"
+ },
+ "1507": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 7.5"
+ },
+ "1508": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -8.5"
+ },
+ "1509": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 8.5"
+ },
+ "1510": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -9.5"
+ },
+ "1511": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 9.5"
+ },
+ "1512": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 22.5"
+ },
+ "1513": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 22.5"
+ },
+ "1514": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -10.5"
+ },
+ "1515": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 10.5"
+ },
+ "1516": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 25.5"
+ },
+ "1517": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 25.5"
+ },
+ "1518": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 26.5"
+ },
+ "1519": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 26.5"
+ },
+ "1520": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 35.5"
+ },
+ "1521": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 35.5"
+ },
+ "1522": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 54.5"
+ },
+ "1523": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 54.5"
+ },
+ "1524": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 70.5"
+ },
+ "1525": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 70.5"
+ },
+ "1526": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 11.5"
+ },
+ "1527": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -11.5"
+ },
+ "1528": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 12.5"
+ },
+ "1529": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -12.5"
+ },
+ "1530": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 27.5"
+ },
+ "1531": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 27.5"
+ },
+ "1532": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 28.5"
+ },
+ "1533": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 28.5"
+ },
+ "1534": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 13.5"
+ },
+ "1535": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -13.5"
+ },
+ "1536": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 14.5"
+ },
+ "1537": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -14.5"
+ },
+ "1538": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 20.5"
+ },
+ "1539": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 20.5"
+ },
+ "1540": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 29.5"
+ },
+ "1541": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 29.5"
+ },
+ "1542": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 15.5"
+ },
+ "1543": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -15.5"
+ },
+ "1544": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 30.5"
+ },
+ "1545": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 30.5"
+ },
+ "1546": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 36.5"
+ },
+ "1547": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 36.5"
+ },
+ "1548": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 55.5"
+ },
+ "1549": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 55.5"
+ },
+ "1550": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 71.5"
+ },
+ "1551": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 71.5"
+ },
+ "1552": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 20.5"
+ },
+ "1553": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 20.5"
+ },
+ "1554": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 31.5"
+ },
+ "1555": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 31.5"
+ },
+ "1556": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 36"
+ },
+ "1557": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 36"
+ },
+ "1558": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 34"
+ },
+ "1559": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 34"
+ },
+ "1560": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 27.5"
+ },
+ "1561": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 27.5"
+ },
+ "1562": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 36.5"
+ },
+ "1563": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 36.5"
+ },
+ "1564": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 71.5"
+ },
+ "1565": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 71.5"
+ },
+ "1566": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 16.5"
+ },
+ "1567": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 16.5"
+ },
+ "1568": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 15.5"
+ },
+ "1569": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 15.5"
+ },
+ "1570": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 22.5"
+ },
+ "1571": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 22.5"
+ },
+ "1572": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 22.5"
+ },
+ "1573": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 22.5"
+ },
+ "1574": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 17.5"
+ },
+ "1575": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 17.5"
+ },
+ "1576": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Over 34"
+ },
+ "1577": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Under 34"
+ },
+ "1578": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 29.5"
+ },
+ "1579": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 29.5"
+ },
+ "1580": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 17.5"
+ },
+ "1581": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 17.5"
+ },
+ "1582": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 28.5"
+ },
+ "1583": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 28.5"
+ },
+ "1584": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 38.5"
+ },
+ "1585": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 38.5"
+ },
+ "1586": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 57.5"
+ },
+ "1587": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 57.5"
+ },
+ "1588": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 73.5"
+ },
+ "1589": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 73.5"
+ },
+ "1590": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 29.5"
+ },
+ "1591": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 29.5"
+ },
+ "1592": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 38.5"
+ },
+ "1593": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 38.5"
+ },
+ "1594": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 57.5"
+ },
+ "1595": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 57.5"
+ },
+ "1596": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 73.5"
+ },
+ "1597": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 73.5"
+ },
+ "1598": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 20.5"
+ },
+ "1599": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 20.5"
+ },
+ "1600": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 30.5"
+ },
+ "1601": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 30.5"
+ },
+ "1602": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 30.5"
+ },
+ "1603": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 30.5"
+ },
+ "1604": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 15.5"
+ },
+ "1605": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 15.5"
+ },
+ "1606": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 19.5"
+ },
+ "1607": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 19.5"
+ },
+ "1608": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 19.5"
+ },
+ "1609": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 19.5"
+ },
+ "1610": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Over 36"
+ },
+ "1611": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Under 36"
+ },
+ "1612": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 28.5"
+ },
+ "1613": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 28.5"
+ },
+ "1614": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 29.5"
+ },
+ "1615": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 29.5"
+ },
+ "1616": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 20.5"
+ },
+ "1617": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 20.5"
+ },
+ "1618": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 37"
+ },
+ "1619": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 37"
+ },
+ "1620": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Over 37"
+ },
+ "1621": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Under 37"
+ },
+ "1622": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 18.5"
+ },
+ "1623": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 18.5"
+ },
+ "1624": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 18.5"
+ },
+ "1625": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 18.5"
+ },
+ "1626": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 18.5"
+ },
+ "1627": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 18.5"
+ },
+ "1628": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 18.5"
+ },
+ "1629": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 18.5"
+ },
+ "1630": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -20.5"
+ },
+ "1631": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 20.5"
+ },
+ "1632": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 14.5"
+ },
+ "1633": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 14.5"
+ },
+ "1634": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 21.5"
+ },
+ "1635": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -21.5"
+ },
+ "1636": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -20.5"
+ },
+ "1637": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 20.5"
+ },
+ "1638": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -21.5"
+ },
+ "1639": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 21.5"
+ },
+ "1640": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 31.5"
+ },
+ "1641": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 31.5"
+ },
+ "1642": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 25.5"
+ },
+ "1643": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 25.5"
+ },
+ "1644": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 23.5"
+ },
+ "1645": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 23.5"
+ },
+ "1646": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 24.5"
+ },
+ "1647": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 24.5"
+ },
+ "1648": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 26.5"
+ },
+ "1649": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 26.5"
+ },
+ "1650": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 24.5"
+ },
+ "1651": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 24.5"
+ },
+ "1652": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 22.5"
+ },
+ "1653": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 22.5"
+ },
+ "1654": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 10.5"
+ },
+ "1655": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 10.5"
+ },
+ "1656": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 23.5"
+ },
+ "1657": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 23.5"
+ },
+ "1658": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 14.5"
+ },
+ "1659": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 14.5"
+ },
+ "1660": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 27.5"
+ },
+ "1661": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 27.5"
+ },
+ "1662": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 25.5"
+ },
+ "1663": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 25.5"
+ },
+ "1664": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 11.5"
+ },
+ "1665": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 11.5"
+ },
+ "1666": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 26.5"
+ },
+ "1667": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 26.5"
+ },
+ "1668": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 27.5"
+ },
+ "1669": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 27.5"
+ },
+ "1670": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -8.5"
+ },
+ "1671": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 8.5"
+ },
+ "1672": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 25.5"
+ },
+ "1673": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 25.5"
+ },
+ "1674": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 23.5"
+ },
+ "1675": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 23.5"
+ },
+ "1676": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 24.5"
+ },
+ "1677": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 24.5"
+ },
+ "1678": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 26.5"
+ },
+ "1679": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 26.5"
+ },
+ "1680": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 15.5"
+ },
+ "1681": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 15.5"
+ },
+ "1682": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 10.5"
+ },
+ "1683": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 10.5"
+ },
+ "1684": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 24.5"
+ },
+ "1685": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 24.5"
+ },
+ "1686": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 22.5"
+ },
+ "1687": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 22.5"
+ },
+ "1688": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 23.5"
+ },
+ "1689": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 23.5"
+ },
+ "1690": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 25.5"
+ },
+ "1691": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 25.5"
+ },
+ "1692": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 26.5"
+ },
+ "1693": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 26.5"
+ },
+ "1694": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 14.5"
+ },
+ "1695": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 14.5"
+ },
+ "1696": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 25.5"
+ },
+ "1697": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 25.5"
+ },
+ "1698": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 10.5"
+ },
+ "1699": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 10.5"
+ },
+ "1700": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 23.5"
+ },
+ "1701": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 23.5"
+ },
+ "1702": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 24.5"
+ },
+ "1703": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 24.5"
+ },
+ "1704": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 26.5"
+ },
+ "1705": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 26.5"
+ },
+ "1706": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 14.5"
+ },
+ "1707": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 14.5"
+ },
+ "1708": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 10.5"
+ },
+ "1709": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 10.5"
+ },
+ "1710": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 27.5"
+ },
+ "1711": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 27.5"
+ },
+ "1712": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 27.5"
+ },
+ "1713": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 27.5"
+ },
+ "1714": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 27.5"
+ },
+ "1715": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 27.5"
+ },
+ "1716": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 15.5"
+ },
+ "1717": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 15.5"
+ },
+ "1718": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 28.5"
+ },
+ "1719": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 28.5"
+ },
+ "1720": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 28.5"
+ },
+ "1721": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 28.5"
+ },
+ "1722": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 15.5"
+ },
+ "1723": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 15.5"
+ },
+ "1724": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 13.5"
+ },
+ "1725": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 13.5"
+ },
+ "1726": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 13.5"
+ },
+ "1727": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 13.5"
+ },
+ "1728": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 13.5"
+ },
+ "1729": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 13.5"
+ },
+ "1730": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 11.5"
+ },
+ "1731": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 11.5"
+ },
+ "1732": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 13.5"
+ },
+ "1733": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 13.5"
+ },
+ "1734": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 22.5"
+ },
+ "1735": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 22.5"
+ },
+ "1736": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 22.5"
+ },
+ "1737": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 22.5"
+ },
+ "1738": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 13.5"
+ },
+ "1739": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 13.5"
+ },
+ "1740": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 11.5"
+ },
+ "1741": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 11.5"
+ },
+ "1742": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 13.5"
+ },
+ "1743": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 13.5"
+ },
+ "1744": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 11.5"
+ },
+ "1745": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 11.5"
+ },
+ "1746": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 22.5"
+ },
+ "1747": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 22.5"
+ },
+ "1748": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 13.5"
+ },
+ "1749": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 13.5"
+ },
+ "1750": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 11.5"
+ },
+ "1751": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 11.5"
+ },
+ "1752": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 28.5"
+ },
+ "1753": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 28.5"
+ },
+ "1754": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 28.5"
+ },
+ "1755": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 28.5"
+ },
+ "1756": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 28.5"
+ },
+ "1757": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 28.5"
+ },
+ "1758": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 10.5"
+ },
+ "1759": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 10.5"
+ },
+ "1760": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 9.5"
+ },
+ "1761": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 9.5"
+ },
+ "1762": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 14.5"
+ },
+ "1763": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 14.5"
+ },
+ "1764": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 14.5"
+ },
+ "1765": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 14.5"
+ },
+ "1766": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 9.5"
+ },
+ "1767": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 9.5"
+ },
+ "1768": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 12.5"
+ },
+ "1769": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 12.5"
+ },
+ "1770": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 12.5"
+ },
+ "1771": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 12.5"
+ },
+ "1772": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 12.5"
+ },
+ "1773": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 12.5"
+ },
+ "1774": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 12.5"
+ },
+ "1775": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 12.5"
+ },
+ "1776": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 12.5"
+ },
+ "1777": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 12.5"
+ },
+ "1778": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 12.5"
+ },
+ "1779": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 12.5"
+ },
+ "1780": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 12.5"
+ },
+ "1781": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 12.5"
+ },
+ "1782": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 12.5"
+ },
+ "1783": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 12.5"
+ },
+ "1784": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 12.5"
+ },
+ "1785": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 12.5"
+ },
+ "1786": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 12.5"
+ },
+ "1787": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 12.5"
+ },
+ "1788": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -9.5"
+ },
+ "1789": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 9.5"
+ },
+ "1790": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 9.5"
+ },
+ "1791": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 9.5"
+ },
+ "1792": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 9.5"
+ },
+ "1793": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 9.5"
+ },
+ "1794": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 20.5"
+ },
+ "1795": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 20.5"
+ },
+ "1796": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 13.5"
+ },
+ "1797": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 13.5"
+ },
+ "1798": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 16.5"
+ },
+ "1799": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 16.5"
+ },
+ "1800": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 17.5"
+ },
+ "1801": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 17.5"
+ },
+ "1802": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 18.5"
+ },
+ "1803": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 18.5"
+ },
+ "1804": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 7.5"
+ },
+ "1805": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 7.5"
+ },
+ "1806": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 19.5"
+ },
+ "1807": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 19.5"
+ },
+ "1808": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 21.5"
+ },
+ "1809": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 21.5"
+ },
+ "1810": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 21.5"
+ },
+ "1811": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 21.5"
+ },
+ "1812": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 21.5"
+ },
+ "1813": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 21.5"
+ },
+ "1814": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 18.5"
+ },
+ "1815": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 18.5"
+ },
+ "1816": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 14.5"
+ },
+ "1817": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 14.5"
+ },
+ "1818": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 19.5"
+ },
+ "1819": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 19.5"
+ },
+ "1820": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 17.5"
+ },
+ "1821": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 17.5"
+ },
+ "1822": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 20.5"
+ },
+ "1823": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 20.5"
+ },
+ "1824": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 14.5"
+ },
+ "1825": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 14.5"
+ },
+ "1826": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 17.5"
+ },
+ "1827": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 17.5"
+ },
+ "1828": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 5.5"
+ },
+ "1829": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 5.5"
+ },
+ "1830": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 18.5"
+ },
+ "1831": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 18.5"
+ },
+ "1832": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 7.5"
+ },
+ "1833": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 7.5"
+ },
+ "1834": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 14.5"
+ },
+ "1835": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 14.5"
+ },
+ "1836": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 19.5"
+ },
+ "1837": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 19.5"
+ },
+ "1838": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 20.5"
+ },
+ "1839": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 20.5"
+ },
+ "1840": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 10.5"
+ },
+ "1841": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -10.5"
+ },
+ "1842": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 11.5"
+ },
+ "1843": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -11.5"
+ },
+ "1844": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 12.5"
+ },
+ "1845": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -12.5"
+ },
+ "1846": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 7.5"
+ },
+ "1847": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 7.5"
+ },
+ "1848": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 13.5"
+ },
+ "1849": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -13.5"
+ },
+ "1850": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 6.5"
+ },
+ "1851": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 6.5"
+ },
+ "1852": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 14.5"
+ },
+ "1853": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 14.5"
+ },
+ "1854": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 5.5"
+ },
+ "1855": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 5.5"
+ },
+ "1856": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 13.5"
+ },
+ "1857": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 13.5"
+ },
+ "1858": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 16.5"
+ },
+ "1859": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 16.5"
+ },
+ "1860": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 13.5"
+ },
+ "1861": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 13.5"
+ },
+ "1862": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 16.5"
+ },
+ "1863": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 16.5"
+ },
+ "1864": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 14.5"
+ },
+ "1865": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 14.5"
+ },
+ "1866": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 14.5"
+ },
+ "1867": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 14.5"
+ },
+ "1868": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 9.5"
+ },
+ "1869": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 9.5"
+ },
+ "1870": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 29.5"
+ },
+ "1871": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 29.5"
+ },
+ "1872": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 11.5"
+ },
+ "1873": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 11.5"
+ },
+ "1874": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 21.5"
+ },
+ "1875": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 21.5"
+ },
+ "1876": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 19.5"
+ },
+ "1877": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 19.5"
+ },
+ "1878": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 20.5"
+ },
+ "1879": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 20.5"
+ },
+ "1880": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 21.5"
+ },
+ "1881": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 21.5"
+ },
+ "1882": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 19.5"
+ },
+ "1883": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 19.5"
+ },
+ "1884": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 20.5"
+ },
+ "1885": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 20.5"
+ },
+ "1886": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 13.5"
+ },
+ "1887": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 13.5"
+ },
+ "1888": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 14.5"
+ },
+ "1889": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 14.5"
+ },
+ "1890": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 30.5"
+ },
+ "1891": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 30.5"
+ },
+ "1892": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 13.5"
+ },
+ "1893": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 13.5"
+ },
+ "1894": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 13.5"
+ },
+ "1895": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 13.5"
+ },
+ "1896": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 7.5"
+ },
+ "1897": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 7.5"
+ },
+ "1898": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 15.5"
+ },
+ "1899": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 15.5"
+ },
+ "1900": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 8.5"
+ },
+ "1901": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 8.5"
+ },
+ "1902": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 15.5"
+ },
+ "1903": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 15.5"
+ },
+ "1904": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 8.5"
+ },
+ "1905": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 8.5"
+ },
+ "1906": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 15.5"
+ },
+ "1907": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 15.5"
+ },
+ "1908": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 8.5"
+ },
+ "1909": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 8.5"
+ },
+ "1910": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 14.5"
+ },
+ "1911": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -14.5"
+ },
+ "1912": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 15.5"
+ },
+ "1913": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -15.5"
+ },
+ "1914": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 78,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Who First Baron 1"
+ },
+ "1915": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 78,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Who First Baron 2"
+ },
+ "1916": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 78,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Who First Inhibitor 1"
+ },
+ "1917": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 78,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Who First Inhibitor 2"
+ },
+ "1918": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Baron Over 1.5"
+ },
+ "1919": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Baron Under 1.5"
+ },
+ "1920": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Turret Over 12.5"
+ },
+ "1921": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Turret Under 12.5"
+ },
+ "1922": {
+ "selectionId": 180,
+ "marketId": 9,
+ "gamePeriodId": 78,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Both Teams To Score Baron Yes"
+ },
+ "1923": {
+ "selectionId": 181,
+ "marketId": 9,
+ "gamePeriodId": 78,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Both Teams To Score Baron No"
+ },
+ "1924": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Dragon Over 4.5"
+ },
+ "1925": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Dragon Under 4.5"
+ },
+ "1926": {
+ "selectionId": 180,
+ "marketId": 9,
+ "gamePeriodId": 78,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Both Teams To Score Dragon Yes"
+ },
+ "1927": {
+ "selectionId": 181,
+ "marketId": 9,
+ "gamePeriodId": 78,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Both Teams To Score Dragon No"
+ },
+ "1928": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 140,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Who First Baron 1"
+ },
+ "1929": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 140,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Who First Baron 2"
+ },
+ "1930": {
+ "selectionId": 180,
+ "marketId": 9,
+ "gamePeriodId": 78,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Both Teams To Score Inhibitor Yes"
+ },
+ "1931": {
+ "selectionId": 181,
+ "marketId": 9,
+ "gamePeriodId": 78,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Both Teams To Score Inhibitor No"
+ },
+ "1932": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Baron Over 1.5"
+ },
+ "1933": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Baron Under 1.5"
+ },
+ "1934": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Dragon Over 4.5"
+ },
+ "1935": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Dragon Under 4.5"
+ },
+ "1936": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 140,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Who First Inhibitor 1"
+ },
+ "1937": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 140,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Who First Inhibitor 2"
+ },
+ "1938": {
+ "selectionId": 180,
+ "marketId": 9,
+ "gamePeriodId": 140,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Both Teams To Score Inhibitor Yes"
+ },
+ "1939": {
+ "selectionId": 181,
+ "marketId": 9,
+ "gamePeriodId": 140,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Both Teams To Score Inhibitor No"
+ },
+ "1940": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Turret Over 12.5"
+ },
+ "1941": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Turret Under 12.5"
+ },
+ "1942": {
+ "selectionId": 180,
+ "marketId": 9,
+ "gamePeriodId": 140,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Both Teams To Score Dragon Yes"
+ },
+ "1943": {
+ "selectionId": 181,
+ "marketId": 9,
+ "gamePeriodId": 140,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Both Teams To Score Dragon No"
+ },
+ "1944": {
+ "selectionId": 180,
+ "marketId": 9,
+ "gamePeriodId": 140,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Both Teams To Score Baron Yes"
+ },
+ "1945": {
+ "selectionId": 181,
+ "marketId": 9,
+ "gamePeriodId": 140,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Both Teams To Score Baron No"
+ },
+ "1946": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 202,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Who First Baron 1"
+ },
+ "1947": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 202,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Who First Baron 2"
+ },
+ "1948": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Dragon Over 4.5"
+ },
+ "1949": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Dragon Under 4.5"
+ },
+ "1950": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 202,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Who First Inhibitor 1"
+ },
+ "1951": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 202,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Who First Inhibitor 2"
+ },
+ "1952": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Turret Over 12.5"
+ },
+ "1953": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Turret Under 12.5"
+ },
+ "1954": {
+ "selectionId": 180,
+ "marketId": 9,
+ "gamePeriodId": 202,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Both Teams To Score Inhibitor Yes"
+ },
+ "1955": {
+ "selectionId": 181,
+ "marketId": 9,
+ "gamePeriodId": 202,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Both Teams To Score Inhibitor No"
+ },
+ "1956": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Baron Over 1.5"
+ },
+ "1957": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Baron Under 1.5"
+ },
+ "1958": {
+ "selectionId": 180,
+ "marketId": 9,
+ "gamePeriodId": 202,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Both Teams To Score Dragon Yes"
+ },
+ "1959": {
+ "selectionId": 181,
+ "marketId": 9,
+ "gamePeriodId": 202,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Both Teams To Score Dragon No"
+ },
+ "1960": {
+ "selectionId": 180,
+ "marketId": 9,
+ "gamePeriodId": 202,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Both Teams To Score Baron Yes"
+ },
+ "1961": {
+ "selectionId": 181,
+ "marketId": 9,
+ "gamePeriodId": 202,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Both Teams To Score Baron No"
+ },
+ "1962": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 33"
+ },
+ "1963": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 33"
+ },
+ "1964": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Over 33"
+ },
+ "1965": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Under 33"
+ },
+ "1966": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Over 33"
+ },
+ "1967": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Under 33"
+ },
+ "1968": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 36.5"
+ },
+ "1969": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 36.5"
+ },
+ "1970": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 31"
+ },
+ "1971": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 31"
+ },
+ "1972": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Over 31"
+ },
+ "1973": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Under 31"
+ },
+ "1974": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Over 31"
+ },
+ "1975": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Under 31"
+ },
+ "1976": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 6.5"
+ },
+ "1977": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 6.5"
+ },
+ "1978": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 6.5"
+ },
+ "1979": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 6.5"
+ },
+ "1980": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 7.5"
+ },
+ "1981": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 7.5"
+ },
+ "1982": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 16.5"
+ },
+ "1983": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 16.5"
+ },
+ "1984": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Over 29"
+ },
+ "1985": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Under 29"
+ },
+ "1986": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 29"
+ },
+ "1987": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 29"
+ },
+ "1988": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Over 29"
+ },
+ "1989": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Under 29"
+ },
+ "1990": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 10.5"
+ },
+ "1991": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 10.5"
+ },
+ "1992": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 9.5"
+ },
+ "1993": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 9.5"
+ },
+ "1994": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 10.5"
+ },
+ "1995": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 10.5"
+ },
+ "1996": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 5.5"
+ },
+ "1997": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 5.5"
+ },
+ "1998": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 10.5"
+ },
+ "1999": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 10.5"
+ },
+ "2000": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -12.5"
+ },
+ "2001": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 12.5"
+ },
+ "2002": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 9.5"
+ },
+ "2003": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 9.5"
+ },
+ "2004": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 9.5"
+ },
+ "2005": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 9.5"
+ },
+ "2006": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 30.5"
+ },
+ "2007": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 30.5"
+ },
+ "2008": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 17.5"
+ },
+ "2009": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 17.5"
+ },
+ "2010": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 15.5"
+ },
+ "2011": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 15.5"
+ },
+ "2012": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 7.5"
+ },
+ "2013": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 7.5"
+ },
+ "2014": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 8.5"
+ },
+ "2015": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 8.5"
+ },
+ "2016": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 6.5"
+ },
+ "2017": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 6.5"
+ },
+ "2018": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 12.5"
+ },
+ "2019": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 12.5"
+ },
+ "2020": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 39.5"
+ },
+ "2021": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 39.5"
+ },
+ "2022": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 12.5"
+ },
+ "2023": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 12.5"
+ },
+ "2024": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 11.5"
+ },
+ "2025": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 11.5"
+ },
+ "2026": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 8.5"
+ },
+ "2027": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 8.5"
+ },
+ "2028": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 37.5"
+ },
+ "2029": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 37.5"
+ },
+ "2030": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 38.5"
+ },
+ "2031": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 38.5"
+ },
+ "2032": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 11.5"
+ },
+ "2033": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 11.5"
+ },
+ "2034": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 16.5"
+ },
+ "2035": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 16.5"
+ },
+ "2036": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 16.5"
+ },
+ "2037": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 16.5"
+ },
+ "2038": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 16.5"
+ },
+ "2039": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 16.5"
+ },
+ "2040": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 20.5"
+ },
+ "2041": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 20.5"
+ },
+ "2042": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Over 9.5"
+ },
+ "2043": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Under 9.5"
+ },
+ "2044": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 19.5"
+ },
+ "2045": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 19.5"
+ },
+ "2046": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Over 9.5"
+ },
+ "2047": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Under 9.5"
+ },
+ "2048": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Over 12.5"
+ },
+ "2049": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Under 12.5"
+ },
+ "2050": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 20.5"
+ },
+ "2051": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 20.5"
+ },
+ "2052": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 19.5"
+ },
+ "2053": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 19.5"
+ },
+ "2054": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 21.5"
+ },
+ "2055": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 21.5"
+ },
+ "2056": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Over 20.5"
+ },
+ "2057": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Under 20.5"
+ },
+ "2058": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Over 19.5"
+ },
+ "2059": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Under 19.5"
+ },
+ "2060": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Over 9.5"
+ },
+ "2061": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Under 9.5"
+ },
+ "2062": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Over 12.5"
+ },
+ "2063": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Under 12.5"
+ },
+ "2064": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Over 7.5"
+ },
+ "2065": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Under 7.5"
+ },
+ "2066": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Over 10.5"
+ },
+ "2067": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Under 10.5"
+ },
+ "2068": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Over 10.5"
+ },
+ "2069": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Under 10.5"
+ },
+ "2070": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Over 9.5"
+ },
+ "2071": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Under 9.5"
+ },
+ "2072": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Over 9.5"
+ },
+ "2073": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Under 9.5"
+ },
+ "2074": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Over 9.5"
+ },
+ "2075": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Under 9.5"
+ },
+ "2076": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Over 11.5"
+ },
+ "2077": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Under 11.5"
+ },
+ "2078": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Over 8.5"
+ },
+ "2079": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Under 8.5"
+ },
+ "2080": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 18.5"
+ },
+ "2081": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 18.5"
+ },
+ "2082": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Over 11.5"
+ },
+ "2083": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Under 11.5"
+ },
+ "2084": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 -2.5"
+ },
+ "2085": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 2.5"
+ },
+ "2086": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 -3.5"
+ },
+ "2087": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 3.5"
+ },
+ "2088": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 2.5"
+ },
+ "2089": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 -2.5"
+ },
+ "2090": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Over 21.5"
+ },
+ "2091": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Under 21.5"
+ },
+ "2092": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Over 20.5"
+ },
+ "2093": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Under 20.5"
+ },
+ "2094": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Over 22.5"
+ },
+ "2095": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Under 22.5"
+ },
+ "2096": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Over 12.5"
+ },
+ "2097": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Under 12.5"
+ },
+ "2098": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Over 12.5"
+ },
+ "2099": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Under 12.5"
+ },
+ "2100": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 -2.5"
+ },
+ "2101": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 2.5"
+ },
+ "2102": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 -3.5"
+ },
+ "2103": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 3.5"
+ },
+ "2104": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 2.5"
+ },
+ "2105": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 -2.5"
+ },
+ "2106": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Over 21.5"
+ },
+ "2107": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Under 21.5"
+ },
+ "2108": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Over 20.5"
+ },
+ "2109": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Under 20.5"
+ },
+ "2110": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Over 22.5"
+ },
+ "2111": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Under 22.5"
+ },
+ "2112": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Over 12.5"
+ },
+ "2113": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Under 12.5"
+ },
+ "2114": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Over 12.5"
+ },
+ "2115": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Under 12.5"
+ },
+ "2116": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Over 7.5"
+ },
+ "2117": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Under 7.5"
+ },
+ "2118": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 3.5"
+ },
+ "2119": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 -3.5"
+ },
+ "2120": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 3.5"
+ },
+ "2121": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 -3.5"
+ },
+ "2122": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Over 11.5"
+ },
+ "2123": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Under 11.5"
+ },
+ "2124": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Over 11.5"
+ },
+ "2125": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Under 11.5"
+ },
+ "2126": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Over 8.5"
+ },
+ "2127": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Under 8.5"
+ },
+ "2128": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Over 8.5"
+ },
+ "2129": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Under 8.5"
+ },
+ "2130": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Over 10.5"
+ },
+ "2131": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Under 10.5"
+ },
+ "2132": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Over 7.5"
+ },
+ "2133": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Under 7.5"
+ },
+ "2134": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Over 7.5"
+ },
+ "2135": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Under 7.5"
+ },
+ "2136": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 18.5"
+ },
+ "2137": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 18.5"
+ },
+ "2138": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Over 11.5"
+ },
+ "2139": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Under 11.5"
+ },
+ "2140": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Over 11.5"
+ },
+ "2141": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Under 11.5"
+ },
+ "2142": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Over 6.5"
+ },
+ "2143": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -1"
+ },
+ "2144": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 1"
+ },
+ "2145": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 52"
+ },
+ "2146": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 52"
+ },
+ "2147": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -3.5"
+ },
+ "2148": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 3.5"
+ },
+ "2149": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -3"
+ },
+ "2150": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 3"
+ },
+ "2151": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -2.5"
+ },
+ "2152": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 2.5"
+ },
+ "2153": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -2"
+ },
+ "2154": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 2"
+ },
+ "2155": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -1.5"
+ },
+ "2156": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 1.5"
+ },
+ "2157": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 1"
+ },
+ "2158": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -1"
+ },
+ "2159": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 1.5"
+ },
+ "2160": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -1.5"
+ },
+ "2161": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 49.5"
+ },
+ "2162": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 49.5"
+ },
+ "2163": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 50"
+ },
+ "2164": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 50"
+ },
+ "2165": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 50.5"
+ },
+ "2166": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 50.5"
+ },
+ "2167": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 51"
+ },
+ "2168": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 51"
+ },
+ "2169": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 51.5"
+ },
+ "2170": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 51.5"
+ },
+ "2171": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 52.5"
+ },
+ "2172": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 52.5"
+ },
+ "2173": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 53"
+ },
+ "2174": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 53"
+ },
+ "2175": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 53.5"
+ },
+ "2176": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 53.5"
+ },
+ "2177": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 54"
+ },
+ "2178": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 54"
+ },
+ "2179": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 54.5"
+ },
+ "2180": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 54.5"
+ },
+ "2181": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 26.5"
+ },
+ "2182": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 26.5"
+ },
+ "2183": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 26.5"
+ },
+ "2184": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 26.5"
+ },
+ "2185": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -0.5"
+ },
+ "2186": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 0.5"
+ },
+ "2187": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -3.5"
+ },
+ "2188": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 3.5"
+ },
+ "2189": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -3"
+ },
+ "2190": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 3"
+ },
+ "2191": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -2.5"
+ },
+ "2192": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 2.5"
+ },
+ "2193": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -1.5"
+ },
+ "2194": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 1.5"
+ },
+ "2195": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 0.5"
+ },
+ "2196": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -0.5"
+ },
+ "2197": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 1.5"
+ },
+ "2198": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -1.5"
+ },
+ "2199": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 2.5"
+ },
+ "2200": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -2.5"
+ },
+ "2201": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 24"
+ },
+ "2202": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 24"
+ },
+ "2203": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 22.5"
+ },
+ "2204": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 22.5"
+ },
+ "2205": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 23"
+ },
+ "2206": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 23"
+ },
+ "2207": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 23.5"
+ },
+ "2208": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 23.5"
+ },
+ "2209": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 24.5"
+ },
+ "2210": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 24.5"
+ },
+ "2211": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 25.5"
+ },
+ "2212": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 25.5"
+ },
+ "2213": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 26"
+ },
+ "2214": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 26"
+ },
+ "2215": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 26.5"
+ },
+ "2216": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 26.5"
+ },
+ "2217": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -0.5"
+ },
+ "2218": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 0.5"
+ },
+ "2219": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -1.5"
+ },
+ "2220": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 1.5"
+ },
+ "2221": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 0.5"
+ },
+ "2222": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -0.5"
+ },
+ "2223": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 10"
+ },
+ "2224": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 10"
+ },
+ "2225": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 9.5"
+ },
+ "2226": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 9.5"
+ },
+ "2227": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 10.5"
+ },
+ "2228": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 10.5"
+ },
+ "2229": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 6.5"
+ },
+ "2230": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 6.5"
+ },
+ "2231": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 3.5"
+ },
+ "2232": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 3.5"
+ },
+ "2233": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 27"
+ },
+ "2234": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 27"
+ },
+ "2235": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -5.5"
+ },
+ "2236": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 5.5"
+ },
+ "2237": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 45"
+ },
+ "2238": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 45"
+ },
+ "2239": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -8"
+ },
+ "2240": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 8"
+ },
+ "2241": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -7.5"
+ },
+ "2242": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 7.5"
+ },
+ "2243": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -7"
+ },
+ "2244": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 7"
+ },
+ "2245": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -6.5"
+ },
+ "2246": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 6.5"
+ },
+ "2247": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -6"
+ },
+ "2248": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 6"
+ },
+ "2249": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -5"
+ },
+ "2250": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 5"
+ },
+ "2251": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -4.5"
+ },
+ "2252": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 4.5"
+ },
+ "2253": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 42.5"
+ },
+ "2254": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 42.5"
+ },
+ "2255": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 43"
+ },
+ "2256": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 43"
+ },
+ "2257": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 43.5"
+ },
+ "2258": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 43.5"
+ },
+ "2259": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 44"
+ },
+ "2260": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 44"
+ },
+ "2261": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 44.5"
+ },
+ "2262": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 44.5"
+ },
+ "2263": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 45.5"
+ },
+ "2264": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 45.5"
+ },
+ "2265": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 46"
+ },
+ "2266": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 46"
+ },
+ "2267": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 46.5"
+ },
+ "2268": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 46.5"
+ },
+ "2269": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 47"
+ },
+ "2270": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 47"
+ },
+ "2271": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 47.5"
+ },
+ "2272": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 47.5"
+ },
+ "2273": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 41.5"
+ },
+ "2274": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 41.5"
+ },
+ "2275": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -4"
+ },
+ "2276": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 4"
+ },
+ "2277": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 40"
+ },
+ "2278": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 40"
+ },
+ "2279": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 40.5"
+ },
+ "2280": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 40.5"
+ },
+ "2281": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 41"
+ },
+ "2282": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 41"
+ },
+ "2283": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 42"
+ },
+ "2284": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 42"
+ },
+ "2285": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 23.5"
+ },
+ "2286": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 23.5"
+ },
+ "2287": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 17.5"
+ },
+ "2288": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 17.5"
+ },
+ "2289": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 2.5"
+ },
+ "2290": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -2.5"
+ },
+ "2291": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 2"
+ },
+ "2292": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -2"
+ },
+ "2293": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 3"
+ },
+ "2294": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -3"
+ },
+ "2295": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 3.5"
+ },
+ "2296": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -3.5"
+ },
+ "2297": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 4"
+ },
+ "2298": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -4"
+ },
+ "2299": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 4.5"
+ },
+ "2300": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -4.5"
+ },
+ "2301": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 5"
+ },
+ "2302": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -5"
+ },
+ "2303": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 20.5"
+ },
+ "2304": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 20.5"
+ },
+ "2305": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 23.5"
+ },
+ "2306": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 23.5"
+ },
+ "2307": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 6.5"
+ },
+ "2308": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -6.5"
+ },
+ "2309": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 5.5"
+ },
+ "2310": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -5.5"
+ },
+ "2311": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 6"
+ },
+ "2312": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -6"
+ },
+ "2313": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 7"
+ },
+ "2314": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -7"
+ },
+ "2315": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 7.5"
+ },
+ "2316": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -7.5"
+ },
+ "2317": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 8"
+ },
+ "2318": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -8"
+ },
+ "2319": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 8.5"
+ },
+ "2320": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -8.5"
+ },
+ "2321": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 9"
+ },
+ "2322": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -9"
+ },
+ "2323": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 19.5"
+ },
+ "2324": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 19.5"
+ },
+ "2325": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 25.5"
+ },
+ "2326": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 25.5"
+ },
+ "2327": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -9"
+ },
+ "2328": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 9"
+ },
+ "2329": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -8.5"
+ },
+ "2330": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 8.5"
+ },
+ "2331": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 39.5"
+ },
+ "2332": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 39.5"
+ },
+ "2333": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 48"
+ },
+ "2334": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 48"
+ },
+ "2335": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 48.5"
+ },
+ "2336": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 48.5"
+ },
+ "2337": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 49"
+ },
+ "2338": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 49"
+ },
+ "2339": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 25.5"
+ },
+ "2340": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 25.5"
+ },
+ "2341": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 20.5"
+ },
+ "2342": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 20.5"
+ },
+ "2343": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -10.5"
+ },
+ "2344": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 10.5"
+ },
+ "2345": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -10"
+ },
+ "2346": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 10"
+ },
+ "2347": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -9.5"
+ },
+ "2348": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 9.5"
+ },
+ "2349": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 55"
+ },
+ "2350": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 55"
+ },
+ "2351": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 55.5"
+ },
+ "2352": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 55.5"
+ },
+ "2353": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 27.5"
+ },
+ "2354": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 27.5"
+ },
+ "2355": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 24.5"
+ },
+ "2356": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 24.5"
+ },
+ "2357": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 27.5"
+ },
+ "2358": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 27.5"
+ },
+ "2359": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 18.5"
+ },
+ "2360": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 18.5"
+ },
+ "2361": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 21.5"
+ },
+ "2362": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 21.5"
+ },
+ "2363": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 30.5"
+ },
+ "2364": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 30.5"
+ },
+ "2365": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 21.5"
+ },
+ "2366": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 21.5"
+ },
+ "2367": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 17.5"
+ },
+ "2368": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 17.5"
+ },
+ "2369": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 36.5"
+ },
+ "2370": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 36.5"
+ },
+ "2371": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 19"
+ },
+ "2372": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 31,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -19"
+ },
+ "2373": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 20"
+ },
+ "2374": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 38,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -20"
+ },
+ "2375": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 19.5"
+ },
+ "2376": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -19.5"
+ },
+ "2377": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 56.5"
+ },
+ "2378": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 56.5"
+ },
+ "2379": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 56"
+ },
+ "2380": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 56"
+ },
+ "2381": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 30.5"
+ },
+ "2382": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 30.5"
+ },
+ "2383": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 10"
+ },
+ "2384": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -10"
+ },
+ "2385": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 9.5"
+ },
+ "2386": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -9.5"
+ },
+ "2387": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 31.5"
+ },
+ "2388": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 31.5"
+ },
+ "2389": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 57"
+ },
+ "2390": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 57"
+ },
+ "2391": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 42.5"
+ },
+ "2392": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 42.5"
+ },
+ "2393": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 23"
+ },
+ "2394": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 427,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -23"
+ },
+ "2395": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 22.5"
+ },
+ "2396": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -22.5"
+ },
+ "2397": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 23.5"
+ },
+ "2398": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -23.5"
+ },
+ "2399": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 22"
+ },
+ "2400": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 430,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -22"
+ },
+ "2401": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 59"
+ },
+ "2402": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 59"
+ },
+ "2403": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 34.5"
+ },
+ "2404": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 34.5"
+ },
+ "2405": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 22.5"
+ },
+ "2406": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 22.5"
+ },
+ "2407": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -12"
+ },
+ "2408": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 12"
+ },
+ "2409": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -13"
+ },
+ "2410": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 13"
+ },
+ "2411": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -13.5"
+ },
+ "2412": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 13.5"
+ },
+ "2413": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -11"
+ },
+ "2414": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 11"
+ },
+ "2415": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -11.5"
+ },
+ "2416": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 11.5"
+ },
+ "2417": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -12.5"
+ },
+ "2418": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 12.5"
+ },
+ "2419": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -14"
+ },
+ "2420": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 14"
+ },
+ "2421": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 57.5"
+ },
+ "2422": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 57.5"
+ },
+ "2423": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 58.5"
+ },
+ "2424": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 58.5"
+ },
+ "2425": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 59.5"
+ },
+ "2426": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 59.5"
+ },
+ "2427": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 58"
+ },
+ "2428": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 58"
+ },
+ "2429": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 15"
+ },
+ "2430": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -15"
+ },
+ "2431": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 16"
+ },
+ "2432": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -16"
+ },
+ "2433": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 14"
+ },
+ "2434": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -14"
+ },
+ "2435": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 17"
+ },
+ "2436": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 27,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -17"
+ },
+ "2437": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 16.5"
+ },
+ "2438": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -16.5"
+ },
+ "2439": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 14.5"
+ },
+ "2440": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -14.5"
+ },
+ "2441": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 15.5"
+ },
+ "2442": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -15.5"
+ },
+ "2443": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 60"
+ },
+ "2444": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 60"
+ },
+ "2445": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 63.5"
+ },
+ "2446": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 63.5"
+ },
+ "2447": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 65.5"
+ },
+ "2448": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 65.5"
+ },
+ "2449": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 64"
+ },
+ "2450": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 64"
+ },
+ "2451": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 64.5"
+ },
+ "2452": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 64.5"
+ },
+ "2453": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 65"
+ },
+ "2454": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 65"
+ },
+ "2455": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 63"
+ },
+ "2456": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 63"
+ },
+ "2457": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 14.5"
+ },
+ "2458": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 14.5"
+ },
+ "2459": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 28.5"
+ },
+ "2460": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 48,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -28.5"
+ },
+ "2461": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 29"
+ },
+ "2462": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 49,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -29"
+ },
+ "2463": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 29.5"
+ },
+ "2464": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 50,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -29.5"
+ },
+ "2465": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 29.5"
+ },
+ "2466": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 29.5"
+ },
+ "2467": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 28.5"
+ },
+ "2468": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 28.5"
+ },
+ "2469": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 24.5"
+ },
+ "2470": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 24.5"
+ },
+ "2471": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 32.5"
+ },
+ "2472": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 32.5"
+ },
+ "2473": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 34.5"
+ },
+ "2474": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 34.5"
+ },
+ "2475": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 13.5"
+ },
+ "2476": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -13.5"
+ },
+ "2477": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 12.5"
+ },
+ "2478": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -12.5"
+ },
+ "2479": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 11.5"
+ },
+ "2480": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -11.5"
+ },
+ "2481": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 12"
+ },
+ "2482": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -12"
+ },
+ "2483": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 13"
+ },
+ "2484": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -13"
+ },
+ "2485": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 38.5"
+ },
+ "2486": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 38.5"
+ },
+ "2487": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 29.5"
+ },
+ "2488": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 29.5"
+ },
+ "2489": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 68.5"
+ },
+ "2490": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 68.5"
+ },
+ "2491": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 361,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 67"
+ },
+ "2492": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 361,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 67"
+ },
+ "2493": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 365,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 69"
+ },
+ "2494": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 365,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 69"
+ },
+ "2495": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 66.5"
+ },
+ "2496": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 66.5"
+ },
+ "2497": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 67.5"
+ },
+ "2498": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 67.5"
+ },
+ "2499": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 369,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 70"
+ },
+ "2500": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 369,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 70"
+ },
+ "2501": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 70.5"
+ },
+ "2502": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 70.5"
+ },
+ "2503": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 363,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 68"
+ },
+ "2504": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 363,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 68"
+ },
+ "2505": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 69.5"
+ },
+ "2506": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 69.5"
+ },
+ "2507": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 33.5"
+ },
+ "2508": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 33.5"
+ },
+ "2509": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 49.5"
+ },
+ "2510": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 49.5"
+ },
+ "2511": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 33"
+ },
+ "2512": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 60,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -33"
+ },
+ "2513": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 33.5"
+ },
+ "2514": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 431,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -33.5"
+ },
+ "2515": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 62"
+ },
+ "2516": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 62"
+ },
+ "2517": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 62.5"
+ },
+ "2518": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 62.5"
+ },
+ "2519": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 15.5"
+ },
+ "2520": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 15.5"
+ },
+ "2521": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 41.5"
+ },
+ "2522": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 41.5"
+ },
+ "2523": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 26"
+ },
+ "2524": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 43,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -26"
+ },
+ "2525": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 24"
+ },
+ "2526": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 432,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -24"
+ },
+ "2527": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 25.5"
+ },
+ "2528": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -25.5"
+ },
+ "2529": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 25"
+ },
+ "2530": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 41,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -25"
+ },
+ "2531": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 24.5"
+ },
+ "2532": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -24.5"
+ },
+ "2533": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 20.5"
+ },
+ "2534": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -20.5"
+ },
+ "2535": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 21.5"
+ },
+ "2536": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -21.5"
+ },
+ "2537": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 21"
+ },
+ "2538": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 40,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -21"
+ },
+ "2539": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 61.5"
+ },
+ "2540": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 61.5"
+ },
+ "2541": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 60.5"
+ },
+ "2542": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 60.5"
+ },
+ "2543": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 61"
+ },
+ "2544": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 61"
+ },
+ "2545": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 16.5"
+ },
+ "2546": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 16.5"
+ },
+ "2547": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 18.5"
+ },
+ "2548": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -18.5"
+ },
+ "2549": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 18"
+ },
+ "2550": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 29,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -18"
+ },
+ "2551": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 17.5"
+ },
+ "2552": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -17.5"
+ },
+ "2553": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 12.5"
+ },
+ "2554": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 12.5"
+ },
+ "2555": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 50.5"
+ },
+ "2556": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 50.5"
+ },
+ "2557": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 39.5"
+ },
+ "2558": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 434,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -39.5"
+ },
+ "2559": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 40"
+ },
+ "2560": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 435,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -40"
+ },
+ "2561": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 44.5"
+ },
+ "2562": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 44.5"
+ },
+ "2563": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 31.5"
+ },
+ "2564": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 57,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -31.5"
+ },
+ "2565": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 31"
+ },
+ "2566": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 56,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -31"
+ },
+ "2567": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 30.5"
+ },
+ "2568": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 55,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -30.5"
+ },
+ "2569": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 32"
+ },
+ "2570": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 58,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -32"
+ },
+ "2571": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 13.5"
+ },
+ "2572": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 13.5"
+ },
+ "2573": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 52.5"
+ },
+ "2574": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 52.5"
+ },
+ "2575": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 38"
+ },
+ "2576": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 437,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -38"
+ },
+ "2577": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 38.5"
+ },
+ "2578": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 438,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -38.5"
+ },
+ "2579": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 37.5"
+ },
+ "2580": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 439,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -37.5"
+ },
+ "2581": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 37"
+ },
+ "2582": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 423,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -37"
+ },
+ "2583": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 39"
+ },
+ "2584": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 441,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -39"
+ },
+ "2585": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 36.5"
+ },
+ "2586": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 442,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -36.5"
+ },
+ "2587": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 36"
+ },
+ "2588": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 443,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -36"
+ },
+ "2589": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 66"
+ },
+ "2590": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 66"
+ },
+ "2591": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 30"
+ },
+ "2592": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 54,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -30"
+ },
+ "2593": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 27.5"
+ },
+ "2594": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -27.5"
+ },
+ "2595": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 28"
+ },
+ "2596": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 47,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -28"
+ },
+ "2597": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -14.5"
+ },
+ "2598": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 14.5"
+ },
+ "2599": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 38,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -20"
+ },
+ "2600": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 20"
+ },
+ "2601": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -19.5"
+ },
+ "2602": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 19.5"
+ },
+ "2603": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -20.5"
+ },
+ "2604": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 20.5"
+ },
+ "2605": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 40,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -21"
+ },
+ "2606": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 21"
+ },
+ "2607": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -21.5"
+ },
+ "2608": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 21.5"
+ },
+ "2609": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -22.5"
+ },
+ "2610": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 22.5"
+ },
+ "2611": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 430,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -22"
+ },
+ "2612": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 22"
+ },
+ "2613": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 427,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -23"
+ },
+ "2614": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 23"
+ },
+ "2615": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 -10.5"
+ },
+ "2616": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 10.5"
+ },
+ "2617": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Over 13.5"
+ },
+ "2618": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Under 13.5"
+ },
+ "2619": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Over 13.5"
+ },
+ "2620": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Under 13.5"
+ },
+ "2621": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 19.5"
+ },
+ "2622": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 19.5"
+ },
+ "2623": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 39"
+ },
+ "2624": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 39"
+ },
+ "2625": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 32.5"
+ },
+ "2626": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 59,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -32.5"
+ },
+ "2627": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 35.5"
+ },
+ "2628": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 444,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -35.5"
+ },
+ "2629": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 11"
+ },
+ "2630": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -11"
+ },
+ "2631": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 10.5"
+ },
+ "2632": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -10.5"
+ },
+ "2633": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 3"
+ },
+ "2634": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -3"
+ },
+ "2635": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 13"
+ },
+ "2636": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 13"
+ },
+ "2637": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 3.5"
+ },
+ "2638": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 3.5"
+ },
+ "2639": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 7.5"
+ },
+ "2640": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 7.5"
+ },
+ "2641": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 3.5"
+ },
+ "2642": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -3.5"
+ },
+ "2643": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 3"
+ },
+ "2644": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -3"
+ },
+ "2645": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 5.5"
+ },
+ "2646": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -5.5"
+ },
+ "2647": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 4"
+ },
+ "2648": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -4"
+ },
+ "2649": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 4.5"
+ },
+ "2650": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -4.5"
+ },
+ "2651": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 6"
+ },
+ "2652": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -6"
+ },
+ "2653": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 28.5"
+ },
+ "2654": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 28.5"
+ },
+ "2655": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 12.5"
+ },
+ "2656": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 12.5"
+ },
+ "2657": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 16.5"
+ },
+ "2658": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 16.5"
+ },
+ "2659": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 10.5"
+ },
+ "2660": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 10.5"
+ },
+ "2661": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 14.5"
+ },
+ "2662": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 14.5"
+ },
+ "2663": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 6.5"
+ },
+ "2664": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 6.5"
+ },
+ "2665": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 13.5"
+ },
+ "2666": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 13.5"
+ },
+ "2667": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 13.5"
+ },
+ "2668": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 13.5"
+ },
+ "2669": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 11.5"
+ },
+ "2670": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 11.5"
+ },
+ "2671": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 9.5"
+ },
+ "2672": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 9.5"
+ },
+ "2673": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 12.5"
+ },
+ "2674": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 12.5"
+ },
+ "2675": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 12.5"
+ },
+ "2676": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 12.5"
+ },
+ "2677": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -5.5"
+ },
+ "2678": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 5.5"
+ },
+ "2679": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -4.5"
+ },
+ "2680": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 4.5"
+ },
+ "2681": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -4"
+ },
+ "2682": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 4"
+ },
+ "2683": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 29.5"
+ },
+ "2684": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 29.5"
+ },
+ "2685": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 16.5"
+ },
+ "2686": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 16.5"
+ },
+ "2687": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 13.5"
+ },
+ "2688": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 13.5"
+ },
+ "2689": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 7.5"
+ },
+ "2690": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 7.5"
+ },
+ "2691": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -6.5"
+ },
+ "2692": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 6.5"
+ },
+ "2693": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -9.5"
+ },
+ "2694": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 9.5"
+ },
+ "2695": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -8.5"
+ },
+ "2696": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 8.5"
+ },
+ "2697": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -7.5"
+ },
+ "2698": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 7.5"
+ },
+ "2699": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -7"
+ },
+ "2700": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 7"
+ },
+ "2701": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -6"
+ },
+ "2702": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 6"
+ },
+ "2703": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 29"
+ },
+ "2704": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 29"
+ },
+ "2705": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 17.5"
+ },
+ "2706": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 17.5"
+ },
+ "2707": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -3.5"
+ },
+ "2708": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 3.5"
+ },
+ "2709": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 10.5"
+ },
+ "2710": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 10.5"
+ },
+ "2711": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 10.5"
+ },
+ "2712": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -10.5"
+ },
+ "2713": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 7.5"
+ },
+ "2714": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -7.5"
+ },
+ "2715": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 8.5"
+ },
+ "2716": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -8.5"
+ },
+ "2717": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 9.5"
+ },
+ "2718": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -9.5"
+ },
+ "2719": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 10"
+ },
+ "2720": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -10"
+ },
+ "2721": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 11.5"
+ },
+ "2722": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -11.5"
+ },
+ "2723": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 12.5"
+ },
+ "2724": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -12.5"
+ },
+ "2725": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 7.5"
+ },
+ "2726": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 7.5"
+ },
+ "2727": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 19.5"
+ },
+ "2728": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 19.5"
+ },
+ "2729": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 6.5"
+ },
+ "2730": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -6.5"
+ },
+ "2731": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 0.5"
+ },
+ "2732": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 0.5"
+ },
+ "2733": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 22"
+ },
+ "2734": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 22"
+ },
+ "2735": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 9.5"
+ },
+ "2736": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 9.5"
+ },
+ "2737": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 11.5"
+ },
+ "2738": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 11.5"
+ },
+ "2739": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -15.5"
+ },
+ "2740": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 15.5"
+ },
+ "2741": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -15"
+ },
+ "2742": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 15"
+ },
+ "2743": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -10"
+ },
+ "2744": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 10"
+ },
+ "2745": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 19.5"
+ },
+ "2746": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 19.5"
+ },
+ "2747": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 14.5"
+ },
+ "2748": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 14.5"
+ },
+ "2749": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -3"
+ },
+ "2750": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 3"
+ },
+ "2751": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 14.5"
+ },
+ "2752": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 14.5"
+ },
+ "2753": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 9.5"
+ },
+ "2754": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 9.5"
+ },
+ "2755": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 20.5"
+ },
+ "2756": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 20.5"
+ },
+ "2757": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 7"
+ },
+ "2758": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -7"
+ },
+ "2759": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 14"
+ },
+ "2760": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 14"
+ },
+ "2761": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 9.5"
+ },
+ "2762": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 9.5"
+ },
+ "2763": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 14"
+ },
+ "2764": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -14"
+ },
+ "2765": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 13.5"
+ },
+ "2766": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -13.5"
+ },
+ "2767": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 13"
+ },
+ "2768": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -13"
+ },
+ "2769": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 22.5"
+ },
+ "2770": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 22.5"
+ },
+ "2771": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 15.5"
+ },
+ "2772": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -15.5"
+ },
+ "2773": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 16.5"
+ },
+ "2774": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -16.5"
+ },
+ "2775": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 17"
+ },
+ "2776": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 27,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -17"
+ },
+ "2777": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 14.5"
+ },
+ "2778": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -14.5"
+ },
+ "2779": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 30.5"
+ },
+ "2780": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 30.5"
+ },
+ "2781": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 21.5"
+ },
+ "2782": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 21.5"
+ },
+ "2783": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 6.5"
+ },
+ "2784": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -6.5"
+ },
+ "2785": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 7"
+ },
+ "2786": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -7"
+ },
+ "2787": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 18.5"
+ },
+ "2788": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 18.5"
+ },
+ "2789": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 17.5"
+ },
+ "2790": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 17.5"
+ },
+ "2791": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 11.5"
+ },
+ "2792": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 11.5"
+ },
+ "2793": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 20.5"
+ },
+ "2794": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 20.5"
+ },
+ "2795": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 21"
+ },
+ "2796": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 21"
+ },
+ "2797": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 21.5"
+ },
+ "2798": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 21.5"
+ },
+ "2799": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 7.5"
+ },
+ "2800": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 7.5"
+ },
+ "2801": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 15.5"
+ },
+ "2802": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 15.5"
+ },
+ "2803": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 18.5"
+ },
+ "2804": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 18.5"
+ },
+ "2805": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -10.5"
+ },
+ "2806": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 10.5"
+ },
+ "2807": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 15.5"
+ },
+ "2808": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 15.5"
+ },
+ "2809": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 18.5"
+ },
+ "2810": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 18.5"
+ },
+ "2811": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 8.5"
+ },
+ "2812": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 8.5"
+ },
+ "2813": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -11.5"
+ },
+ "2814": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 11.5"
+ },
+ "2815": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 8.5"
+ },
+ "2816": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 8.5"
+ },
+ "2817": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -11.5"
+ },
+ "2818": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 11.5"
+ },
+ "2819": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -12.5"
+ },
+ "2820": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 12.5"
+ },
+ "2821": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 30"
+ },
+ "2822": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 30"
+ },
+ "2823": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 8.5"
+ },
+ "2824": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 8.5"
+ },
+ "2825": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 7.5"
+ },
+ "2826": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -7.5"
+ },
+ "2827": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 18.5"
+ },
+ "2828": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -18.5"
+ },
+ "2829": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 20.5"
+ },
+ "2830": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -20.5"
+ },
+ "2831": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 17.5"
+ },
+ "2832": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -17.5"
+ },
+ "2833": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 18"
+ },
+ "2834": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 29,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -18"
+ },
+ "2835": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 19"
+ },
+ "2836": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 31,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -19"
+ },
+ "2837": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 19.5"
+ },
+ "2838": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -19.5"
+ },
+ "2839": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 20"
+ },
+ "2840": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 38,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -20"
+ },
+ "2841": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 31"
+ },
+ "2842": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 31"
+ },
+ "2843": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 6.5"
+ },
+ "2844": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 6.5"
+ },
+ "2845": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 24.5"
+ },
+ "2846": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 24.5"
+ },
+ "2847": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 10.5"
+ },
+ "2848": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 10.5"
+ },
+ "2849": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -23.5"
+ },
+ "2850": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 23.5"
+ },
+ "2851": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 13.5"
+ },
+ "2852": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 13.5"
+ },
+ "2853": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -6.5"
+ },
+ "2854": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 6.5"
+ },
+ "2855": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 0.5"
+ },
+ "2856": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 0.5"
+ },
+ "2857": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -11.5"
+ },
+ "2858": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 11.5"
+ },
+ "2859": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -14"
+ },
+ "2860": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 14"
+ },
+ "2861": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -13.5"
+ },
+ "2862": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 13.5"
+ },
+ "2863": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -13"
+ },
+ "2864": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 13"
+ },
+ "2865": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -12.5"
+ },
+ "2866": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 12.5"
+ },
+ "2867": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -10.5"
+ },
+ "2868": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 10.5"
+ },
+ "2869": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 18.5"
+ },
+ "2870": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 18.5"
+ },
+ "2871": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 6.5"
+ },
+ "2872": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 6.5"
+ },
+ "2873": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 5.5"
+ },
+ "2874": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -5.5"
+ },
+ "2875": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 24.5"
+ },
+ "2876": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -24.5"
+ },
+ "2877": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 25"
+ },
+ "2878": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 41,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -25"
+ },
+ "2879": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 25.5"
+ },
+ "2880": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -25.5"
+ },
+ "2881": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 26"
+ },
+ "2882": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 43,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -26"
+ },
+ "2883": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 26.5"
+ },
+ "2884": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -26.5"
+ },
+ "2885": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 3.5"
+ },
+ "2886": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 3.5"
+ },
+ "2887": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 30.5"
+ },
+ "2888": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 30.5"
+ },
+ "2889": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 10"
+ },
+ "2890": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -10"
+ },
+ "2891": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 13.5"
+ },
+ "2892": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 13.5"
+ },
+ "2893": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 28"
+ },
+ "2894": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 28"
+ },
+ "2895": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 20.5"
+ },
+ "2896": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 20.5"
+ },
+ "2897": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 32.5"
+ },
+ "2898": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 32.5"
+ },
+ "2899": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 27"
+ },
+ "2900": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 45,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -27"
+ },
+ "2901": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 23.5"
+ },
+ "2902": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 23.5"
+ },
+ "2903": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 37.5"
+ },
+ "2904": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 37.5"
+ },
+ "2905": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 37.5"
+ },
+ "2906": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 37.5"
+ },
+ "2907": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 18.5"
+ },
+ "2908": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 18.5"
+ },
+ "2909": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 20"
+ },
+ "2910": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 20"
+ },
+ "2911": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 19"
+ },
+ "2912": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 19"
+ },
+ "2913": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 19.5"
+ },
+ "2914": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 19.5"
+ },
+ "2915": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 2.5"
+ },
+ "2916": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -2.5"
+ },
+ "2917": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 7.5"
+ },
+ "2918": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 7.5"
+ },
+ "2919": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 7"
+ },
+ "2920": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 7"
+ },
+ "2921": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 27.5"
+ },
+ "2922": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 27.5"
+ },
+ "2923": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -2.5"
+ },
+ "2924": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 2.5"
+ },
+ "2925": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 15.5"
+ },
+ "2926": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 15.5"
+ },
+ "2927": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 16.5"
+ },
+ "2928": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 16.5"
+ },
+ "2929": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 16.5"
+ },
+ "2930": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 16.5"
+ },
+ "2931": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 21"
+ },
+ "2932": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 40,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -21"
+ },
+ "2933": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 21.5"
+ },
+ "2934": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -21.5"
+ },
+ "2935": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 22"
+ },
+ "2936": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 430,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -22"
+ },
+ "2937": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 22.5"
+ },
+ "2938": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -22.5"
+ },
+ "2939": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 23"
+ },
+ "2940": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 427,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -23"
+ },
+ "2941": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 27.5"
+ },
+ "2942": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 27.5"
+ },
+ "2943": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 9.5"
+ },
+ "2944": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -9.5"
+ },
+ "2945": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 12.5"
+ },
+ "2946": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 12.5"
+ },
+ "2947": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 24"
+ },
+ "2948": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 432,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -24"
+ },
+ "2949": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 23.5"
+ },
+ "2950": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -23.5"
+ },
+ "2951": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 10.5"
+ },
+ "2952": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -10.5"
+ },
+ "2953": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 41.5"
+ },
+ "2954": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 445,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -41.5"
+ },
+ "2955": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -16.5"
+ },
+ "2956": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 16.5"
+ },
+ "2957": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -18.5"
+ },
+ "2958": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 18.5"
+ },
+ "2959": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -16"
+ },
+ "2960": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 16"
+ },
+ "2961": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 29,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -18"
+ },
+ "2962": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 18"
+ },
+ "2963": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -17.5"
+ },
+ "2964": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 17.5"
+ },
+ "2965": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 27,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -17"
+ },
+ "2966": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 17"
+ },
+ "2967": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 42"
+ },
+ "2968": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 446,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -42"
+ },
+ "2969": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 40.5"
+ },
+ "2970": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 40.5"
+ },
+ "2971": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 15.5"
+ },
+ "2972": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 15.5"
+ },
+ "2973": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 10.5"
+ },
+ "2974": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 10.5"
+ },
+ "2975": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 10.5"
+ },
+ "2976": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 10.5"
+ },
+ "2977": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 35.5"
+ },
+ "2978": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 35.5"
+ },
+ "2979": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 42.5"
+ },
+ "2980": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 447,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -42.5"
+ },
+ "2981": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 43"
+ },
+ "2982": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 448,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -43"
+ },
+ "2983": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 11.5"
+ },
+ "2984": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 11.5"
+ },
+ "2985": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -13.5"
+ },
+ "2986": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 13.5"
+ },
+ "2987": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 1.5"
+ },
+ "2988": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -1.5"
+ },
+ "2989": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 33.5"
+ },
+ "2990": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 33.5"
+ },
+ "2991": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -14"
+ },
+ "2992": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 14"
+ },
+ "2993": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 43.5"
+ },
+ "2994": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 449,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -43.5"
+ },
+ "2995": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 27"
+ },
+ "2996": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 45,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -27"
+ },
+ "2997": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 27.5"
+ },
+ "2998": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -27.5"
+ },
+ "2999": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 28"
+ },
+ "3000": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 47,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -28"
+ },
+ "3001": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 28.5"
+ },
+ "3002": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 48,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -28.5"
+ },
+ "3003": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 34.5"
+ },
+ "3004": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 34.5"
+ },
+ "3005": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 35"
+ },
+ "3006": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 35"
+ },
+ "3007": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Map Team 1 H1 -3.5"
+ },
+ "3008": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Map Team 2 H2 3.5"
+ },
+ "3009": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 5.5"
+ },
+ "3010": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 5.5"
+ },
+ "3011": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 6.5"
+ },
+ "3012": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 6.5"
+ },
+ "3013": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -12.5"
+ },
+ "3014": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 12.5"
+ },
+ "3015": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -13.5"
+ },
+ "3016": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 13.5"
+ },
+ "3017": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 17.5"
+ },
+ "3018": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 17.5"
+ },
+ "3019": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -13.5"
+ },
+ "3020": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 13.5"
+ },
+ "3021": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 17.5"
+ },
+ "3022": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 17.5"
+ },
+ "3023": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -13.5"
+ },
+ "3024": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 13.5"
+ },
+ "3025": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -14.5"
+ },
+ "3026": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 14.5"
+ },
+ "3027": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 11.5"
+ },
+ "3028": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 11.5"
+ },
+ "3029": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 36.5"
+ },
+ "3030": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 36.5"
+ },
+ "3031": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 44"
+ },
+ "3032": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 450,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -44"
+ },
+ "3033": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -18.5"
+ },
+ "3034": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 18.5"
+ },
+ "3035": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -19.5"
+ },
+ "3036": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 19.5"
+ },
+ "3037": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -14.5"
+ },
+ "3038": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 14.5"
+ },
+ "3039": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 2"
+ },
+ "3040": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -2"
+ },
+ "3041": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 1"
+ },
+ "3042": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -1"
+ },
+ "3043": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 1"
+ },
+ "3044": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -1"
+ },
+ "3045": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 0.5"
+ },
+ "3046": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -0.5"
+ },
+ "3047": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1"
+ },
+ "3048": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2"
+ },
+ "3049": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -18.5"
+ },
+ "3050": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 18.5"
+ },
+ "3051": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -17.5"
+ },
+ "3052": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 17.5"
+ },
+ "3053": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -16.5"
+ },
+ "3054": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 16.5"
+ },
+ "3055": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -15.5"
+ },
+ "3056": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 15.5"
+ },
+ "3057": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 40.5"
+ },
+ "3058": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 40.5"
+ },
+ "3059": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 64.5"
+ },
+ "3060": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 64.5"
+ },
+ "3061": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 19.5"
+ },
+ "3062": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 19.5"
+ },
+ "3063": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 55.5"
+ },
+ "3064": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 55.5"
+ },
+ "3065": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 56.5"
+ },
+ "3066": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 56.5"
+ },
+ "3067": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 57.5"
+ },
+ "3068": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 57.5"
+ },
+ "3069": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 58.5"
+ },
+ "3070": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 58.5"
+ },
+ "3071": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 31.5"
+ },
+ "3072": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 31.5"
+ },
+ "3073": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 39.5"
+ },
+ "3074": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 39.5"
+ },
+ "3075": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 58.5"
+ },
+ "3076": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 58.5"
+ },
+ "3077": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 74.5"
+ },
+ "3078": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 74.5"
+ },
+ "3079": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 28.5"
+ },
+ "3080": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 28.5"
+ },
+ "3081": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 58.5"
+ },
+ "3082": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 58.5"
+ },
+ "3083": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 59.5"
+ },
+ "3084": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 59.5"
+ },
+ "3085": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 60.5"
+ },
+ "3086": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 60.5"
+ },
+ "3087": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 59.5"
+ },
+ "3088": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 59.5"
+ },
+ "3089": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 60.5"
+ },
+ "3090": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 60.5"
+ },
+ "3091": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 61.5"
+ },
+ "3092": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 61.5"
+ },
+ "3093": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 32.5"
+ },
+ "3094": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 32.5"
+ },
+ "3095": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 27.5"
+ },
+ "3096": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 27.5"
+ },
+ "3097": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 59.5"
+ },
+ "3098": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 59.5"
+ },
+ "3099": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 30.5"
+ },
+ "3100": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 30.5"
+ },
+ "3101": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -1"
+ },
+ "3102": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 1"
+ },
+ "3103": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -1.5"
+ },
+ "3104": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 1.5"
+ },
+ "3105": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 34"
+ },
+ "3106": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 34"
+ },
+ "3107": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Over 30"
+ },
+ "3108": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Under 30"
+ },
+ "3109": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 30"
+ },
+ "3110": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 30"
+ },
+ "3111": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Over 35"
+ },
+ "3112": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Under 35"
+ },
+ "3113": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Over 34"
+ },
+ "3114": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Under 34"
+ },
+ "3115": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Over 32"
+ },
+ "3116": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Under 32"
+ },
+ "3117": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Over 32"
+ },
+ "3118": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Under 32"
+ },
+ "3119": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 32"
+ },
+ "3120": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 32"
+ },
+ "3121": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Over 36"
+ },
+ "3122": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Under 36"
+ },
+ "3123": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -19.5"
+ },
+ "3124": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 19.5"
+ },
+ "3125": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 29.5"
+ },
+ "3126": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 29.5"
+ },
+ "3127": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 60.5"
+ },
+ "3128": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 60.5"
+ },
+ "3129": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 76.5"
+ },
+ "3130": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 76.5"
+ },
+ "3131": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 32.5"
+ },
+ "3132": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 32.5"
+ },
+ "3133": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 32.5"
+ },
+ "3134": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 32.5"
+ },
+ "3135": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 77.5"
+ },
+ "3136": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 77.5"
+ },
+ "3137": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 26.5"
+ },
+ "3138": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 26.5"
+ },
+ "3139": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 184,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 151.5"
+ },
+ "3140": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 184,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 151.5"
+ },
+ "3141": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 83.5"
+ },
+ "3142": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 83.5"
+ },
+ "3143": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 177,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 149"
+ },
+ "3144": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 177,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 149"
+ },
+ "3145": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 178,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 149.5"
+ },
+ "3146": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 178,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 149.5"
+ },
+ "3147": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 181,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 150"
+ },
+ "3148": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 181,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 150"
+ },
+ "3149": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 182,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 150.5"
+ },
+ "3150": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 182,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 150.5"
+ },
+ "3151": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 183,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 151"
+ },
+ "3152": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 183,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 151"
+ },
+ "3153": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 185,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 152"
+ },
+ "3154": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 185,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 152"
+ },
+ "3155": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 186,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 152.5"
+ },
+ "3156": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 186,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 152.5"
+ },
+ "3157": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 187,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 153"
+ },
+ "3158": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 187,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 153"
+ },
+ "3159": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 188,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 153.5"
+ },
+ "3160": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 188,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 153.5"
+ },
+ "3161": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 189,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 154"
+ },
+ "3162": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 189,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 154"
+ },
+ "3163": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -9"
+ },
+ "3164": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 9"
+ },
+ "3165": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 73.5"
+ },
+ "3166": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 73.5"
+ },
+ "3167": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 72.5"
+ },
+ "3168": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 72.5"
+ },
+ "3169": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 375,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 73"
+ },
+ "3170": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 375,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 73"
+ },
+ "3171": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 377,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 74"
+ },
+ "3172": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 377,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 74"
+ },
+ "3173": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 74.5"
+ },
+ "3174": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 74.5"
+ },
+ "3175": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 32.5"
+ },
+ "3176": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 32.5"
+ },
+ "3177": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 31.5"
+ },
+ "3178": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 31.5"
+ },
+ "3179": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 74.5"
+ },
+ "3180": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 74.5"
+ },
+ "3181": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 39.5"
+ },
+ "3182": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 39.5"
+ },
+ "3183": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 74.5"
+ },
+ "3184": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 74.5"
+ },
+ "3185": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 73.5"
+ },
+ "3186": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 73.5"
+ },
+ "3187": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 204,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 160.5"
+ },
+ "3188": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 204,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 160.5"
+ },
+ "3189": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 203,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 160"
+ },
+ "3190": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 203,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 160"
+ },
+ "3191": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 196,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 157.5"
+ },
+ "3192": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 196,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 157.5"
+ },
+ "3193": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 197,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 158"
+ },
+ "3194": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 197,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 158"
+ },
+ "3195": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 190,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 154.5"
+ },
+ "3196": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 190,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 154.5"
+ },
+ "3197": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 198,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 158.5"
+ },
+ "3198": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 198,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 158.5"
+ },
+ "3199": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 191,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 155"
+ },
+ "3200": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 191,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 155"
+ },
+ "3201": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 199,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 159"
+ },
+ "3202": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 199,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 159"
+ },
+ "3203": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 192,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 155.5"
+ },
+ "3204": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 192,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 155.5"
+ },
+ "3205": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 200,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 159.5"
+ },
+ "3206": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 200,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 159.5"
+ },
+ "3207": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 205,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 161"
+ },
+ "3208": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 205,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 161"
+ },
+ "3209": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 206,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 161.5"
+ },
+ "3210": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 206,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 161.5"
+ },
+ "3211": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 73.5"
+ },
+ "3212": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 73.5"
+ },
+ "3213": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 207,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 162"
+ },
+ "3214": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 207,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 162"
+ },
+ "3215": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 208,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 162.5"
+ },
+ "3216": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 208,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 162.5"
+ },
+ "3217": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 78.5"
+ },
+ "3218": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 78.5"
+ },
+ "3219": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 80.5"
+ },
+ "3220": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 80.5"
+ },
+ "3221": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 2"
+ },
+ "3222": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -2"
+ },
+ "3223": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -1"
+ },
+ "3224": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 1"
+ },
+ "3225": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 373,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 72"
+ },
+ "3226": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 373,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 72"
+ },
+ "3227": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 76.5"
+ },
+ "3228": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 76.5"
+ },
+ "3229": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 75.5"
+ },
+ "3230": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 75.5"
+ },
+ "3231": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 381,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 76"
+ },
+ "3232": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 381,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 76"
+ },
+ "3233": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 383,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 77"
+ },
+ "3234": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 383,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 77"
+ },
+ "3235": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 37.5"
+ },
+ "3236": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 37.5"
+ },
+ "3237": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 77.5"
+ },
+ "3238": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 77.5"
+ },
+ "3239": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 38.5"
+ },
+ "3240": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 38.5"
+ },
+ "3241": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 75.5"
+ },
+ "3242": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 75.5"
+ },
+ "3243": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 75.5"
+ },
+ "3244": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 75.5"
+ },
+ "3245": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 75.5"
+ },
+ "3246": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 75.5"
+ },
+ "3247": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 29.5"
+ },
+ "3248": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 29.5"
+ },
+ "3249": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 37.5"
+ },
+ "3250": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 37.5"
+ },
+ "3251": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 38.5"
+ },
+ "3252": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 38.5"
+ },
+ "3253": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 451,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 171.5"
+ },
+ "3254": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 451,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 171.5"
+ },
+ "3255": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 397,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 83"
+ },
+ "3256": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 397,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 83"
+ },
+ "3257": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 395,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 82"
+ },
+ "3258": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 395,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 82"
+ },
+ "3259": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 82.5"
+ },
+ "3260": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 82.5"
+ },
+ "3261": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 83.5"
+ },
+ "3262": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 83.5"
+ },
+ "3263": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 399,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 84"
+ },
+ "3264": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 399,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 84"
+ },
+ "3265": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 221,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 169"
+ },
+ "3266": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 221,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 169"
+ },
+ "3267": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 225,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 170"
+ },
+ "3268": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 225,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 170"
+ },
+ "3269": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 452,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 170.5"
+ },
+ "3270": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 452,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 170.5"
+ },
+ "3271": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 453,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 171"
+ },
+ "3272": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 453,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 171"
+ },
+ "3273": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 420,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 172"
+ },
+ "3274": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 420,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 172"
+ },
+ "3275": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 454,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 172.5"
+ },
+ "3276": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 454,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 172.5"
+ },
+ "3277": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 455,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 173"
+ },
+ "3278": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 455,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 173"
+ },
+ "3279": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 456,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 173.5"
+ },
+ "3280": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 456,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 173.5"
+ },
+ "3281": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 457,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 174"
+ },
+ "3282": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 457,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 174"
+ },
+ "3283": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 216,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 166.5"
+ },
+ "3284": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 216,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 166.5"
+ },
+ "3285": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 217,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 167"
+ },
+ "3286": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 217,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 167"
+ },
+ "3287": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 218,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 167.5"
+ },
+ "3288": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 218,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 167.5"
+ },
+ "3289": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 219,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 168"
+ },
+ "3290": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 219,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 168"
+ },
+ "3291": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 220,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 168.5"
+ },
+ "3292": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 220,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 168.5"
+ },
+ "3293": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 222,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 169.5"
+ },
+ "3294": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 222,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 169.5"
+ },
+ "3295": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 81.5"
+ },
+ "3296": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 81.5"
+ },
+ "3297": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 80.5"
+ },
+ "3298": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 80.5"
+ },
+ "3299": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 393,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 81"
+ },
+ "3300": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 393,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 81"
+ },
+ "3301": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 42.5"
+ },
+ "3302": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 42.5"
+ },
+ "3303": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 38,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -20"
+ },
+ "3304": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 20"
+ },
+ "3305": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 210,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 163.5"
+ },
+ "3306": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 210,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 163.5"
+ },
+ "3307": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 209,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 163"
+ },
+ "3308": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 209,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 163"
+ },
+ "3309": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 211,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 164"
+ },
+ "3310": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 211,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 164"
+ },
+ "3311": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 212,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 164.5"
+ },
+ "3312": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 212,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 164.5"
+ },
+ "3313": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 213,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 165"
+ },
+ "3314": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 213,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 165"
+ },
+ "3315": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 214,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 165.5"
+ },
+ "3316": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 214,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 165.5"
+ },
+ "3317": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 82.5"
+ },
+ "3318": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 82.5"
+ },
+ "3319": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 40.5"
+ },
+ "3320": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 40.5"
+ },
+ "3321": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 42.5"
+ },
+ "3322": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 42.5"
+ },
+ "3323": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 1"
+ },
+ "3324": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -1"
+ },
+ "3325": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -1"
+ },
+ "3326": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 1"
+ },
+ "3327": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 1.5"
+ },
+ "3328": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -1.5"
+ },
+ "3329": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 2"
+ },
+ "3330": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -2"
+ },
+ "3331": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 41"
+ },
+ "3332": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 41"
+ },
+ "3333": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 39.5"
+ },
+ "3334": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 39.5"
+ },
+ "3335": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 40"
+ },
+ "3336": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 40"
+ },
+ "3337": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 40.5"
+ },
+ "3338": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 40.5"
+ },
+ "3339": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 41.5"
+ },
+ "3340": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 41.5"
+ },
+ "3341": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 42"
+ },
+ "3342": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 42"
+ },
+ "3343": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 42.5"
+ },
+ "3344": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 42.5"
+ },
+ "3345": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 43"
+ },
+ "3346": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 43"
+ },
+ "3347": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 20.5"
+ },
+ "3348": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 20.5"
+ },
+ "3349": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 385,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 78"
+ },
+ "3350": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 385,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 78"
+ },
+ "3351": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 78.5"
+ },
+ "3352": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 78.5"
+ },
+ "3353": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 36.5"
+ },
+ "3354": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 36.5"
+ },
+ "3355": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -4.5"
+ },
+ "3356": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 4.5"
+ },
+ "3357": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -4"
+ },
+ "3358": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 4"
+ },
+ "3359": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -2"
+ },
+ "3360": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 2"
+ },
+ "3361": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 38.5"
+ },
+ "3362": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 38.5"
+ },
+ "3363": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 37"
+ },
+ "3364": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 37"
+ },
+ "3365": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 37.5"
+ },
+ "3366": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 37.5"
+ },
+ "3367": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 38"
+ },
+ "3368": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 38"
+ },
+ "3369": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 39"
+ },
+ "3370": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 39"
+ },
+ "3371": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 20.5"
+ },
+ "3372": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 20.5"
+ },
+ "3373": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 18.5"
+ },
+ "3374": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 18.5"
+ },
+ "3375": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 19.5"
+ },
+ "3376": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 19.5"
+ },
+ "3377": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 5"
+ },
+ "3378": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -5"
+ },
+ "3379": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 79.5"
+ },
+ "3380": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 79.5"
+ },
+ "3381": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 391,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 80"
+ },
+ "3382": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 391,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 80"
+ },
+ "3383": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 3.5"
+ },
+ "3384": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -3.5"
+ },
+ "3385": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 4"
+ },
+ "3386": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -4"
+ },
+ "3387": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 4.5"
+ },
+ "3388": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -4.5"
+ },
+ "3389": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 5"
+ },
+ "3390": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -5"
+ },
+ "3391": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 18.5"
+ },
+ "3392": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 18.5"
+ },
+ "3393": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 21.5"
+ },
+ "3394": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 21.5"
+ },
+ "3395": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 45.5"
+ },
+ "3396": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 45.5"
+ },
+ "3397": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 35.5"
+ },
+ "3398": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 35.5"
+ },
+ "3399": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -7"
+ },
+ "3400": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 7"
+ },
+ "3401": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -8.5"
+ },
+ "3402": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 8.5"
+ },
+ "3403": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -8"
+ },
+ "3404": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 8"
+ },
+ "3405": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -7.5"
+ },
+ "3406": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 7.5"
+ },
+ "3407": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -6"
+ },
+ "3408": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 6"
+ },
+ "3409": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -5.5"
+ },
+ "3410": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 5.5"
+ },
+ "3411": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -5"
+ },
+ "3412": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 5"
+ },
+ "3413": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 23.5"
+ },
+ "3414": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 23.5"
+ },
+ "3415": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 432,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -24"
+ },
+ "3416": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 24"
+ },
+ "3417": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 415,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 91.5"
+ },
+ "3418": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 415,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 91.5"
+ },
+ "3419": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -12"
+ },
+ "3420": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 12"
+ },
+ "3421": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 47.5"
+ },
+ "3422": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 47.5"
+ },
+ "3423": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 34.5"
+ },
+ "3424": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 34.5"
+ },
+ "3425": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -9.5"
+ },
+ "3426": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 9.5"
+ },
+ "3427": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -9"
+ },
+ "3428": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 9"
+ },
+ "3429": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 24.5"
+ },
+ "3430": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 24.5"
+ },
+ "3431": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 16.5"
+ },
+ "3432": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 16.5"
+ },
+ "3433": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 17.5"
+ },
+ "3434": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 17.5"
+ },
+ "3435": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 22.5"
+ },
+ "3436": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 22.5"
+ },
+ "3437": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 408,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 88.5"
+ },
+ "3438": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 408,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 88.5"
+ },
+ "3439": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 193,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 156"
+ },
+ "3440": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 193,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 156"
+ },
+ "3441": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 194,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 156.5"
+ },
+ "3442": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 194,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 156.5"
+ },
+ "3443": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 418,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 174.5"
+ },
+ "3444": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 418,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 174.5"
+ },
+ "3445": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 458,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 175"
+ },
+ "3446": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 458,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 175"
+ },
+ "3447": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 84.5"
+ },
+ "3448": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 84.5"
+ },
+ "3449": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 401,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 85"
+ },
+ "3450": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 401,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 85"
+ },
+ "3451": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 41.5"
+ },
+ "3452": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 41.5"
+ },
+ "3453": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -8"
+ },
+ "3454": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 8"
+ },
+ "3455": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "1st Period Handicap Goal Team 1 H1 -0.5"
+ },
+ "3456": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "1st Period Handicap Goal Team 2 H2 0.5"
+ },
+ "3457": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "1st Period Total Goal Over 2.5"
+ },
+ "3458": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "1st Period Total Goal Under 2.5"
+ },
+ "3459": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Period Individual Total Goal Team 1 Over 1.5"
+ },
+ "3460": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Period Individual Total Goal Team 1 Under 1.5"
+ },
+ "3461": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "1st Period Individual Total Goal Team 2 Over 1.5"
+ },
+ "3462": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "1st Period Individual Total Goal Team 2 Under 1.5"
+ },
+ "3463": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 215,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 166"
+ },
+ "3464": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 215,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 166"
+ },
+ "3465": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 81.5"
+ },
+ "3466": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 81.5"
+ },
+ "3467": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 43.5"
+ },
+ "3468": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 43.5"
+ },
+ "3469": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 73.5"
+ },
+ "3470": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 73.5"
+ },
+ "3471": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 45.5"
+ },
+ "3472": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 45.5"
+ },
+ "3473": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 459,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 92.5"
+ },
+ "3474": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 459,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 92.5"
+ },
+ "3475": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 8"
+ },
+ "3476": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -8"
+ },
+ "3477": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 9"
+ },
+ "3478": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -9"
+ },
+ "3479": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 46.5"
+ },
+ "3480": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 46.5"
+ },
+ "3481": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -2"
+ },
+ "3482": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 2"
+ },
+ "3483": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 39.5"
+ },
+ "3484": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 39.5"
+ },
+ "3485": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 81.5"
+ },
+ "3486": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 81.5"
+ },
+ "3487": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 41.5"
+ },
+ "3488": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 41.5"
+ },
+ "3489": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 416,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 93.5"
+ },
+ "3490": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 416,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 93.5"
+ },
+ "3491": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 195,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 157"
+ },
+ "3492": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 195,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 157"
+ },
+ "3493": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 75.5"
+ },
+ "3494": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 75.5"
+ },
+ "3495": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 387,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 79"
+ },
+ "3496": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 387,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 79"
+ },
+ "3497": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 68.5"
+ },
+ "3498": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 68.5"
+ },
+ "3499": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 46.5"
+ },
+ "3500": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 46.5"
+ },
+ "3501": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -9.5"
+ },
+ "3502": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 9.5"
+ },
+ "3503": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -5"
+ },
+ "3504": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 5"
+ },
+ "3505": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -3.5"
+ },
+ "3506": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 3.5"
+ },
+ "3507": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 44"
+ },
+ "3508": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 44"
+ },
+ "3509": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 50"
+ },
+ "3510": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 50"
+ },
+ "3511": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -8.5"
+ },
+ "3512": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 8.5"
+ },
+ "3513": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 49"
+ },
+ "3514": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 49"
+ },
+ "3515": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -15.5"
+ },
+ "3516": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 15.5"
+ },
+ "3517": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 48.5"
+ },
+ "3518": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 48.5"
+ },
+ "3519": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 78.5"
+ },
+ "3520": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 78.5"
+ },
+ "3521": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 404,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 86.5"
+ },
+ "3522": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 404,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 86.5"
+ },
+ "3523": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 85.5"
+ },
+ "3524": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 85.5"
+ },
+ "3525": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 39.5"
+ },
+ "3526": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 39.5"
+ },
+ "3527": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 84.5"
+ },
+ "3528": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 84.5"
+ },
+ "3529": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 43.5"
+ },
+ "3530": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 43.5"
+ },
+ "3531": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 77.5"
+ },
+ "3532": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 77.5"
+ },
+ "3533": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 44.5"
+ },
+ "3534": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 44.5"
+ },
+ "3535": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 41,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -25"
+ },
+ "3536": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 25"
+ },
+ "3537": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -24.5"
+ },
+ "3538": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 24.5"
+ },
+ "3539": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 77.5"
+ },
+ "3540": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 77.5"
+ },
+ "3541": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 6"
+ },
+ "3542": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -6"
+ },
+ "3543": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 57"
+ },
+ "3544": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 57"
+ },
+ "3545": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 5.5"
+ },
+ "3546": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -5.5"
+ },
+ "3547": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 6.5"
+ },
+ "3548": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -6.5"
+ },
+ "3549": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 7"
+ },
+ "3550": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -7"
+ },
+ "3551": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 56"
+ },
+ "3552": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 56"
+ },
+ "3553": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 56.5"
+ },
+ "3554": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 56.5"
+ },
+ "3555": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 57.5"
+ },
+ "3556": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 57.5"
+ },
+ "3557": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 58"
+ },
+ "3558": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 58"
+ },
+ "3559": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 58.5"
+ },
+ "3560": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 58.5"
+ },
+ "3561": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 25.5"
+ },
+ "3562": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 25.5"
+ },
+ "3563": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 3.5"
+ },
+ "3564": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -3.5"
+ },
+ "3565": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 3"
+ },
+ "3566": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -3"
+ },
+ "3567": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 4"
+ },
+ "3568": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -4"
+ },
+ "3569": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 28.5"
+ },
+ "3570": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 28.5"
+ },
+ "3571": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 28"
+ },
+ "3572": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 28"
+ },
+ "3573": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 29"
+ },
+ "3574": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 29"
+ },
+ "3575": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Over 12.5"
+ },
+ "3576": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Under 12.5"
+ },
+ "3577": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 59"
+ },
+ "3578": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 59"
+ },
+ "3579": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 36"
+ },
+ "3580": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 36"
+ },
+ "3581": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 36.5"
+ },
+ "3582": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 36.5"
+ },
+ "3583": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 460,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 193.5"
+ },
+ "3584": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 460,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 193.5"
+ },
+ "3585": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 461,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 194.5"
+ },
+ "3586": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 461,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 194.5"
+ },
+ "3587": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 462,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 192"
+ },
+ "3588": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 462,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 192"
+ },
+ "3589": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 463,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 192.5"
+ },
+ "3590": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 463,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 192.5"
+ },
+ "3591": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 464,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 193"
+ },
+ "3592": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 464,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 193"
+ },
+ "3593": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 465,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 194"
+ },
+ "3594": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 465,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 194"
+ },
+ "3595": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 466,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 195"
+ },
+ "3596": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 466,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 195"
+ },
+ "3597": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 467,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 195.5"
+ },
+ "3598": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 467,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 195.5"
+ },
+ "3599": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 468,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 196"
+ },
+ "3600": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 468,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 196"
+ },
+ "3601": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 469,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 196.5"
+ },
+ "3602": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 469,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 196.5"
+ },
+ "3603": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 470,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 197"
+ },
+ "3604": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 470,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 197"
+ },
+ "3605": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 471,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 92"
+ },
+ "3606": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 471,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 92"
+ },
+ "3607": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 472,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 91"
+ },
+ "3608": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 472,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 91"
+ },
+ "3609": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 415,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 91.5"
+ },
+ "3610": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 415,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 91.5"
+ },
+ "3611": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 459,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 92.5"
+ },
+ "3612": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 459,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 92.5"
+ },
+ "3613": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 473,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 93"
+ },
+ "3614": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 473,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 93"
+ },
+ "3615": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 46"
+ },
+ "3616": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 46"
+ },
+ "3617": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 44"
+ },
+ "3618": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 44"
+ },
+ "3619": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 44.5"
+ },
+ "3620": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 44.5"
+ },
+ "3621": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 45"
+ },
+ "3622": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 45"
+ },
+ "3623": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 45.5"
+ },
+ "3624": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 45.5"
+ },
+ "3625": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 46.5"
+ },
+ "3626": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 46.5"
+ },
+ "3627": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 47"
+ },
+ "3628": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 47"
+ },
+ "3629": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 47.5"
+ },
+ "3630": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 47.5"
+ },
+ "3631": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 48"
+ },
+ "3632": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 48"
+ },
+ "3633": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 26.5"
+ },
+ "3634": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -26.5"
+ },
+ "3635": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "1st Period Total Goal Over 1.5"
+ },
+ "3636": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "1st Period Total Goal Under 1.5"
+ },
+ "3637": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "1st Period Individual Total Goal Team 1 Over 0.5"
+ },
+ "3638": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "1st Period Individual Total Goal Team 1 Under 0.5"
+ },
+ "3639": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "1st Period Individual Total Goal Team 2 Over 0.5"
+ },
+ "3640": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "1st Period Individual Total Goal Team 2 Under 0.5"
+ },
+ "3641": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 7.5"
+ },
+ "3642": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -7.5"
+ },
+ "3643": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 32.5"
+ },
+ "3644": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 32.5"
+ },
+ "3645": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Over 16.5"
+ },
+ "3646": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Under 16.5"
+ },
+ "3647": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 55.5"
+ },
+ "3648": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 55.5"
+ },
+ "3649": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 30.5"
+ },
+ "3650": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 30.5"
+ },
+ "3651": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 26.5"
+ },
+ "3652": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 26.5"
+ },
+ "3653": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 27.5"
+ },
+ "3654": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 27.5"
+ },
+ "3655": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Over 15.5"
+ },
+ "3656": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Under 15.5"
+ },
+ "3657": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Over 12.5"
+ },
+ "3658": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Under 12.5"
+ },
+ "3659": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 379,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 75"
+ },
+ "3660": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 379,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 75"
+ },
+ "3661": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 174,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 147.5"
+ },
+ "3662": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 174,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 147.5"
+ },
+ "3663": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 175,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 148"
+ },
+ "3664": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 175,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 148"
+ },
+ "3665": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 176,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 148.5"
+ },
+ "3666": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 176,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 148.5"
+ },
+ "3667": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 66.5"
+ },
+ "3668": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 66.5"
+ },
+ "3669": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 71.5"
+ },
+ "3670": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 71.5"
+ },
+ "3671": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 31.5"
+ },
+ "3672": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 31.5"
+ },
+ "3673": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Over 33"
+ },
+ "3674": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Under 33"
+ },
+ "3675": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Over 33"
+ },
+ "3676": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Under 33"
+ },
+ "3677": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 264,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Who First Inhibitor 1"
+ },
+ "3678": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 264,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Who First Inhibitor 2"
+ },
+ "3679": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 264,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Who First Baron 1"
+ },
+ "3680": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 264,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Who First Baron 2"
+ },
+ "3681": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Turret Over 12.5"
+ },
+ "3682": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Turret Under 12.5"
+ },
+ "3683": {
+ "selectionId": 180,
+ "marketId": 9,
+ "gamePeriodId": 264,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Both Teams To Score Baron Yes"
+ },
+ "3684": {
+ "selectionId": 181,
+ "marketId": 9,
+ "gamePeriodId": 264,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Both Teams To Score Baron No"
+ },
+ "3685": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Dragon Over 4.5"
+ },
+ "3686": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Dragon Under 4.5"
+ },
+ "3687": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Baron Over 1.5"
+ },
+ "3688": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Baron Under 1.5"
+ },
+ "3689": {
+ "selectionId": 180,
+ "marketId": 9,
+ "gamePeriodId": 264,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Both Teams To Score Dragon Yes"
+ },
+ "3690": {
+ "selectionId": 181,
+ "marketId": 9,
+ "gamePeriodId": 264,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Both Teams To Score Dragon No"
+ },
+ "3691": {
+ "selectionId": 180,
+ "marketId": 9,
+ "gamePeriodId": 264,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Both Teams To Score Inhibitor Yes"
+ },
+ "3692": {
+ "selectionId": 181,
+ "marketId": 9,
+ "gamePeriodId": 264,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Both Teams To Score Inhibitor No"
+ },
+ "3693": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 326,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Who First Baron 1"
+ },
+ "3694": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 326,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Who First Baron 2"
+ },
+ "3695": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 326,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Who First Inhibitor 1"
+ },
+ "3696": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 326,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Who First Inhibitor 2"
+ },
+ "3697": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Dragon Over 4.5"
+ },
+ "3698": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Dragon Under 4.5"
+ },
+ "3699": {
+ "selectionId": 180,
+ "marketId": 9,
+ "gamePeriodId": 326,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Both Teams To Score Inhibitor Yes"
+ },
+ "3700": {
+ "selectionId": 181,
+ "marketId": 9,
+ "gamePeriodId": 326,
+ "gameTypeId": 57,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Both Teams To Score Inhibitor No"
+ },
+ "3701": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Baron Over 1.5"
+ },
+ "3702": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Baron Under 1.5"
+ },
+ "3703": {
+ "selectionId": 180,
+ "marketId": 9,
+ "gamePeriodId": 326,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Both Teams To Score Dragon Yes"
+ },
+ "3704": {
+ "selectionId": 181,
+ "marketId": 9,
+ "gamePeriodId": 326,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Both Teams To Score Dragon No"
+ },
+ "3705": {
+ "selectionId": 180,
+ "marketId": 9,
+ "gamePeriodId": 326,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Both Teams To Score Baron Yes"
+ },
+ "3706": {
+ "selectionId": 181,
+ "marketId": 9,
+ "gamePeriodId": 326,
+ "gameTypeId": 25,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Both Teams To Score Baron No"
+ },
+ "3707": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Turret Over 12.5"
+ },
+ "3708": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Turret Under 12.5"
+ },
+ "3709": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 76.5"
+ },
+ "3710": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 76.5"
+ },
+ "3711": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 30.5"
+ },
+ "3712": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 30.5"
+ },
+ "3713": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 52"
+ },
+ "3714": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 52"
+ },
+ "3715": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 52.5"
+ },
+ "3716": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 52.5"
+ },
+ "3717": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 51"
+ },
+ "3718": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 51"
+ },
+ "3719": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 51.5"
+ },
+ "3720": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 51.5"
+ },
+ "3721": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 53"
+ },
+ "3722": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 53"
+ },
+ "3723": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 53.5"
+ },
+ "3724": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 53.5"
+ },
+ "3725": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 54"
+ },
+ "3726": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 54"
+ },
+ "3727": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 28.5"
+ },
+ "3728": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 28.5"
+ },
+ "3729": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 2.5"
+ },
+ "3730": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -2.5"
+ },
+ "3731": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 26"
+ },
+ "3732": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 26"
+ },
+ "3733": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 25.5"
+ },
+ "3734": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 25.5"
+ },
+ "3735": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 26.5"
+ },
+ "3736": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 26.5"
+ },
+ "3737": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Over 11.5"
+ },
+ "3738": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Under 11.5"
+ },
+ "3739": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Over 14.5"
+ },
+ "3740": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Under 14.5"
+ },
+ "3741": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 84.5"
+ },
+ "3742": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 84.5"
+ },
+ "3743": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 414,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 90.5"
+ },
+ "3744": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 414,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 90.5"
+ },
+ "3745": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 43.5"
+ },
+ "3746": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 43.5"
+ },
+ "3747": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 7.5"
+ },
+ "3748": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 7.5"
+ },
+ "3749": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 8"
+ },
+ "3750": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 8"
+ },
+ "3751": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 4.5"
+ },
+ "3752": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 4.5"
+ },
+ "3753": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 6.5"
+ },
+ "3754": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 6.5"
+ },
+ "3755": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 7"
+ },
+ "3756": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 7"
+ },
+ "3757": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 8.5"
+ },
+ "3758": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 8.5"
+ },
+ "3759": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 9"
+ },
+ "3760": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 9"
+ },
+ "3761": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 11.5"
+ },
+ "3762": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 11.5"
+ },
+ "3763": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 -1.5"
+ },
+ "3764": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 1.5"
+ },
+ "3765": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 -3"
+ },
+ "3766": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 3"
+ },
+ "3767": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 -2.5"
+ },
+ "3768": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 2.5"
+ },
+ "3769": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 -2"
+ },
+ "3770": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 2"
+ },
+ "3771": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 -1"
+ },
+ "3772": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 1"
+ },
+ "3773": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 1"
+ },
+ "3774": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 -1"
+ },
+ "3775": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 1.5"
+ },
+ "3776": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 -1.5"
+ },
+ "3777": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Over 4.5"
+ },
+ "3778": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Under 4.5"
+ },
+ "3779": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Over 3.5"
+ },
+ "3780": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Under 3.5"
+ },
+ "3781": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Run Team 1 H1"
+ },
+ "3782": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Run Team 2 H2"
+ },
+ "3783": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Run Team 1 H1 -1"
+ },
+ "3784": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Run Team 2 H2 1"
+ },
+ "3785": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Run Team 1 H1 -0.5"
+ },
+ "3786": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Run Team 2 H2 0.5"
+ },
+ "3787": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Run Team 1 H1 0.5"
+ },
+ "3788": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Run Team 2 H2 -0.5"
+ },
+ "3789": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Run Team 1 H1 1"
+ },
+ "3790": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Run Team 2 H2 -1"
+ },
+ "3791": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Over 4"
+ },
+ "3792": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Under 4"
+ },
+ "3793": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Over 3"
+ },
+ "3794": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Under 3"
+ },
+ "3795": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Over 3.5"
+ },
+ "3796": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Under 3.5"
+ },
+ "3797": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Over 4.5"
+ },
+ "3798": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Under 4.5"
+ },
+ "3799": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Over 5"
+ },
+ "3800": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Under 5"
+ },
+ "3801": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Run Team 2 Over 1.5"
+ },
+ "3802": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Run Team 2 Under 1.5"
+ },
+ "3803": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 51,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "1st Inning Handicap Run Team 1 H1 -0.5"
+ },
+ "3804": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 51,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "1st Inning Handicap Run Team 2 H2 0.5"
+ },
+ "3805": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 51,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "1st Inning Total Run Over 0.5"
+ },
+ "3806": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 51,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "1st Inning Total Run Under 0.5"
+ },
+ "3807": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 2"
+ },
+ "3808": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 -2"
+ },
+ "3809": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 2.5"
+ },
+ "3810": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 -2.5"
+ },
+ "3811": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 3"
+ },
+ "3812": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 -3"
+ },
+ "3813": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 9.5"
+ },
+ "3814": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 9.5"
+ },
+ "3815": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Over 2.5"
+ },
+ "3816": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Under 2.5"
+ },
+ "3817": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Over 5.5"
+ },
+ "3818": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Under 5.5"
+ },
+ "3819": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Over 5.5"
+ },
+ "3820": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Under 5.5"
+ },
+ "3821": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Run Team 1 Over 1.5"
+ },
+ "3822": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Run Team 1 Under 1.5"
+ },
+ "3823": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Run Team 2 Over 2.5"
+ },
+ "3824": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Run Team 2 Under 2.5"
+ },
+ "3825": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 51,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "1st Inning Handicap Run Team 1 H1 0.5"
+ },
+ "3826": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 51,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "1st Inning Handicap Run Team 2 H2 -0.5"
+ },
+ "3827": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 6"
+ },
+ "3828": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 6"
+ },
+ "3829": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Over 4.5"
+ },
+ "3830": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Under 4.5"
+ },
+ "3831": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 10"
+ },
+ "3832": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 10"
+ },
+ "3833": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 10.5"
+ },
+ "3834": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 10.5"
+ },
+ "3835": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 11"
+ },
+ "3836": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 11"
+ },
+ "3837": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 13.5"
+ },
+ "3838": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 13.5"
+ },
+ "3839": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Over 6"
+ },
+ "3840": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Under 6"
+ },
+ "3841": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Run Team 1 Over 2.5"
+ },
+ "3842": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Run Team 1 Under 2.5"
+ },
+ "3843": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 416,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 93.5"
+ },
+ "3844": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 416,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 93.5"
+ },
+ "3845": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 474,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 94"
+ },
+ "3846": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 474,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 94"
+ },
+ "3847": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 23.5"
+ },
+ "3848": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 23.5"
+ },
+ "3849": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -21.5"
+ },
+ "3850": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 21.5"
+ },
+ "3851": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 40,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -21"
+ },
+ "3852": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 21"
+ },
+ "3853": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -20.5"
+ },
+ "3854": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 20.5"
+ },
+ "3855": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 31,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -19"
+ },
+ "3856": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 19"
+ },
+ "3857": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 44.5"
+ },
+ "3858": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 44.5"
+ },
+ "3859": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 46"
+ },
+ "3860": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 46"
+ },
+ "3861": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 46.5"
+ },
+ "3862": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 46.5"
+ },
+ "3863": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 48"
+ },
+ "3864": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 48"
+ },
+ "3865": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 444,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -35.5"
+ },
+ "3866": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 35.5"
+ },
+ "3867": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -6"
+ },
+ "3868": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 6"
+ },
+ "3869": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -11"
+ },
+ "3870": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 11"
+ },
+ "3871": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 5"
+ },
+ "3872": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -5"
+ },
+ "3873": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 23.5"
+ },
+ "3874": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 23.5"
+ },
+ "3875": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -8"
+ },
+ "3876": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 8"
+ },
+ "3877": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -27.5"
+ },
+ "3878": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 27.5"
+ },
+ "3879": {
+ "selectionId": 182,
+ "marketId": 14,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game Total Even Run Yes"
+ },
+ "3880": {
+ "selectionId": 183,
+ "marketId": 14,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game Total Even Run No"
+ },
+ "3881": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 76.5"
+ },
+ "3882": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 76.5"
+ },
+ "3883": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 76.5"
+ },
+ "3884": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 76.5"
+ },
+ "3885": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 36.5"
+ },
+ "3886": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 36.5"
+ },
+ "3887": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 5.5"
+ },
+ "3888": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -5.5"
+ },
+ "3889": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 20.5"
+ },
+ "3890": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 20.5"
+ },
+ "3891": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 7.5"
+ },
+ "3892": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -7.5"
+ },
+ "3893": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 8"
+ },
+ "3894": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -8"
+ },
+ "3895": {
+ "selectionId": 20,
+ "marketId": 15,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Even Run Team 1 No"
+ },
+ "3896": {
+ "selectionId": 19,
+ "marketId": 15,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Even Run Team 1 Yes"
+ },
+ "3897": {
+ "selectionId": 20,
+ "marketId": 15,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Even Run Team 2 No"
+ },
+ "3898": {
+ "selectionId": 19,
+ "marketId": 15,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Even Run Team 2 Yes"
+ },
+ "3899": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -9"
+ },
+ "3900": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 9"
+ },
+ "3901": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 71.5"
+ },
+ "3902": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 71.5"
+ },
+ "3903": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 171,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 146"
+ },
+ "3904": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 171,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 146"
+ },
+ "3905": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 172,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 146.5"
+ },
+ "3906": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 172,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 146.5"
+ },
+ "3907": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 173,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 147"
+ },
+ "3908": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 173,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 147"
+ },
+ "3909": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 70.5"
+ },
+ "3910": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 70.5"
+ },
+ "3911": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 70.5"
+ },
+ "3912": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 70.5"
+ },
+ "3913": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 69.5"
+ },
+ "3914": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 69.5"
+ },
+ "3915": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 369,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 70"
+ },
+ "3916": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 369,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 70"
+ },
+ "3917": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 371,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 71"
+ },
+ "3918": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 371,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 71"
+ },
+ "3919": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 72.5"
+ },
+ "3920": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 72.5"
+ },
+ "3921": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 34.5"
+ },
+ "3922": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 34.5"
+ },
+ "3923": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 35.5"
+ },
+ "3924": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 35.5"
+ },
+ "3925": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 33.5"
+ },
+ "3926": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 33.5"
+ },
+ "3927": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Over 2.5"
+ },
+ "3928": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Under 2.5"
+ },
+ "3929": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 79.5"
+ },
+ "3930": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 79.5"
+ },
+ "3931": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 85.5"
+ },
+ "3932": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 85.5"
+ },
+ "3933": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 80.5"
+ },
+ "3934": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 80.5"
+ },
+ "3935": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 83.5"
+ },
+ "3936": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 83.5"
+ },
+ "3937": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 40.5"
+ },
+ "3938": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 40.5"
+ },
+ "3939": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 6.5"
+ },
+ "3940": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -6.5"
+ },
+ "3941": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 47.5"
+ },
+ "3942": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 47.5"
+ },
+ "3943": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 6"
+ },
+ "3944": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -6"
+ },
+ "3945": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 444,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -35.5"
+ },
+ "3946": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 35.5"
+ },
+ "3947": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 166,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 143.5"
+ },
+ "3948": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 166,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 143.5"
+ },
+ "3949": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 437,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -38"
+ },
+ "3950": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 38"
+ },
+ "3951": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 439,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -37.5"
+ },
+ "3952": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 37.5"
+ },
+ "3953": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 423,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -37"
+ },
+ "3954": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 37"
+ },
+ "3955": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 442,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -36.5"
+ },
+ "3956": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 36.5"
+ },
+ "3957": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 443,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -36"
+ },
+ "3958": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 36"
+ },
+ "3959": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 475,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -35"
+ },
+ "3960": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 35"
+ },
+ "3961": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 476,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -34.5"
+ },
+ "3962": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 34.5"
+ },
+ "3963": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 477,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -34"
+ },
+ "3964": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 34"
+ },
+ "3965": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 431,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -33.5"
+ },
+ "3966": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 33.5"
+ },
+ "3967": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 60,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -33"
+ },
+ "3968": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 33"
+ },
+ "3969": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 161,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 141"
+ },
+ "3970": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 161,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 141"
+ },
+ "3971": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 162,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 141.5"
+ },
+ "3972": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 162,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 141.5"
+ },
+ "3973": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 163,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 142"
+ },
+ "3974": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 163,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 142"
+ },
+ "3975": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 164,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 142.5"
+ },
+ "3976": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 164,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 142.5"
+ },
+ "3977": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 165,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 143"
+ },
+ "3978": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 165,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 143"
+ },
+ "3979": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 167,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 144"
+ },
+ "3980": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 167,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 144"
+ },
+ "3981": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 168,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 144.5"
+ },
+ "3982": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 168,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 144.5"
+ },
+ "3983": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 169,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 145"
+ },
+ "3984": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 169,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 145"
+ },
+ "3985": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 170,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 145.5"
+ },
+ "3986": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 170,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 145.5"
+ },
+ "3987": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 410,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 89.5"
+ },
+ "3988": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 410,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 89.5"
+ },
+ "3989": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 38,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -20"
+ },
+ "3990": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 20"
+ },
+ "3991": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 40,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -21"
+ },
+ "3992": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 21"
+ },
+ "3993": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -20.5"
+ },
+ "3994": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 20.5"
+ },
+ "3995": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -19.5"
+ },
+ "3996": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 19.5"
+ },
+ "3997": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 31,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -19"
+ },
+ "3998": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 19"
+ },
+ "3999": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 365,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 69"
+ },
+ "4000": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 365,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 69"
+ },
+ "4001": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 25.5"
+ },
+ "4002": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 25.5"
+ },
+ "4003": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 74.5"
+ },
+ "4004": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 74.5"
+ },
+ "4005": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 72.5"
+ },
+ "4006": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 72.5"
+ },
+ "4007": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 33.5"
+ },
+ "4008": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 33.5"
+ },
+ "4009": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 -1.5"
+ },
+ "4010": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 1.5"
+ },
+ "4011": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 -2"
+ },
+ "4012": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 2"
+ },
+ "4013": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 -2.5"
+ },
+ "4014": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 2.5"
+ },
+ "4015": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 -1"
+ },
+ "4016": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 1"
+ },
+ "4017": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 3.5"
+ },
+ "4018": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 3.5"
+ },
+ "4019": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 4"
+ },
+ "4020": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 4"
+ },
+ "4021": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 4.5"
+ },
+ "4022": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 4.5"
+ },
+ "4023": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -3"
+ },
+ "4024": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 3"
+ },
+ "4025": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -4"
+ },
+ "4026": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 4"
+ },
+ "4027": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -3.5"
+ },
+ "4028": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 3.5"
+ },
+ "4029": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -2.5"
+ },
+ "4030": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 2.5"
+ },
+ "4031": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 2.5"
+ },
+ "4032": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -2.5"
+ },
+ "4033": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 45.5"
+ },
+ "4034": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 45.5"
+ },
+ "4035": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 44.5"
+ },
+ "4036": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 44.5"
+ },
+ "4037": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 45"
+ },
+ "4038": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 45"
+ },
+ "4039": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 46"
+ },
+ "4040": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 46"
+ },
+ "4041": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 46.5"
+ },
+ "4042": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 46.5"
+ },
+ "4043": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 25"
+ },
+ "4044": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 25"
+ },
+ "4045": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 22"
+ },
+ "4046": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 22"
+ },
+ "4047": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 47"
+ },
+ "4048": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 47"
+ },
+ "4049": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 24.5"
+ },
+ "4050": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 24.5"
+ },
+ "4051": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 406,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 87.5"
+ },
+ "4052": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 406,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 87.5"
+ },
+ "4053": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 7"
+ },
+ "4054": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -7"
+ },
+ "4055": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 5"
+ },
+ "4056": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -5"
+ },
+ "4057": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -7.5"
+ },
+ "4058": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 7.5"
+ },
+ "4059": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 76.5"
+ },
+ "4060": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 76.5"
+ },
+ "4061": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 16.5"
+ },
+ "4062": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 16.5"
+ },
+ "4063": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 4.5"
+ },
+ "4064": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -4.5"
+ },
+ "4065": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 407,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 88"
+ },
+ "4066": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 407,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 88"
+ },
+ "4067": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 405,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 87"
+ },
+ "4068": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 405,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 87"
+ },
+ "4069": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 406,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 87.5"
+ },
+ "4070": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 406,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 87.5"
+ },
+ "4071": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 404,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 86.5"
+ },
+ "4072": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 404,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 86.5"
+ },
+ "4073": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 403,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 86"
+ },
+ "4074": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 403,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 86"
+ },
+ "4075": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 85.5"
+ },
+ "4076": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 85.5"
+ },
+ "4077": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Over 3.5"
+ },
+ "4078": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Under 3.5"
+ },
+ "4079": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 228,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 177.5"
+ },
+ "4080": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 228,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 177.5"
+ },
+ "4081": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 478,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 175.5"
+ },
+ "4082": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 478,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 175.5"
+ },
+ "4083": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 479,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 176"
+ },
+ "4084": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 479,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 176"
+ },
+ "4085": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 226,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 176.5"
+ },
+ "4086": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 226,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 176.5"
+ },
+ "4087": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 227,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 177"
+ },
+ "4088": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 227,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 177"
+ },
+ "4089": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 229,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 178"
+ },
+ "4090": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 229,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 178"
+ },
+ "4091": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 230,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 178.5"
+ },
+ "4092": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 230,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 178.5"
+ },
+ "4093": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 404,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 86.5"
+ },
+ "4094": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 404,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 86.5"
+ },
+ "4095": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 409,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 89"
+ },
+ "4096": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 409,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 89"
+ },
+ "4097": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 410,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 89.5"
+ },
+ "4098": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 410,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 89.5"
+ },
+ "4099": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 408,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 88.5"
+ },
+ "4100": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 408,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 88.5"
+ },
+ "4101": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "1st Period Handicap Goal Team 1 H1 0.5"
+ },
+ "4102": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "1st Period Handicap Goal Team 2 H2 -0.5"
+ },
+ "4103": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "1st Period Total Goal Over 0.5"
+ },
+ "4104": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "1st Period Total Goal Under 0.5"
+ },
+ "4105": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "1st Period Total Goal Over 1"
+ },
+ "4106": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "1st Period Total Goal Under 1"
+ },
+ "4107": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "1st Period Total Goal Over 2"
+ },
+ "4108": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "1st Period Total Goal Under 2"
+ },
+ "4109": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "1st Period Handicap Goal Team 1 H1 -1.5"
+ },
+ "4110": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "1st Period Handicap Goal Team 2 H2 1.5"
+ },
+ "4111": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "1st Period Handicap Goal Team 1 H1 -1"
+ },
+ "4112": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "1st Period Handicap Goal Team 2 H2 1"
+ },
+ "4113": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "1st Period Handicap Goal Team 1 H1 1"
+ },
+ "4114": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "1st Period Handicap Goal Team 2 H2 -1"
+ },
+ "4115": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 5.5"
+ },
+ "4116": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 5.5"
+ },
+ "4117": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 12.5"
+ },
+ "4118": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 12.5"
+ },
+ "4119": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -14.5"
+ },
+ "4120": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 14.5"
+ },
+ "4121": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 79.5"
+ },
+ "4122": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 79.5"
+ },
+ "4123": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 33.5"
+ },
+ "4124": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 33.5"
+ },
+ "4125": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 13.5"
+ },
+ "4126": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 13.5"
+ },
+ "4127": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 50.5"
+ },
+ "4128": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 50.5"
+ },
+ "4129": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 31,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -19"
+ },
+ "4130": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 19"
+ },
+ "4131": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -11"
+ },
+ "4132": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 11"
+ },
+ "4133": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Period Handicap Goal Team 1 H1 1.5"
+ },
+ "4134": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "1st Period Handicap Goal Team 2 H2 -1.5"
+ },
+ "4135": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 52"
+ },
+ "4136": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 52"
+ },
+ "4137": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 34.5"
+ },
+ "4138": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 34.5"
+ },
+ "4139": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 430,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -22"
+ },
+ "4140": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 22"
+ },
+ "4141": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 5"
+ },
+ "4142": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 5"
+ },
+ "4143": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Over 2.5"
+ },
+ "4144": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Under 2.5"
+ },
+ "4145": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Over 2"
+ },
+ "4146": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Under 2"
+ },
+ "4147": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Run Team 1 Over 0.5"
+ },
+ "4148": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Run Team 1 Under 0.5"
+ },
+ "4149": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 50.5"
+ },
+ "4150": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 50.5"
+ },
+ "4151": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 49"
+ },
+ "4152": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 49"
+ },
+ "4153": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 49.5"
+ },
+ "4154": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 49.5"
+ },
+ "4155": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 50"
+ },
+ "4156": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 50"
+ },
+ "4157": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 23.5"
+ },
+ "4158": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 23.5"
+ },
+ "4159": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 25"
+ },
+ "4160": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 25"
+ },
+ "4161": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 24.5"
+ },
+ "4162": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 24.5"
+ },
+ "4163": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Over 13.5"
+ },
+ "4164": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Under 13.5"
+ },
+ "4165": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Over 11.5"
+ },
+ "4166": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Under 11.5"
+ },
+ "4167": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 55"
+ },
+ "4168": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 55"
+ },
+ "4169": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Over 14.5"
+ },
+ "4170": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Under 14.5"
+ },
+ "4171": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Over 13.5"
+ },
+ "4172": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Under 13.5"
+ },
+ "4173": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 27.5"
+ },
+ "4174": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 27.5"
+ },
+ "4175": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 480,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 99.5"
+ },
+ "4176": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 480,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 99.5"
+ },
+ "4177": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -4.5"
+ },
+ "4178": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 4.5"
+ },
+ "4179": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -5.5"
+ },
+ "4180": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 5.5"
+ },
+ "4181": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -5"
+ },
+ "4182": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 5"
+ },
+ "4183": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 44"
+ },
+ "4184": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 44"
+ },
+ "4185": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 20.5"
+ },
+ "4186": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 20.5"
+ },
+ "4187": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 1.5"
+ },
+ "4188": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 -1.5"
+ },
+ "4189": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 0.5"
+ },
+ "4190": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 -0.5"
+ },
+ "4191": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 1"
+ },
+ "4192": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 -1"
+ },
+ "4193": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 2"
+ },
+ "4194": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 -2"
+ },
+ "4195": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 3"
+ },
+ "4196": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -3"
+ },
+ "4197": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 3.5"
+ },
+ "4198": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -3.5"
+ },
+ "4199": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 24.5"
+ },
+ "4200": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 24.5"
+ },
+ "4201": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 54.5"
+ },
+ "4202": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 54.5"
+ },
+ "4203": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 27"
+ },
+ "4204": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 27"
+ },
+ "4205": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Over 15.5"
+ },
+ "4206": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Under 15.5"
+ },
+ "4207": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 19.5"
+ },
+ "4208": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 19.5"
+ },
+ "4209": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 19.5"
+ },
+ "4210": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 19.5"
+ },
+ "4211": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 21.5"
+ },
+ "4212": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 21.5"
+ },
+ "4213": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 20.5"
+ },
+ "4214": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 20.5"
+ },
+ "4215": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -21.5"
+ },
+ "4216": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 21.5"
+ },
+ "4217": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -21.5"
+ },
+ "4218": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 21.5"
+ },
+ "4219": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -20.5"
+ },
+ "4220": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 20.5"
+ },
+ "4221": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -23.5"
+ },
+ "4222": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 23.5"
+ },
+ "4223": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -22.5"
+ },
+ "4224": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 22.5"
+ },
+ "4225": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -22.5"
+ },
+ "4226": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 22.5"
+ },
+ "4227": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 19.5"
+ },
+ "4228": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 19.5"
+ },
+ "4229": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 30.5"
+ },
+ "4230": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 30.5"
+ },
+ "4231": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 23.5"
+ },
+ "4232": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 23.5"
+ },
+ "4233": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 12"
+ },
+ "4234": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 12"
+ },
+ "4235": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 13"
+ },
+ "4236": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 13"
+ },
+ "4237": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Over 5.5"
+ },
+ "4238": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Under 5.5"
+ },
+ "4239": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 27.5"
+ },
+ "4240": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 27.5"
+ },
+ "4241": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 5.5"
+ },
+ "4242": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 5.5"
+ },
+ "4243": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 15"
+ },
+ "4244": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 15"
+ },
+ "4245": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 7"
+ },
+ "4246": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 7"
+ },
+ "4247": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -25.5"
+ },
+ "4248": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 25.5"
+ },
+ "4249": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 24.5"
+ },
+ "4250": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 24.5"
+ },
+ "4251": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -3.5"
+ },
+ "4252": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 3.5"
+ },
+ "4253": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 15.5"
+ },
+ "4254": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 15.5"
+ },
+ "4255": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1"
+ },
+ "4256": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2"
+ },
+ "4257": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 18.5"
+ },
+ "4258": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 18.5"
+ },
+ "4259": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 18.5"
+ },
+ "4260": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 18.5"
+ },
+ "4261": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 18.5"
+ },
+ "4262": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 18.5"
+ },
+ "4263": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 17.5"
+ },
+ "4264": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 17.5"
+ },
+ "4265": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Over 6.5"
+ },
+ "4266": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Under 6.5"
+ },
+ "4267": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Run Team 2 Over 3.5"
+ },
+ "4268": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Run Team 2 Under 3.5"
+ },
+ "4269": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 416,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 93.5"
+ },
+ "4270": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 416,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 93.5"
+ },
+ "4271": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 74.5"
+ },
+ "4272": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 74.5"
+ },
+ "4273": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -7"
+ },
+ "4274": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 7"
+ },
+ "4275": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -7.5"
+ },
+ "4276": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 7.5"
+ },
+ "4277": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -8.5"
+ },
+ "4278": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 8.5"
+ },
+ "4279": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -8"
+ },
+ "4280": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 8"
+ },
+ "4281": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -4"
+ },
+ "4282": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 4"
+ },
+ "4283": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -4.5"
+ },
+ "4284": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 4.5"
+ },
+ "4285": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 26.5"
+ },
+ "4286": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 26.5"
+ },
+ "4287": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 11.5"
+ },
+ "4288": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 11.5"
+ },
+ "4289": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 29"
+ },
+ "4290": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 29"
+ },
+ "4291": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 10.5"
+ },
+ "4292": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 10.5"
+ },
+ "4293": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 31.5"
+ },
+ "4294": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 31.5"
+ },
+ "4295": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 28.5"
+ },
+ "4296": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 28.5"
+ },
+ "4297": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 14.5"
+ },
+ "4298": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 14.5"
+ },
+ "4299": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 30.5"
+ },
+ "4300": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 30.5"
+ },
+ "4301": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 31.5"
+ },
+ "4302": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 31.5"
+ },
+ "4303": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 434,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -39.5"
+ },
+ "4304": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 39.5"
+ },
+ "4305": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 441,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -39"
+ },
+ "4306": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 39"
+ },
+ "4307": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 438,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -38.5"
+ },
+ "4308": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 38.5"
+ },
+ "4309": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 430,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -22"
+ },
+ "4310": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 22"
+ },
+ "4311": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -21.5"
+ },
+ "4312": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 21.5"
+ },
+ "4313": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 481,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -41"
+ },
+ "4314": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 41"
+ },
+ "4315": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 482,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -40.5"
+ },
+ "4316": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 40.5"
+ },
+ "4317": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 435,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -40"
+ },
+ "4318": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 40"
+ },
+ "4319": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -18.5"
+ },
+ "4320": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 18.5"
+ },
+ "4321": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 29,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -18"
+ },
+ "4322": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 18"
+ },
+ "4323": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 26.5"
+ },
+ "4324": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 26.5"
+ },
+ "4325": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 447,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -42.5"
+ },
+ "4326": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 42.5"
+ },
+ "4327": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 446,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -42"
+ },
+ "4328": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 42"
+ },
+ "4329": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 445,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -41.5"
+ },
+ "4330": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 41.5"
+ },
+ "4331": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 448,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -43"
+ },
+ "4332": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 43"
+ },
+ "4333": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 483,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -45.5"
+ },
+ "4334": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 45.5"
+ },
+ "4335": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 484,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -45"
+ },
+ "4336": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 45"
+ },
+ "4337": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 485,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -44.5"
+ },
+ "4338": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 44.5"
+ },
+ "4339": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 450,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -44"
+ },
+ "4340": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 44"
+ },
+ "4341": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 449,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -43.5"
+ },
+ "4342": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 43.5"
+ },
+ "4343": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 417,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 95.5"
+ },
+ "4344": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 417,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 95.5"
+ },
+ "4345": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 427,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -23"
+ },
+ "4346": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 23"
+ },
+ "4347": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -22.5"
+ },
+ "4348": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 22.5"
+ },
+ "4349": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 48.5"
+ },
+ "4350": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 48.5"
+ },
+ "4351": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 28.5"
+ },
+ "4352": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 28.5"
+ },
+ "4353": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 25.5"
+ },
+ "4354": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 25.5"
+ },
+ "4355": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 78,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Who First Dragon 1"
+ },
+ "4356": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 78,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Who First Dragon 2"
+ },
+ "4357": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 78,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Who First Turret 1"
+ },
+ "4358": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 78,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Who First Turret 2"
+ },
+ "4359": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 140,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Who First Turret 1"
+ },
+ "4360": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 140,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Who First Turret 2"
+ },
+ "4361": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 140,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Who First Dragon 1"
+ },
+ "4362": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 140,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Who First Dragon 2"
+ },
+ "4363": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 202,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Who First Turret 1"
+ },
+ "4364": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 202,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Who First Turret 2"
+ },
+ "4365": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 202,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Who First Dragon 1"
+ },
+ "4366": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 202,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Who First Dragon 2"
+ },
+ "4367": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 264,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Who First Turret 1"
+ },
+ "4368": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 264,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Who First Turret 2"
+ },
+ "4369": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 264,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Who First Dragon 1"
+ },
+ "4370": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 264,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Who First Dragon 2"
+ },
+ "4371": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 326,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Who First Dragon 1"
+ },
+ "4372": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 326,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Who First Dragon 2"
+ },
+ "4373": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 326,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Who First Turret 1"
+ },
+ "4374": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 326,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Who First Turret 2"
+ },
+ "4375": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Over 34"
+ },
+ "4376": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Under 34"
+ },
+ "4377": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Over 34"
+ },
+ "4378": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Under 34"
+ },
+ "4379": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Over 32"
+ },
+ "4380": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Under 32"
+ },
+ "4381": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Over 32"
+ },
+ "4382": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Under 32"
+ },
+ "4383": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 21.5"
+ },
+ "4384": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 21.5"
+ },
+ "4385": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 7.5"
+ },
+ "4386": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 7.5"
+ },
+ "4387": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 7.5"
+ },
+ "4388": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 7.5"
+ },
+ "4389": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Over 7"
+ },
+ "4390": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Under 7"
+ },
+ "4391": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 414,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 90.5"
+ },
+ "4392": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 414,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 90.5"
+ },
+ "4393": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 43.5"
+ },
+ "4394": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 43.5"
+ },
+ "4395": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 82.5"
+ },
+ "4396": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 82.5"
+ },
+ "4397": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 3.5"
+ },
+ "4398": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 3.5"
+ },
+ "4399": {
+ "selectionId": 20,
+ "marketId": 15,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Even Run Team 2 No"
+ },
+ "4400": {
+ "selectionId": 19,
+ "marketId": 15,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Even Run Team 2 Yes"
+ },
+ "4401": {
+ "selectionId": 20,
+ "marketId": 15,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Even Run Team 1 No"
+ },
+ "4402": {
+ "selectionId": 19,
+ "marketId": 15,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Even Run Team 1 Yes"
+ },
+ "4403": {
+ "selectionId": 182,
+ "marketId": 14,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Even Run Yes"
+ },
+ "4404": {
+ "selectionId": 183,
+ "marketId": 14,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Even Run No"
+ },
+ "4405": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 363,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 68"
+ },
+ "4406": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 363,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 68"
+ },
+ "4407": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 68.5"
+ },
+ "4408": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 68.5"
+ },
+ "4409": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Over 6.5"
+ },
+ "4410": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Under 6.5"
+ },
+ "4411": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -11.5"
+ },
+ "4412": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 11.5"
+ },
+ "4413": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -12"
+ },
+ "4414": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 12"
+ },
+ "4415": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 35.5"
+ },
+ "4416": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 35.5"
+ },
+ "4417": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 37.5"
+ },
+ "4418": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 37.5"
+ },
+ "4419": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 29.5"
+ },
+ "4420": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 29.5"
+ },
+ "4421": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 16.5"
+ },
+ "4422": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 16.5"
+ },
+ "4423": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 9.5"
+ },
+ "4424": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 9.5"
+ },
+ "4425": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 9.5"
+ },
+ "4426": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 9.5"
+ },
+ "4427": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 8.5"
+ },
+ "4428": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 8.5"
+ },
+ "4429": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 17.5"
+ },
+ "4430": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 17.5"
+ },
+ "4431": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 17.5"
+ },
+ "4432": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 17.5"
+ },
+ "4433": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 22.5"
+ },
+ "4434": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 22.5"
+ },
+ "4435": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 21.5"
+ },
+ "4436": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 21.5"
+ },
+ "4437": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 24.5"
+ },
+ "4438": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 24.5"
+ },
+ "4439": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 48.5"
+ },
+ "4440": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 48.5"
+ },
+ "4441": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 21.5"
+ },
+ "4442": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 21.5"
+ },
+ "4443": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 48.5"
+ },
+ "4444": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 48.5"
+ },
+ "4445": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 486,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 191.5"
+ },
+ "4446": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 486,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 191.5"
+ },
+ "4447": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 487,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 94.5"
+ },
+ "4448": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 487,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 94.5"
+ },
+ "4449": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 43,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -26"
+ },
+ "4450": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 26"
+ },
+ "4451": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 75.5"
+ },
+ "4452": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 75.5"
+ },
+ "4453": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 67.5"
+ },
+ "4454": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 67.5"
+ },
+ "4455": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 415,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 91.5"
+ },
+ "4456": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 415,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 91.5"
+ },
+ "4457": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 24.5"
+ },
+ "4458": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 24.5"
+ },
+ "4459": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 44.5"
+ },
+ "4460": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 44.5"
+ },
+ "4461": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -6"
+ },
+ "4462": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 6"
+ },
+ "4463": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 20"
+ },
+ "4464": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 20"
+ },
+ "4465": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 8"
+ },
+ "4466": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -8"
+ },
+ "4467": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 59.5"
+ },
+ "4468": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 59.5"
+ },
+ "4469": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 4.5"
+ },
+ "4470": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -4.5"
+ },
+ "4471": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 8.5"
+ },
+ "4472": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -8.5"
+ },
+ "4473": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 9"
+ },
+ "4474": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -9"
+ },
+ "4475": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 5"
+ },
+ "4476": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -5"
+ },
+ "4477": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 60"
+ },
+ "4478": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 60"
+ },
+ "4479": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 33.5"
+ },
+ "4480": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 33.5"
+ },
+ "4481": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 29.5"
+ },
+ "4482": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 29.5"
+ },
+ "4483": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 488,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 191"
+ },
+ "4484": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 488,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 191"
+ },
+ "4485": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 48.5"
+ },
+ "4486": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 48.5"
+ },
+ "4487": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 47"
+ },
+ "4488": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 47"
+ },
+ "4489": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 47.5"
+ },
+ "4490": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 47.5"
+ },
+ "4491": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 48"
+ },
+ "4492": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 48"
+ },
+ "4493": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 22.5"
+ },
+ "4494": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 22.5"
+ },
+ "4495": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 24"
+ },
+ "4496": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 24"
+ },
+ "4497": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 23.5"
+ },
+ "4498": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 23.5"
+ },
+ "4499": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Over 10.5"
+ },
+ "4500": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Under 10.5"
+ },
+ "4501": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -6.5"
+ },
+ "4502": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 6.5"
+ },
+ "4503": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 19.5"
+ },
+ "4504": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 19.5"
+ },
+ "4505": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 11"
+ },
+ "4506": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -11"
+ },
+ "4507": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 8.5"
+ },
+ "4508": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 8.5"
+ },
+ "4509": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -8.5"
+ },
+ "4510": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 8.5"
+ },
+ "4511": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -9.5"
+ },
+ "4512": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 9.5"
+ },
+ "4513": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -9"
+ },
+ "4514": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 9"
+ },
+ "4515": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -8"
+ },
+ "4516": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 8"
+ },
+ "4517": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 231,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 179"
+ },
+ "4518": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 231,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 179"
+ },
+ "4519": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 487,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 94.5"
+ },
+ "4520": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 487,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 94.5"
+ },
+ "4521": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 24"
+ },
+ "4522": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 24"
+ },
+ "4523": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 13"
+ },
+ "4524": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 13"
+ },
+ "4525": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 10.5"
+ },
+ "4526": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 10.5"
+ },
+ "4527": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 489,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 190"
+ },
+ "4528": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 489,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 190"
+ },
+ "4529": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 490,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 190.5"
+ },
+ "4530": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 490,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 190.5"
+ },
+ "4531": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 60.5"
+ },
+ "4532": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 60.5"
+ },
+ "4533": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 61"
+ },
+ "4534": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 61"
+ },
+ "4535": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 61.5"
+ },
+ "4536": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 61.5"
+ },
+ "4537": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 62"
+ },
+ "4538": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 62"
+ },
+ "4539": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 31.5"
+ },
+ "4540": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 31.5"
+ },
+ "4541": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 30"
+ },
+ "4542": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 30"
+ },
+ "4543": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 30.5"
+ },
+ "4544": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 30.5"
+ },
+ "4545": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -13.5"
+ },
+ "4546": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 13.5"
+ },
+ "4547": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -14.5"
+ },
+ "4548": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 14.5"
+ },
+ "4549": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -14"
+ },
+ "4550": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 14"
+ },
+ "4551": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -13"
+ },
+ "4552": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 13"
+ },
+ "4553": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -12.5"
+ },
+ "4554": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 12.5"
+ },
+ "4555": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 36.5"
+ },
+ "4556": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 36.5"
+ },
+ "4557": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -6.5"
+ },
+ "4558": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 6.5"
+ },
+ "4559": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -7"
+ },
+ "4560": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 7"
+ },
+ "4561": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -6"
+ },
+ "4562": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 6"
+ },
+ "4563": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Over 17.5"
+ },
+ "4564": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Under 17.5"
+ },
+ "4565": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 154,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 138.5"
+ },
+ "4566": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 154,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 138.5"
+ },
+ "4567": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 149,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 136"
+ },
+ "4568": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 149,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 136"
+ },
+ "4569": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 150,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 136.5"
+ },
+ "4570": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 150,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 136.5"
+ },
+ "4571": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 151,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 137"
+ },
+ "4572": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 151,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 137"
+ },
+ "4573": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 152,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 137.5"
+ },
+ "4574": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 152,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 137.5"
+ },
+ "4575": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 153,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 138"
+ },
+ "4576": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 153,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 138"
+ },
+ "4577": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 155,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 139"
+ },
+ "4578": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 155,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 139"
+ },
+ "4579": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 156,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 139.5"
+ },
+ "4580": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 156,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 139.5"
+ },
+ "4581": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 159,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 140"
+ },
+ "4582": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 159,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 140"
+ },
+ "4583": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 160,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 140.5"
+ },
+ "4584": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 160,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 140.5"
+ },
+ "4585": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 71.5"
+ },
+ "4586": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 71.5"
+ },
+ "4587": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 65.5"
+ },
+ "4588": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 65.5"
+ },
+ "4589": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 33.5"
+ },
+ "4590": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 33.5"
+ },
+ "4591": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Over 16.5"
+ },
+ "4592": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Under 16.5"
+ },
+ "4593": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 147,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 135"
+ },
+ "4594": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 147,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 135"
+ },
+ "4595": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 148,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 135.5"
+ },
+ "4596": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 148,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 135.5"
+ },
+ "4597": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 63.5"
+ },
+ "4598": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 63.5"
+ },
+ "4599": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 67.5"
+ },
+ "4600": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 67.5"
+ },
+ "4601": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -10.5"
+ },
+ "4602": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 10.5"
+ },
+ "4603": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -10"
+ },
+ "4604": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 10"
+ },
+ "4605": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 52.5"
+ },
+ "4606": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 52.5"
+ },
+ "4607": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 54"
+ },
+ "4608": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 54"
+ },
+ "4609": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 30.5"
+ },
+ "4610": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 30.5"
+ },
+ "4611": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 19.5"
+ },
+ "4612": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 19.5"
+ },
+ "4613": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 447,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -42.5"
+ },
+ "4614": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 42.5"
+ },
+ "4615": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 60.5"
+ },
+ "4616": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 60.5"
+ },
+ "4617": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 56"
+ },
+ "4618": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 56"
+ },
+ "4619": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 56.5"
+ },
+ "4620": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 56.5"
+ },
+ "4621": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 58"
+ },
+ "4622": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 58"
+ },
+ "4623": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 58.5"
+ },
+ "4624": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 58.5"
+ },
+ "4625": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 60"
+ },
+ "4626": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 60"
+ },
+ "4627": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 62"
+ },
+ "4628": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 62"
+ },
+ "4629": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 434,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -39.5"
+ },
+ "4630": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 39.5"
+ },
+ "4631": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 441,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -39"
+ },
+ "4632": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 39"
+ },
+ "4633": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 435,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -40"
+ },
+ "4634": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 40"
+ },
+ "4635": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 445,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -41.5"
+ },
+ "4636": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 41.5"
+ },
+ "4637": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 481,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -41"
+ },
+ "4638": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 41"
+ },
+ "4639": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 482,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -40.5"
+ },
+ "4640": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 40.5"
+ },
+ "4641": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 62.5"
+ },
+ "4642": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 62.5"
+ },
+ "4643": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 50.5"
+ },
+ "4644": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 50.5"
+ },
+ "4645": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 9.5"
+ },
+ "4646": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 9.5"
+ },
+ "4647": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 446,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -42"
+ },
+ "4648": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 42"
+ },
+ "4649": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 448,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -43"
+ },
+ "4650": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 43"
+ },
+ "4651": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 51.5"
+ },
+ "4652": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 51.5"
+ },
+ "4653": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 8.5"
+ },
+ "4654": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 8.5"
+ },
+ "4655": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 449,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -43.5"
+ },
+ "4656": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 43.5"
+ },
+ "4657": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 64.5"
+ },
+ "4658": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 64.5"
+ },
+ "4659": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 361,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 67"
+ },
+ "4660": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 361,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 67"
+ },
+ "4661": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 66"
+ },
+ "4662": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 66"
+ },
+ "4663": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 66.5"
+ },
+ "4664": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 66.5"
+ },
+ "4665": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 29.5"
+ },
+ "4666": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 29.5"
+ },
+ "4667": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 35.5"
+ },
+ "4668": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 35.5"
+ },
+ "4669": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 36"
+ },
+ "4670": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 36"
+ },
+ "4671": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 36.5"
+ },
+ "4672": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 36.5"
+ },
+ "4673": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 19.5"
+ },
+ "4674": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 19.5"
+ },
+ "4675": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 6"
+ },
+ "4676": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -6"
+ },
+ "4677": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 17.5"
+ },
+ "4678": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 17.5"
+ },
+ "4679": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 408,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 88.5"
+ },
+ "4680": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 408,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 88.5"
+ },
+ "4681": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 22.5"
+ },
+ "4682": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 22.5"
+ },
+ "4683": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Run Team 2 Over 0.5"
+ },
+ "4684": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Run Team 2 Under 0.5"
+ },
+ "4685": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -7"
+ },
+ "4686": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 7"
+ },
+ "4687": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 29.5"
+ },
+ "4688": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 29.5"
+ },
+ "4689": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -15"
+ },
+ "4690": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 15"
+ },
+ "4691": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -10"
+ },
+ "4692": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 10"
+ },
+ "4693": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 22.5"
+ },
+ "4694": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 22.5"
+ },
+ "4695": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 5.5"
+ },
+ "4696": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 5.5"
+ },
+ "4697": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 20.5"
+ },
+ "4698": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 20.5"
+ },
+ "4699": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 450,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -44"
+ },
+ "4700": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 44"
+ },
+ "4701": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 35"
+ },
+ "4702": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 35"
+ },
+ "4703": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 484,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -45"
+ },
+ "4704": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 45"
+ },
+ "4705": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 485,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -44.5"
+ },
+ "4706": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 44.5"
+ },
+ "4707": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 52.5"
+ },
+ "4708": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 52.5"
+ },
+ "4709": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 7.5"
+ },
+ "4710": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 7.5"
+ },
+ "4711": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 483,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -45.5"
+ },
+ "4712": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 45.5"
+ },
+ "4713": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -13"
+ },
+ "4714": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 13"
+ },
+ "4715": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -12.5"
+ },
+ "4716": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 12.5"
+ },
+ "4717": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 31.5"
+ },
+ "4718": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 31.5"
+ },
+ "4719": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 6.5"
+ },
+ "4720": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 6.5"
+ },
+ "4721": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -15.5"
+ },
+ "4722": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 15.5"
+ },
+ "4723": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -15"
+ },
+ "4724": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 15"
+ },
+ "4725": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 62.5"
+ },
+ "4726": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 62.5"
+ },
+ "4727": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 63"
+ },
+ "4728": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 63"
+ },
+ "4729": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 63.5"
+ },
+ "4730": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 63.5"
+ },
+ "4731": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 38.5"
+ },
+ "4732": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 38.5"
+ },
+ "4733": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -7.5"
+ },
+ "4734": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 7.5"
+ },
+ "4735": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 31"
+ },
+ "4736": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 31"
+ },
+ "4737": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Over 18.5"
+ },
+ "4738": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Under 18.5"
+ },
+ "4739": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "1st Period Total Goal Over 3"
+ },
+ "4740": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "1st Period Total Goal Under 3"
+ },
+ "4741": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 18.5"
+ },
+ "4742": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 18.5"
+ },
+ "4743": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -2.5"
+ },
+ "4744": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 2.5"
+ },
+ "4745": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 13.5"
+ },
+ "4746": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -13.5"
+ },
+ "4747": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 13"
+ },
+ "4748": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -13"
+ },
+ "4749": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 12"
+ },
+ "4750": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -12"
+ },
+ "4751": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 12.5"
+ },
+ "4752": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -12.5"
+ },
+ "4753": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 14"
+ },
+ "4754": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -14"
+ },
+ "4755": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 18.5"
+ },
+ "4756": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 18.5"
+ },
+ "4757": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 6.5"
+ },
+ "4758": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -6.5"
+ },
+ "4759": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 6"
+ },
+ "4760": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -6"
+ },
+ "4761": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 7"
+ },
+ "4762": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -7"
+ },
+ "4763": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Over 9.5"
+ },
+ "4764": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Under 9.5"
+ },
+ "4765": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 31.5"
+ },
+ "4766": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 31.5"
+ },
+ "4767": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -9"
+ },
+ "4768": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 9"
+ },
+ "4769": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 11"
+ },
+ "4770": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -11"
+ },
+ "4771": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 11.5"
+ },
+ "4772": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -11.5"
+ },
+ "4773": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 19.5"
+ },
+ "4774": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 19.5"
+ },
+ "4775": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 5.5"
+ },
+ "4776": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -5.5"
+ },
+ "4777": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 10.5"
+ },
+ "4778": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -10.5"
+ },
+ "4779": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 10"
+ },
+ "4780": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -10"
+ },
+ "4781": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 10"
+ },
+ "4782": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 10"
+ },
+ "4783": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 9.5"
+ },
+ "4784": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -9.5"
+ },
+ "4785": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 20.5"
+ },
+ "4786": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 20.5"
+ },
+ "4787": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Over 10.5"
+ },
+ "4788": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Under 10.5"
+ },
+ "4789": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 32"
+ },
+ "4790": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 32"
+ },
+ "4791": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 12.5"
+ },
+ "4792": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 12.5"
+ },
+ "4793": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 32.5"
+ },
+ "4794": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 32.5"
+ },
+ "4795": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 33"
+ },
+ "4796": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 33"
+ },
+ "4797": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 33.5"
+ },
+ "4798": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 33.5"
+ },
+ "4799": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 34"
+ },
+ "4800": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 34"
+ },
+ "4801": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 15.5"
+ },
+ "4802": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 15.5"
+ },
+ "4803": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 34.5"
+ },
+ "4804": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 34.5"
+ },
+ "4805": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 2.5"
+ },
+ "4806": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 -2.5"
+ },
+ "4807": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 23"
+ },
+ "4808": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 23"
+ },
+ "4809": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 6"
+ },
+ "4810": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -6"
+ },
+ "4811": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 5"
+ },
+ "4812": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -5"
+ },
+ "4813": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 5.5"
+ },
+ "4814": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -5.5"
+ },
+ "4815": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 6.5"
+ },
+ "4816": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -6.5"
+ },
+ "4817": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 7"
+ },
+ "4818": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -7"
+ },
+ "4819": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 42.5"
+ },
+ "4820": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 42.5"
+ },
+ "4821": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 43"
+ },
+ "4822": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 43"
+ },
+ "4823": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 19"
+ },
+ "4824": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 19"
+ },
+ "4825": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 25"
+ },
+ "4826": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 25"
+ },
+ "4827": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 4"
+ },
+ "4828": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -4"
+ },
+ "4829": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 4.5"
+ },
+ "4830": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -4.5"
+ },
+ "4831": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 20"
+ },
+ "4832": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 20"
+ },
+ "4833": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 -0.5"
+ },
+ "4834": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 0.5"
+ },
+ "4835": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 7.5"
+ },
+ "4836": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -7.5"
+ },
+ "4837": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 18.5"
+ },
+ "4838": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 18.5"
+ },
+ "4839": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 23"
+ },
+ "4840": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 23"
+ },
+ "4841": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -3"
+ },
+ "4842": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 3"
+ },
+ "4843": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 8"
+ },
+ "4844": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -8"
+ },
+ "4845": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 42"
+ },
+ "4846": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 42"
+ },
+ "4847": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 18"
+ },
+ "4848": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 18"
+ },
+ "4849": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 14.5"
+ },
+ "4850": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 14.5"
+ },
+ "4851": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 14"
+ },
+ "4852": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 14"
+ },
+ "4853": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 15"
+ },
+ "4854": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 15"
+ },
+ "4855": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 15.5"
+ },
+ "4856": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 15.5"
+ },
+ "4857": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 16"
+ },
+ "4858": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 16"
+ },
+ "4859": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Over 6.5"
+ },
+ "4860": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Under 6.5"
+ },
+ "4861": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Over 7.5"
+ },
+ "4862": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Under 7.5"
+ },
+ "4863": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 417,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 95.5"
+ },
+ "4864": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 417,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 95.5"
+ },
+ "4865": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 491,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 96.5"
+ },
+ "4866": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 491,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 96.5"
+ },
+ "4867": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 492,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 97.5"
+ },
+ "4868": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 492,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 97.5"
+ },
+ "4869": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -9.5"
+ },
+ "4870": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 9.5"
+ },
+ "4871": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -5"
+ },
+ "4872": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 5"
+ },
+ "4873": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -16"
+ },
+ "4874": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 16"
+ },
+ "4875": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -16.5"
+ },
+ "4876": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 16.5"
+ },
+ "4877": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -17.5"
+ },
+ "4878": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 17.5"
+ },
+ "4879": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -10.5"
+ },
+ "4880": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 10.5"
+ },
+ "4881": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -10"
+ },
+ "4882": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 10"
+ },
+ "4883": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 21.5"
+ },
+ "4884": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 21.5"
+ },
+ "4885": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 32.5"
+ },
+ "4886": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 32.5"
+ },
+ "4887": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 69.5"
+ },
+ "4888": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 69.5"
+ },
+ "4889": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -11.5"
+ },
+ "4890": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 11.5"
+ },
+ "4891": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -11"
+ },
+ "4892": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 11"
+ },
+ "4893": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 35.5"
+ },
+ "4894": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 35.5"
+ },
+ "4895": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -5.5"
+ },
+ "4896": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 5.5"
+ },
+ "4897": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 410,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 89.5"
+ },
+ "4898": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 410,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 89.5"
+ },
+ "4899": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 493,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -46.5"
+ },
+ "4900": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 46.5"
+ },
+ "4901": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 34.5"
+ },
+ "4902": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 34.5"
+ },
+ "4903": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 64"
+ },
+ "4904": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 64"
+ },
+ "4905": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 31.5"
+ },
+ "4906": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 31.5"
+ },
+ "4907": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Over 7.5"
+ },
+ "4908": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Under 7.5"
+ },
+ "4909": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Run Team 1 Over 3.5"
+ },
+ "4910": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Run Team 1 Under 3.5"
+ },
+ "4911": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 29.5"
+ },
+ "4912": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 29.5"
+ },
+ "4913": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 17.5"
+ },
+ "4914": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 17.5"
+ },
+ "4915": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 145,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 134"
+ },
+ "4916": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 145,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 134"
+ },
+ "4917": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 146,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 134.5"
+ },
+ "4918": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 146,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 134.5"
+ },
+ "4919": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 70.5"
+ },
+ "4920": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 70.5"
+ },
+ "4921": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -26.5"
+ },
+ "4922": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 26.5"
+ },
+ "4923": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 68.5"
+ },
+ "4924": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 68.5"
+ },
+ "4925": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 69.5"
+ },
+ "4926": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 69.5"
+ },
+ "4927": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 29"
+ },
+ "4928": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 49,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -29"
+ },
+ "4929": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 29.5"
+ },
+ "4930": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 50,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -29.5"
+ },
+ "4931": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 30"
+ },
+ "4932": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 54,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -30"
+ },
+ "4933": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 406,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 87.5"
+ },
+ "4934": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 406,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 87.5"
+ },
+ "4935": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 12"
+ },
+ "4936": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -12"
+ },
+ "4937": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 18.5"
+ },
+ "4938": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 18.5"
+ },
+ "4939": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -0.5"
+ },
+ "4940": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 0.5"
+ },
+ "4941": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 16.5"
+ },
+ "4942": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 16.5"
+ },
+ "4943": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 31"
+ },
+ "4944": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 31"
+ },
+ "4945": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 47.5"
+ },
+ "4946": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 47.5"
+ },
+ "4947": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 4"
+ },
+ "4948": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -4"
+ },
+ "4949": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 47"
+ },
+ "4950": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 47"
+ },
+ "4951": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 21.5"
+ },
+ "4952": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 21.5"
+ },
+ "4953": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 26.5"
+ },
+ "4954": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 26.5"
+ },
+ "4955": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 25"
+ },
+ "4956": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 25"
+ },
+ "4957": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 49.5"
+ },
+ "4958": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 49.5"
+ },
+ "4959": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 8.5"
+ },
+ "4960": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -8.5"
+ },
+ "4961": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 51"
+ },
+ "4962": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 51"
+ },
+ "4963": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 28.5"
+ },
+ "4964": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 28.5"
+ },
+ "4965": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 27.5"
+ },
+ "4966": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 27.5"
+ },
+ "4967": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 45.5"
+ },
+ "4968": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 45.5"
+ },
+ "4969": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 45"
+ },
+ "4970": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 45"
+ },
+ "4971": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 20.5"
+ },
+ "4972": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 20.5"
+ },
+ "4973": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1"
+ },
+ "4974": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2"
+ },
+ "4975": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 25.5"
+ },
+ "4976": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 25.5"
+ },
+ "4977": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 15"
+ },
+ "4978": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -15"
+ },
+ "4979": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 9"
+ },
+ "4980": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -9"
+ },
+ "4981": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 63.5"
+ },
+ "4982": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 63.5"
+ },
+ "4983": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 63.5"
+ },
+ "4984": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 63.5"
+ },
+ "4985": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Over 7.5"
+ },
+ "4986": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Under 7.5"
+ },
+ "4987": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Over 7.5"
+ },
+ "4988": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Under 7.5"
+ },
+ "4989": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 51.5"
+ },
+ "4990": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 51.5"
+ },
+ "4991": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 29.5"
+ },
+ "4992": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 29.5"
+ },
+ "4993": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 22.5"
+ },
+ "4994": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 22.5"
+ },
+ "4995": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1"
+ },
+ "4996": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2"
+ },
+ "4997": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 42.5"
+ },
+ "4998": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 42.5"
+ },
+ "4999": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 41.5"
+ },
+ "5000": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 41.5"
+ },
+ "5001": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 41"
+ },
+ "5002": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 41"
+ },
+ "5003": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 43.5"
+ },
+ "5004": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 43.5"
+ },
+ "5005": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 43"
+ },
+ "5006": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 43"
+ },
+ "5007": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 42"
+ },
+ "5008": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 42"
+ },
+ "5009": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 21.5"
+ },
+ "5010": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 21.5"
+ },
+ "5011": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -15"
+ },
+ "5012": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 15"
+ },
+ "5013": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 15.5"
+ },
+ "5014": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 15.5"
+ },
+ "5015": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -2"
+ },
+ "5016": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 2"
+ },
+ "5017": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 2.5"
+ },
+ "5018": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -2.5"
+ },
+ "5019": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 3"
+ },
+ "5020": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -3"
+ },
+ "5021": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -7.5"
+ },
+ "5022": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 7.5"
+ },
+ "5023": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -6.5"
+ },
+ "5024": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 6.5"
+ },
+ "5025": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 26.5"
+ },
+ "5026": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 26.5"
+ },
+ "5027": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 22.5"
+ },
+ "5028": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 22.5"
+ },
+ "5029": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 54.5"
+ },
+ "5030": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 54.5"
+ },
+ "5031": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 48,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -28.5"
+ },
+ "5032": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 28.5"
+ },
+ "5033": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 6.5"
+ },
+ "5034": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -6.5"
+ },
+ "5035": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 27.5"
+ },
+ "5036": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 27.5"
+ },
+ "5037": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 67.5"
+ },
+ "5038": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 67.5"
+ },
+ "5039": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 14.5"
+ },
+ "5040": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 14.5"
+ },
+ "5041": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 28.5"
+ },
+ "5042": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 28.5"
+ },
+ "5043": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 53"
+ },
+ "5044": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 53"
+ },
+ "5045": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 23.5"
+ },
+ "5046": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 23.5"
+ },
+ "5047": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 23.5"
+ },
+ "5048": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 23.5"
+ },
+ "5049": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 16"
+ },
+ "5050": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -16"
+ },
+ "5051": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 49.5"
+ },
+ "5052": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 49.5"
+ },
+ "5053": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 62.5"
+ },
+ "5054": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 62.5"
+ },
+ "5055": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 63.5"
+ },
+ "5056": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 63.5"
+ },
+ "5057": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 17.5"
+ },
+ "5058": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 17.5"
+ },
+ "5059": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 17.5"
+ },
+ "5060": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 17.5"
+ },
+ "5061": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 18.5"
+ },
+ "5062": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 18.5"
+ },
+ "5063": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 18.5"
+ },
+ "5064": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 18.5"
+ },
+ "5065": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 18.5"
+ },
+ "5066": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 18.5"
+ },
+ "5067": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 3.5"
+ },
+ "5068": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -3.5"
+ },
+ "5069": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -19.5"
+ },
+ "5070": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 19.5"
+ },
+ "5071": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 38,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -20"
+ },
+ "5072": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 20"
+ },
+ "5073": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -20.5"
+ },
+ "5074": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 20.5"
+ },
+ "5075": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -18.5"
+ },
+ "5076": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 18.5"
+ },
+ "5077": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 31,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -19"
+ },
+ "5078": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 19"
+ },
+ "5079": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 18.5"
+ },
+ "5080": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 18.5"
+ },
+ "5081": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -9.5"
+ },
+ "5082": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 9.5"
+ },
+ "5083": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -9"
+ },
+ "5084": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 9"
+ },
+ "5085": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -10"
+ },
+ "5086": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 10"
+ },
+ "5087": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Over 9.5"
+ },
+ "5088": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Under 9.5"
+ },
+ "5089": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 22"
+ },
+ "5090": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 22"
+ },
+ "5091": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 21"
+ },
+ "5092": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 21"
+ },
+ "5093": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 21.5"
+ },
+ "5094": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 21.5"
+ },
+ "5095": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 459,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 92.5"
+ },
+ "5096": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 459,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 92.5"
+ },
+ "5097": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -22.5"
+ },
+ "5098": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 22.5"
+ },
+ "5099": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 427,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -23"
+ },
+ "5100": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 23"
+ },
+ "5101": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 40.5"
+ },
+ "5102": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 40.5"
+ },
+ "5103": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 22.5"
+ },
+ "5104": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 22.5"
+ },
+ "5105": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 18.5"
+ },
+ "5106": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -18.5"
+ },
+ "5107": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 18"
+ },
+ "5108": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 29,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -18"
+ },
+ "5109": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 19"
+ },
+ "5110": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 31,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -19"
+ },
+ "5111": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 19.5"
+ },
+ "5112": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -19.5"
+ },
+ "5113": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 17.5"
+ },
+ "5114": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -17.5"
+ },
+ "5115": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 17.5"
+ },
+ "5116": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 17.5"
+ },
+ "5117": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 36.5"
+ },
+ "5118": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 36.5"
+ },
+ "5119": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 9"
+ },
+ "5120": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -9"
+ },
+ "5121": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 8.5"
+ },
+ "5122": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -8.5"
+ },
+ "5123": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 9.5"
+ },
+ "5124": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -9.5"
+ },
+ "5125": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Over 8.5"
+ },
+ "5126": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Under 8.5"
+ },
+ "5127": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Over 17.5"
+ },
+ "5128": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Under 17.5"
+ },
+ "5129": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -4"
+ },
+ "5130": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 4"
+ },
+ "5131": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -4.5"
+ },
+ "5132": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 4.5"
+ },
+ "5133": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -5"
+ },
+ "5134": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 5"
+ },
+ "5135": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 29,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -18"
+ },
+ "5136": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 18"
+ },
+ "5137": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 8.5"
+ },
+ "5138": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 8.5"
+ },
+ "5139": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 27,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -17"
+ },
+ "5140": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 17"
+ },
+ "5141": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 24.5"
+ },
+ "5142": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 24.5"
+ },
+ "5143": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 236,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 180.5"
+ },
+ "5144": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 236,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 180.5"
+ },
+ "5145": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 21.5"
+ },
+ "5146": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 21.5"
+ },
+ "5147": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 34.5"
+ },
+ "5148": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 34.5"
+ },
+ "5149": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Over 1.5"
+ },
+ "5150": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Under 1.5"
+ },
+ "5151": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 71.5"
+ },
+ "5152": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 71.5"
+ },
+ "5153": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 3.5"
+ },
+ "5154": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 3.5"
+ },
+ "5155": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 4"
+ },
+ "5156": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 4"
+ },
+ "5157": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Over 3.5"
+ },
+ "5158": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Under 3.5"
+ },
+ "5159": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -5.5"
+ },
+ "5160": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 5.5"
+ },
+ "5161": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 40,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -21"
+ },
+ "5162": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 21"
+ },
+ "5163": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -10.5"
+ },
+ "5164": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 10.5"
+ },
+ "5165": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Over 19.5"
+ },
+ "5166": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Under 19.5"
+ },
+ "5167": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 5"
+ },
+ "5168": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 5"
+ },
+ "5169": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 34"
+ },
+ "5170": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 477,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -34"
+ },
+ "5171": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 49"
+ },
+ "5172": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 494,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -49"
+ },
+ "5173": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 41"
+ },
+ "5174": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 481,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -41"
+ },
+ "5175": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 495,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 600"
+ },
+ "5176": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 495,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 600"
+ },
+ "5177": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 8.5"
+ },
+ "5178": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 8.5"
+ },
+ "5179": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 22.5"
+ },
+ "5180": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 22.5"
+ },
+ "5181": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 46"
+ },
+ "5182": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 496,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -46"
+ },
+ "5183": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 25.5"
+ },
+ "5184": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 25.5"
+ },
+ "5185": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 373,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 72"
+ },
+ "5186": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 373,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 72"
+ },
+ "5187": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 32.5"
+ },
+ "5188": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 32.5"
+ },
+ "5189": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 16.5"
+ },
+ "5190": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 16.5"
+ },
+ "5191": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 35"
+ },
+ "5192": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 35"
+ },
+ "5193": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 36"
+ },
+ "5194": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 36"
+ },
+ "5195": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 37"
+ },
+ "5196": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 37"
+ },
+ "5197": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 37.5"
+ },
+ "5198": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 37.5"
+ },
+ "5199": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 36.5"
+ },
+ "5200": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 36.5"
+ },
+ "5201": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 53.5"
+ },
+ "5202": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 53.5"
+ },
+ "5203": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 35.5"
+ },
+ "5204": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 35.5"
+ },
+ "5205": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 31.5"
+ },
+ "5206": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 31.5"
+ },
+ "5207": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -24.5"
+ },
+ "5208": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 24.5"
+ },
+ "5209": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -23.5"
+ },
+ "5210": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 23.5"
+ },
+ "5211": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -24.5"
+ },
+ "5212": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 24.5"
+ },
+ "5213": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -22.5"
+ },
+ "5214": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 22.5"
+ },
+ "5215": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 114,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 115.5"
+ },
+ "5216": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 114,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 115.5"
+ },
+ "5217": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 45,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -27"
+ },
+ "5218": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 27"
+ },
+ "5219": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 47,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -28"
+ },
+ "5220": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 28"
+ },
+ "5221": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -27.5"
+ },
+ "5222": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 27.5"
+ },
+ "5223": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 116,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 116.5"
+ },
+ "5224": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 116,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 116.5"
+ },
+ "5225": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 115,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 116"
+ },
+ "5226": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 115,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 116"
+ },
+ "5227": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 112,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 114.5"
+ },
+ "5228": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 112,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 114.5"
+ },
+ "5229": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 111,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 114"
+ },
+ "5230": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 111,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 114"
+ },
+ "5231": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 118,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 117.5"
+ },
+ "5232": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 118,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 117.5"
+ },
+ "5233": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 119,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 118"
+ },
+ "5234": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 119,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 118"
+ },
+ "5235": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 109,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 113"
+ },
+ "5236": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 109,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 113"
+ },
+ "5237": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 110,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 113.5"
+ },
+ "5238": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 110,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 113.5"
+ },
+ "5239": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 113,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 115"
+ },
+ "5240": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 113,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 115"
+ },
+ "5241": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 117,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 117"
+ },
+ "5242": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 117,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 117"
+ },
+ "5243": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -16"
+ },
+ "5244": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 16"
+ },
+ "5245": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -15.5"
+ },
+ "5246": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 15.5"
+ },
+ "5247": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 58"
+ },
+ "5248": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 58"
+ },
+ "5249": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 57"
+ },
+ "5250": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 57"
+ },
+ "5251": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 57.5"
+ },
+ "5252": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 57.5"
+ },
+ "5253": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 59"
+ },
+ "5254": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 59"
+ },
+ "5255": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 58.5"
+ },
+ "5256": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 58.5"
+ },
+ "5257": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 107,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 112"
+ },
+ "5258": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 107,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 112"
+ },
+ "5259": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 108,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 112.5"
+ },
+ "5260": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 108,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 112.5"
+ },
+ "5261": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 55.5"
+ },
+ "5262": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 55.5"
+ },
+ "5263": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 56"
+ },
+ "5264": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 56"
+ },
+ "5265": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 55"
+ },
+ "5266": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 55"
+ },
+ "5267": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 54"
+ },
+ "5268": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 54"
+ },
+ "5269": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 54.5"
+ },
+ "5270": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 54.5"
+ },
+ "5271": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 105,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 111"
+ },
+ "5272": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 105,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 111"
+ },
+ "5273": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 106,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 111.5"
+ },
+ "5274": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 106,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 111.5"
+ },
+ "5275": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 46.5"
+ },
+ "5276": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 46.5"
+ },
+ "5277": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 56.5"
+ },
+ "5278": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 56.5"
+ },
+ "5279": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 66.5"
+ },
+ "5280": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 66.5"
+ },
+ "5281": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 48.5"
+ },
+ "5282": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 497,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -48.5"
+ },
+ "5283": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 64.5"
+ },
+ "5284": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 64.5"
+ },
+ "5285": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 32.5"
+ },
+ "5286": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 32.5"
+ },
+ "5287": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 31.5"
+ },
+ "5288": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 31.5"
+ },
+ "5289": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 103,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 110"
+ },
+ "5290": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 103,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 110"
+ },
+ "5291": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 104,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 110.5"
+ },
+ "5292": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 104,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 110.5"
+ },
+ "5293": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 53.5"
+ },
+ "5294": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 53.5"
+ },
+ "5295": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 30.5"
+ },
+ "5296": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 30.5"
+ },
+ "5297": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 48.5"
+ },
+ "5298": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 48.5"
+ },
+ "5299": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 63.5"
+ },
+ "5300": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 63.5"
+ },
+ "5301": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 100,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 109.5"
+ },
+ "5302": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 100,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 109.5"
+ },
+ "5303": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 62.5"
+ },
+ "5304": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 62.5"
+ },
+ "5305": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 53"
+ },
+ "5306": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 53"
+ },
+ "5307": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 61.5"
+ },
+ "5308": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 61.5"
+ },
+ "5309": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 35"
+ },
+ "5310": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 475,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -35"
+ },
+ "5311": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 34.5"
+ },
+ "5312": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 476,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -34.5"
+ },
+ "5313": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 55"
+ },
+ "5314": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 55"
+ },
+ "5315": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 120,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 118.5"
+ },
+ "5316": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 120,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 118.5"
+ },
+ "5317": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 122,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 119.5"
+ },
+ "5318": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 122,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 119.5"
+ },
+ "5319": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 125,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 120"
+ },
+ "5320": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 125,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 120"
+ },
+ "5321": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 121,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 119"
+ },
+ "5322": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 121,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 119"
+ },
+ "5323": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 51.5"
+ },
+ "5324": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 51.5"
+ },
+ "5325": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 232,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 179.5"
+ },
+ "5326": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 232,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 179.5"
+ },
+ "5327": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 235,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 180"
+ },
+ "5328": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 235,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 180"
+ },
+ "5329": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 237,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 181"
+ },
+ "5330": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 237,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 181"
+ },
+ "5331": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 491,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 96.5"
+ },
+ "5332": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 491,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 96.5"
+ },
+ "5333": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 15.5"
+ },
+ "5334": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 15.5"
+ },
+ "5335": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 65.5"
+ },
+ "5336": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 65.5"
+ },
+ "5337": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 10.5"
+ },
+ "5338": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 -10.5"
+ },
+ "5339": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Over 30"
+ },
+ "5340": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Under 30"
+ },
+ "5341": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Over 37"
+ },
+ "5342": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Under 37"
+ },
+ "5343": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Over 30"
+ },
+ "5344": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Under 30"
+ },
+ "5345": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Over 30"
+ },
+ "5346": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Under 30"
+ },
+ "5347": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 35.5"
+ },
+ "5348": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 35.5"
+ },
+ "5349": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 498,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 189.5"
+ },
+ "5350": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 498,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 189.5"
+ },
+ "5351": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 253,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 189"
+ },
+ "5352": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 253,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 189"
+ },
+ "5353": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 2.5"
+ },
+ "5354": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 2.5"
+ },
+ "5355": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -16"
+ },
+ "5356": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 16"
+ },
+ "5357": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -16.5"
+ },
+ "5358": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 16.5"
+ },
+ "5359": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 20.5"
+ },
+ "5360": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 20.5"
+ },
+ "5361": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -8"
+ },
+ "5362": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 8"
+ },
+ "5363": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 55.5"
+ },
+ "5364": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 55.5"
+ },
+ "5365": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 11.5"
+ },
+ "5366": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -11.5"
+ },
+ "5367": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 57"
+ },
+ "5368": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 57"
+ },
+ "5369": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 57.5"
+ },
+ "5370": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 57.5"
+ },
+ "5371": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 59"
+ },
+ "5372": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 59"
+ },
+ "5373": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 19.5"
+ },
+ "5374": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 19.5"
+ },
+ "5375": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 27,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -17"
+ },
+ "5376": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 17"
+ },
+ "5377": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 4"
+ },
+ "5378": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 4"
+ },
+ "5379": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 37"
+ },
+ "5380": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 37"
+ },
+ "5381": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -25.5"
+ },
+ "5382": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 25.5"
+ },
+ "5383": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -23.5"
+ },
+ "5384": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 23.5"
+ },
+ "5385": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Over 18.5"
+ },
+ "5386": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Under 18.5"
+ },
+ "5387": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 72.5"
+ },
+ "5388": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 72.5"
+ },
+ "5389": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Over 31"
+ },
+ "5390": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Under 31"
+ },
+ "5391": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Over 31"
+ },
+ "5392": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Under 31"
+ },
+ "5393": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 238,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 181.5"
+ },
+ "5394": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 238,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 181.5"
+ },
+ "5395": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 239,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 182"
+ },
+ "5396": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 239,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 182"
+ },
+ "5397": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 414,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 90.5"
+ },
+ "5398": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 414,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 90.5"
+ },
+ "5399": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 413,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 90"
+ },
+ "5400": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 413,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 90"
+ },
+ "5401": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 49.5"
+ },
+ "5402": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 49.5"
+ },
+ "5403": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 19.5"
+ },
+ "5404": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 19.5"
+ },
+ "5405": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 249,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 187"
+ },
+ "5406": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 249,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 187"
+ },
+ "5407": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 246,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 185.5"
+ },
+ "5408": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 246,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 185.5"
+ },
+ "5409": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 62.5"
+ },
+ "5410": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 62.5"
+ },
+ "5411": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 64"
+ },
+ "5412": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 64"
+ },
+ "5413": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 63"
+ },
+ "5414": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 63"
+ },
+ "5415": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 63.5"
+ },
+ "5416": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 63.5"
+ },
+ "5417": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 64.5"
+ },
+ "5418": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 64.5"
+ },
+ "5419": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 65"
+ },
+ "5420": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 65"
+ },
+ "5421": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 28.5"
+ },
+ "5422": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 28.5"
+ },
+ "5423": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 142,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 132.5"
+ },
+ "5424": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 142,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 132.5"
+ },
+ "5425": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 499,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 130"
+ },
+ "5426": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 499,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 130"
+ },
+ "5427": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 500,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 130.5"
+ },
+ "5428": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 500,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 130.5"
+ },
+ "5429": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 501,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 131"
+ },
+ "5430": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 501,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 131"
+ },
+ "5431": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 502,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 131.5"
+ },
+ "5432": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 502,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 131.5"
+ },
+ "5433": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 503,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 132"
+ },
+ "5434": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 503,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 132"
+ },
+ "5435": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 143,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 133"
+ },
+ "5436": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 143,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 133"
+ },
+ "5437": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 144,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 133.5"
+ },
+ "5438": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 144,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 133.5"
+ },
+ "5439": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 60.5"
+ },
+ "5440": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 60.5"
+ },
+ "5441": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 62"
+ },
+ "5442": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 62"
+ },
+ "5443": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 61"
+ },
+ "5444": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 61"
+ },
+ "5445": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 61.5"
+ },
+ "5446": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 61.5"
+ },
+ "5447": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 62.5"
+ },
+ "5448": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 62.5"
+ },
+ "5449": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 504,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 128"
+ },
+ "5450": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 504,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 128"
+ },
+ "5451": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 505,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 128.5"
+ },
+ "5452": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 505,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 128.5"
+ },
+ "5453": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 506,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 129"
+ },
+ "5454": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 506,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 129"
+ },
+ "5455": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 507,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 129.5"
+ },
+ "5456": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 507,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 129.5"
+ },
+ "5457": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 58.5"
+ },
+ "5458": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 58.5"
+ },
+ "5459": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 60"
+ },
+ "5460": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 60"
+ },
+ "5461": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 60.5"
+ },
+ "5462": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 60.5"
+ },
+ "5463": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 37.5"
+ },
+ "5464": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 37.5"
+ },
+ "5465": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 46"
+ },
+ "5466": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 46"
+ },
+ "5467": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 46.5"
+ },
+ "5468": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 46.5"
+ },
+ "5469": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -12"
+ },
+ "5470": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 12"
+ },
+ "5471": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 45.5"
+ },
+ "5472": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 45.5"
+ },
+ "5473": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 23"
+ },
+ "5474": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 23"
+ },
+ "5475": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 240,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 182.5"
+ },
+ "5476": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 240,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 182.5"
+ },
+ "5477": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 241,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 183"
+ },
+ "5478": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 241,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 183"
+ },
+ "5479": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 51.5"
+ },
+ "5480": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 51.5"
+ },
+ "5481": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 52.5"
+ },
+ "5482": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 52.5"
+ },
+ "5483": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 23.5"
+ },
+ "5484": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 23.5"
+ },
+ "5485": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Over 8.5"
+ },
+ "5486": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Under 8.5"
+ },
+ "5487": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Over 8.5"
+ },
+ "5488": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Under 8.5"
+ },
+ "5489": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Over 8.5"
+ },
+ "5490": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Under 8.5"
+ },
+ "5491": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 34.5"
+ },
+ "5492": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 34.5"
+ },
+ "5493": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -25.5"
+ },
+ "5494": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 25.5"
+ },
+ "5495": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -24.5"
+ },
+ "5496": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 24.5"
+ },
+ "5497": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -26.5"
+ },
+ "5498": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 26.5"
+ },
+ "5499": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 59.5"
+ },
+ "5500": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 59.5"
+ },
+ "5501": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 23.5"
+ },
+ "5502": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 23.5"
+ },
+ "5503": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 33.5"
+ },
+ "5504": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 33.5"
+ },
+ "5505": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 61.5"
+ },
+ "5506": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 61.5"
+ },
+ "5507": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 77.5"
+ },
+ "5508": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 77.5"
+ },
+ "5509": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 78.5"
+ },
+ "5510": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 78.5"
+ },
+ "5511": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 34.5"
+ },
+ "5512": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 34.5"
+ },
+ "5513": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 35.5"
+ },
+ "5514": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 35.5"
+ },
+ "5515": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 62.5"
+ },
+ "5516": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 62.5"
+ },
+ "5517": {
+ "selectionId": 192,
+ "marketId": 23,
+ "gamePeriodId": 264,
+ "gameTypeId": 71,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Will there be Overtime Yes"
+ },
+ "5518": {
+ "selectionId": 193,
+ "marketId": 23,
+ "gamePeriodId": 264,
+ "gameTypeId": 71,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Will there be Overtime No"
+ },
+ "5519": {
+ "selectionId": 182,
+ "marketId": 14,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Even Round Yes"
+ },
+ "5520": {
+ "selectionId": 183,
+ "marketId": 14,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Even Round No"
+ },
+ "5521": {
+ "selectionId": 192,
+ "marketId": 23,
+ "gamePeriodId": 326,
+ "gameTypeId": 71,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Will there be Overtime Yes"
+ },
+ "5522": {
+ "selectionId": 193,
+ "marketId": 23,
+ "gamePeriodId": 326,
+ "gameTypeId": 71,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Will there be Overtime No"
+ },
+ "5523": {
+ "selectionId": 182,
+ "marketId": 14,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Even Round Yes"
+ },
+ "5524": {
+ "selectionId": 183,
+ "marketId": 14,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Even Round No"
+ },
+ "5525": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 -8.5"
+ },
+ "5526": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 8.5"
+ },
+ "5527": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 -7.5"
+ },
+ "5528": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 7.5"
+ },
+ "5529": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 -6.5"
+ },
+ "5530": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 6.5"
+ },
+ "5531": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 -5.5"
+ },
+ "5532": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 5.5"
+ },
+ "5533": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 -4.5"
+ },
+ "5534": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 4.5"
+ },
+ "5535": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 4.5"
+ },
+ "5536": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 -4.5"
+ },
+ "5537": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 5.5"
+ },
+ "5538": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 -5.5"
+ },
+ "5539": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Over 26.5"
+ },
+ "5540": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Under 26.5"
+ },
+ "5541": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Over 23.5"
+ },
+ "5542": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Under 23.5"
+ },
+ "5543": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Over 24.5"
+ },
+ "5544": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Under 24.5"
+ },
+ "5545": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Over 25.5"
+ },
+ "5546": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Under 25.5"
+ },
+ "5547": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Over 27.5"
+ },
+ "5548": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Under 27.5"
+ },
+ "5549": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Over 28.5"
+ },
+ "5550": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Under 28.5"
+ },
+ "5551": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Over 29.5"
+ },
+ "5552": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Under 29.5"
+ },
+ "5553": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Over 30.5"
+ },
+ "5554": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Under 30.5"
+ },
+ "5555": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Over 15.5"
+ },
+ "5556": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Under 15.5"
+ },
+ "5557": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 -8.5"
+ },
+ "5558": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 8.5"
+ },
+ "5559": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 -7.5"
+ },
+ "5560": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 7.5"
+ },
+ "5561": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 -6.5"
+ },
+ "5562": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 6.5"
+ },
+ "5563": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 -5.5"
+ },
+ "5564": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 5.5"
+ },
+ "5565": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 -4.5"
+ },
+ "5566": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 4.5"
+ },
+ "5567": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 4.5"
+ },
+ "5568": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 -4.5"
+ },
+ "5569": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 5.5"
+ },
+ "5570": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 -5.5"
+ },
+ "5571": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Over 26.5"
+ },
+ "5572": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Under 26.5"
+ },
+ "5573": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Over 23.5"
+ },
+ "5574": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Under 23.5"
+ },
+ "5575": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Over 24.5"
+ },
+ "5576": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Under 24.5"
+ },
+ "5577": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Over 25.5"
+ },
+ "5578": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Under 25.5"
+ },
+ "5579": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Over 27.5"
+ },
+ "5580": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Under 27.5"
+ },
+ "5581": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Over 28.5"
+ },
+ "5582": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Under 28.5"
+ },
+ "5583": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Over 29.5"
+ },
+ "5584": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Under 29.5"
+ },
+ "5585": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Over 30.5"
+ },
+ "5586": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Under 30.5"
+ },
+ "5587": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Over 15.5"
+ },
+ "5588": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Under 15.5"
+ },
+ "5589": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Over 13.5"
+ },
+ "5590": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Under 13.5"
+ },
+ "5591": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 -9.5"
+ },
+ "5592": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 9.5"
+ },
+ "5593": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 -9.5"
+ },
+ "5594": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 9.5"
+ },
+ "5595": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 264,
+ "gameTypeId": 5,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 To Score Ace Yes"
+ },
+ "5596": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 264,
+ "gameTypeId": 5,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 To Score Ace No"
+ },
+ "5597": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Race To Round 1 5"
+ },
+ "5598": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Race To Round 2 5"
+ },
+ "5599": {
+ "selectionId": 190,
+ "marketId": 22,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Race To Round 1 5"
+ },
+ "5600": {
+ "selectionId": 191,
+ "marketId": 22,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Race To Round 2 5"
+ },
+ "5601": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 264,
+ "gameTypeId": 65,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 To Score Knife Kill Yes"
+ },
+ "5602": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 264,
+ "gameTypeId": 65,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 To Score Knife Kill No"
+ },
+ "5603": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 326,
+ "gameTypeId": 65,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 To Score Knife Kill Yes"
+ },
+ "5604": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 326,
+ "gameTypeId": 65,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 To Score Knife Kill No"
+ },
+ "5605": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 326,
+ "gameTypeId": 5,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 To Score Ace Yes"
+ },
+ "5606": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 326,
+ "gameTypeId": 5,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 To Score Ace No"
+ },
+ "5607": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 -10.5"
+ },
+ "5608": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 10.5"
+ },
+ "5609": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Over 10.5"
+ },
+ "5610": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Under 10.5"
+ },
+ "5611": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 -10.5"
+ },
+ "5612": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 10.5"
+ },
+ "5613": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Over 10.5"
+ },
+ "5614": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Under 10.5"
+ },
+ "5615": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 252,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 188.5"
+ },
+ "5616": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 252,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 188.5"
+ },
+ "5617": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 251,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 188"
+ },
+ "5618": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 251,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 188"
+ },
+ "5619": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Map Team 1 H1 3.5"
+ },
+ "5620": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Map Team 2 H2 -3.5"
+ },
+ "5621": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 35.5"
+ },
+ "5622": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 35.5"
+ },
+ "5623": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 9"
+ },
+ "5624": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 9"
+ },
+ "5625": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 4.5"
+ },
+ "5626": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 4.5"
+ },
+ "5627": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 60.5"
+ },
+ "5628": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 60.5"
+ },
+ "5629": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 23.5"
+ },
+ "5630": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -23.5"
+ },
+ "5631": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 24.5"
+ },
+ "5632": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -24.5"
+ },
+ "5633": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 22.5"
+ },
+ "5634": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -22.5"
+ },
+ "5635": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 23"
+ },
+ "5636": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 427,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -23"
+ },
+ "5637": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 24"
+ },
+ "5638": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 432,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -24"
+ },
+ "5639": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 15.5"
+ },
+ "5640": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 15.5"
+ },
+ "5641": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 39.5"
+ },
+ "5642": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 39.5"
+ },
+ "5643": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 11.5"
+ },
+ "5644": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -11.5"
+ },
+ "5645": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 11"
+ },
+ "5646": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -11"
+ },
+ "5647": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 12"
+ },
+ "5648": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -12"
+ },
+ "5649": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Over 7.5"
+ },
+ "5650": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Goal Team 1 Under 7.5"
+ },
+ "5651": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Over 19.5"
+ },
+ "5652": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Under 19.5"
+ },
+ "5653": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 21.5"
+ },
+ "5654": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -21.5"
+ },
+ "5655": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 22"
+ },
+ "5656": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 430,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -22"
+ },
+ "5657": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 16.5"
+ },
+ "5658": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 16.5"
+ },
+ "5659": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 10.5"
+ },
+ "5660": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -10.5"
+ },
+ "5661": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 29.5"
+ },
+ "5662": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 29.5"
+ },
+ "5663": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 12.5"
+ },
+ "5664": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -12.5"
+ },
+ "5665": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 25"
+ },
+ "5666": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 41,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -25"
+ },
+ "5667": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 21"
+ },
+ "5668": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 40,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -21"
+ },
+ "5669": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 59.5"
+ },
+ "5670": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 59.5"
+ },
+ "5671": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 133,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 124"
+ },
+ "5672": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 133,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 124"
+ },
+ "5673": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 128,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 121.5"
+ },
+ "5674": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 128,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 121.5"
+ },
+ "5675": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 129,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 122"
+ },
+ "5676": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 129,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 122"
+ },
+ "5677": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 130,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 122.5"
+ },
+ "5678": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 130,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 122.5"
+ },
+ "5679": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 131,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 123"
+ },
+ "5680": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 131,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 123"
+ },
+ "5681": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 132,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 123.5"
+ },
+ "5682": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 132,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 123.5"
+ },
+ "5683": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 134,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 124.5"
+ },
+ "5684": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 134,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 124.5"
+ },
+ "5685": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 135,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 125"
+ },
+ "5686": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 135,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 125"
+ },
+ "5687": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 136,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 125.5"
+ },
+ "5688": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 136,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 125.5"
+ },
+ "5689": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 137,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 126"
+ },
+ "5690": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 137,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 126"
+ },
+ "5691": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 138,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 126.5"
+ },
+ "5692": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 138,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 126.5"
+ },
+ "5693": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 54.5"
+ },
+ "5694": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 54.5"
+ },
+ "5695": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 59.5"
+ },
+ "5696": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 59.5"
+ },
+ "5697": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 25.5"
+ },
+ "5698": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 25.5"
+ },
+ "5699": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 508,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 127.5"
+ },
+ "5700": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 508,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 127.5"
+ },
+ "5701": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 65.5"
+ },
+ "5702": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 65.5"
+ },
+ "5703": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 87,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 104"
+ },
+ "5704": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 87,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 104"
+ },
+ "5705": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 82,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 101.5"
+ },
+ "5706": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 82,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 101.5"
+ },
+ "5707": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 83,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 102"
+ },
+ "5708": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 83,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 102"
+ },
+ "5709": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 84,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 102.5"
+ },
+ "5710": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 84,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 102.5"
+ },
+ "5711": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 85,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 103"
+ },
+ "5712": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 85,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 103"
+ },
+ "5713": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 86,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 103.5"
+ },
+ "5714": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 86,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 103.5"
+ },
+ "5715": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 88,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 104.5"
+ },
+ "5716": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 88,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 104.5"
+ },
+ "5717": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 89,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 105"
+ },
+ "5718": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 89,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 105"
+ },
+ "5719": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 90,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 105.5"
+ },
+ "5720": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 90,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 105.5"
+ },
+ "5721": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 91,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 106"
+ },
+ "5722": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 91,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 106"
+ },
+ "5723": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 92,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 106.5"
+ },
+ "5724": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 92,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 106.5"
+ },
+ "5725": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 49.5"
+ },
+ "5726": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 49.5"
+ },
+ "5727": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 48.5"
+ },
+ "5728": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 48.5"
+ },
+ "5729": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 49"
+ },
+ "5730": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 49"
+ },
+ "5731": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 50"
+ },
+ "5732": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 50"
+ },
+ "5733": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 50.5"
+ },
+ "5734": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 50.5"
+ },
+ "5735": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 93,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 107"
+ },
+ "5736": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 93,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 107"
+ },
+ "5737": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 95,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 107.5"
+ },
+ "5738": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 95,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 107.5"
+ },
+ "5739": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 97,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 108"
+ },
+ "5740": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 97,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 108"
+ },
+ "5741": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 55.5"
+ },
+ "5742": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 55.5"
+ },
+ "5743": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 51"
+ },
+ "5744": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 51"
+ },
+ "5745": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 51.5"
+ },
+ "5746": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 51.5"
+ },
+ "5747": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 26.5"
+ },
+ "5748": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 26.5"
+ },
+ "5749": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 99,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 109"
+ },
+ "5750": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 99,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 109"
+ },
+ "5751": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 98,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 108.5"
+ },
+ "5752": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 98,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 108.5"
+ },
+ "5753": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 58.5"
+ },
+ "5754": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 58.5"
+ },
+ "5755": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 52"
+ },
+ "5756": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 52"
+ },
+ "5757": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 27.5"
+ },
+ "5758": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 27.5"
+ },
+ "5759": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 56.5"
+ },
+ "5760": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 56.5"
+ },
+ "5761": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 47.5"
+ },
+ "5762": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 47.5"
+ },
+ "5763": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 242,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 183.5"
+ },
+ "5764": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 242,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 183.5"
+ },
+ "5765": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 50.5"
+ },
+ "5766": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 50.5"
+ },
+ "5767": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 62.5"
+ },
+ "5768": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 62.5"
+ },
+ "5769": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 11.5"
+ },
+ "5770": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 -11.5"
+ },
+ "5771": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 14.5"
+ },
+ "5772": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -14.5"
+ },
+ "5773": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 37.5"
+ },
+ "5774": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 37.5"
+ },
+ "5775": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 38.5"
+ },
+ "5776": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 38.5"
+ },
+ "5777": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Over 18.5"
+ },
+ "5778": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Under 18.5"
+ },
+ "5779": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -16.5"
+ },
+ "5780": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 16.5"
+ },
+ "5781": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 57.5"
+ },
+ "5782": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 57.5"
+ },
+ "5783": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 53.5"
+ },
+ "5784": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 53.5"
+ },
+ "5785": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 28.5"
+ },
+ "5786": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 28.5"
+ },
+ "5787": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 6"
+ },
+ "5788": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 6"
+ },
+ "5789": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 64.5"
+ },
+ "5790": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 64.5"
+ },
+ "5791": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 65"
+ },
+ "5792": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 65"
+ },
+ "5793": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 32"
+ },
+ "5794": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 32"
+ },
+ "5795": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 6"
+ },
+ "5796": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 6"
+ },
+ "5797": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 65.5"
+ },
+ "5798": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 65.5"
+ },
+ "5799": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 59,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -32.5"
+ },
+ "5800": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 32.5"
+ },
+ "5801": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 58,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -32"
+ },
+ "5802": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 32"
+ },
+ "5803": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 139,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 127"
+ },
+ "5804": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 139,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 127"
+ },
+ "5805": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 33.5"
+ },
+ "5806": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 33.5"
+ },
+ "5807": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 44.5"
+ },
+ "5808": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 485,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -44.5"
+ },
+ "5809": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 45"
+ },
+ "5810": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 484,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -45"
+ },
+ "5811": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 45.5"
+ },
+ "5812": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 483,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -45.5"
+ },
+ "5813": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 56.5"
+ },
+ "5814": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 56.5"
+ },
+ "5815": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 38"
+ },
+ "5816": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 38"
+ },
+ "5817": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 12"
+ },
+ "5818": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -12"
+ },
+ "5819": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 16.5"
+ },
+ "5820": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 16.5"
+ },
+ "5821": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 39.5"
+ },
+ "5822": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 39.5"
+ },
+ "5823": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 8.5"
+ },
+ "5824": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 8.5"
+ },
+ "5825": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 33.5"
+ },
+ "5826": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 33.5"
+ },
+ "5827": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 31.5"
+ },
+ "5828": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 31.5"
+ },
+ "5829": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 21.5"
+ },
+ "5830": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 21.5"
+ },
+ "5831": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 50,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -29.5"
+ },
+ "5832": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 29.5"
+ },
+ "5833": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 49,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -29"
+ },
+ "5834": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 29"
+ },
+ "5835": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 48,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -28.5"
+ },
+ "5836": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 28.5"
+ },
+ "5837": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 35.5"
+ },
+ "5838": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 35.5"
+ },
+ "5839": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 46.5"
+ },
+ "5840": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 46.5"
+ },
+ "5841": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -17.5"
+ },
+ "5842": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 17.5"
+ },
+ "5843": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 27,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -17"
+ },
+ "5844": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 17"
+ },
+ "5845": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 24.5"
+ },
+ "5846": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 24.5"
+ },
+ "5847": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 10.5"
+ },
+ "5848": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 10.5"
+ },
+ "5849": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 28.5"
+ },
+ "5850": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 28.5"
+ },
+ "5851": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 10.5"
+ },
+ "5852": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 10.5"
+ },
+ "5853": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 8.5"
+ },
+ "5854": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -8.5"
+ },
+ "5855": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 8.5"
+ },
+ "5856": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 8.5"
+ },
+ "5857": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 371,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 71"
+ },
+ "5858": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 371,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 71"
+ },
+ "5859": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 71.5"
+ },
+ "5860": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 71.5"
+ },
+ "5861": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 37.5"
+ },
+ "5862": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 37.5"
+ },
+ "5863": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 15.5"
+ },
+ "5864": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 15.5"
+ },
+ "5865": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 50"
+ },
+ "5866": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 509,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -50"
+ },
+ "5867": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 37.5"
+ },
+ "5868": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 37.5"
+ },
+ "5869": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 48"
+ },
+ "5870": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 510,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -48"
+ },
+ "5871": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 49.5"
+ },
+ "5872": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 511,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -49.5"
+ },
+ "5873": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 50.5"
+ },
+ "5874": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 512,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -50.5"
+ },
+ "5875": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 51"
+ },
+ "5876": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 513,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -51"
+ },
+ "5877": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 51.5"
+ },
+ "5878": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 514,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -51.5"
+ },
+ "5879": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 52"
+ },
+ "5880": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 515,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -52"
+ },
+ "5881": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 7.5"
+ },
+ "5882": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 7.5"
+ },
+ "5883": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 31.5"
+ },
+ "5884": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 57,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -31.5"
+ },
+ "5885": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 30.5"
+ },
+ "5886": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 55,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -30.5"
+ },
+ "5887": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 31"
+ },
+ "5888": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 56,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -31"
+ },
+ "5889": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 32"
+ },
+ "5890": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 58,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -32"
+ },
+ "5891": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 32.5"
+ },
+ "5892": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 59,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -32.5"
+ },
+ "5893": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 33"
+ },
+ "5894": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 60,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -33"
+ },
+ "5895": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 33.5"
+ },
+ "5896": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 431,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -33.5"
+ },
+ "5897": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 0.5"
+ },
+ "5898": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 0.5"
+ },
+ "5899": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 13"
+ },
+ "5900": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -13"
+ },
+ "5901": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 78.5"
+ },
+ "5902": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 78.5"
+ },
+ "5903": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 38.5"
+ },
+ "5904": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 38.5"
+ },
+ "5905": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 52.5"
+ },
+ "5906": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 516,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -52.5"
+ },
+ "5907": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 53"
+ },
+ "5908": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 517,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -53"
+ },
+ "5909": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 8"
+ },
+ "5910": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -8"
+ },
+ "5911": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 16"
+ },
+ "5912": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 16"
+ },
+ "5913": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 5"
+ },
+ "5914": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 5"
+ },
+ "5915": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -8.5"
+ },
+ "5916": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 8.5"
+ },
+ "5917": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -8"
+ },
+ "5918": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 8"
+ },
+ "5919": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 15.5"
+ },
+ "5920": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 15.5"
+ },
+ "5921": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 4.5"
+ },
+ "5922": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 4.5"
+ },
+ "5923": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -9"
+ },
+ "5924": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 9"
+ },
+ "5925": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 61.5"
+ },
+ "5926": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 61.5"
+ },
+ "5927": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 77.5"
+ },
+ "5928": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 77.5"
+ },
+ "5929": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 34.5"
+ },
+ "5930": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 34.5"
+ },
+ "5931": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 33.5"
+ },
+ "5932": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 33.5"
+ },
+ "5933": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 4"
+ },
+ "5934": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 4"
+ },
+ "5935": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 15"
+ },
+ "5936": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 15"
+ },
+ "5937": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 32.5"
+ },
+ "5938": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 32.5"
+ },
+ "5939": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 66"
+ },
+ "5940": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 66"
+ },
+ "5941": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 245,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 185"
+ },
+ "5942": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 245,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 185"
+ },
+ "5943": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 55,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -30.5"
+ },
+ "5944": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 30.5"
+ },
+ "5945": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 57,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -31.5"
+ },
+ "5946": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 31.5"
+ },
+ "5947": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 54,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -30"
+ },
+ "5948": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 30"
+ },
+ "5949": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 56,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -31"
+ },
+ "5950": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 31"
+ },
+ "5951": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 61.5"
+ },
+ "5952": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 61.5"
+ },
+ "5953": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 33"
+ },
+ "5954": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 33"
+ },
+ "5955": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Over 7.5"
+ },
+ "5956": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Under 7.5"
+ },
+ "5957": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 38"
+ },
+ "5958": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 38"
+ },
+ "5959": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 78.5"
+ },
+ "5960": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 78.5"
+ },
+ "5961": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 17.5"
+ },
+ "5962": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -17.5"
+ },
+ "5963": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 16.5"
+ },
+ "5964": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -16.5"
+ },
+ "5965": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Over 2.5"
+ },
+ "5966": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Under 2.5"
+ },
+ "5967": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 7.5"
+ },
+ "5968": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 7.5"
+ },
+ "5969": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 8"
+ },
+ "5970": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 8"
+ },
+ "5971": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 7.5"
+ },
+ "5972": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 7.5"
+ },
+ "5973": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 6.5"
+ },
+ "5974": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 6.5"
+ },
+ "5975": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 24"
+ },
+ "5976": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 24"
+ },
+ "5977": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -14.5"
+ },
+ "5978": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 14.5"
+ },
+ "5979": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -25.5"
+ },
+ "5980": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 25.5"
+ },
+ "5981": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -26.5"
+ },
+ "5982": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 26.5"
+ },
+ "5983": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 80.5"
+ },
+ "5984": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 80.5"
+ },
+ "5985": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 79.5"
+ },
+ "5986": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 79.5"
+ },
+ "5987": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 79.5"
+ },
+ "5988": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 79.5"
+ },
+ "5989": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 7.5"
+ },
+ "5990": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -7.5"
+ },
+ "5991": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 53.5"
+ },
+ "5992": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 518,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 98.5"
+ },
+ "5993": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 24.5"
+ },
+ "5994": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 24.5"
+ },
+ "5995": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Over 8.5"
+ },
+ "5996": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Under 8.5"
+ },
+ "5997": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 72.5"
+ },
+ "5998": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 72.5"
+ },
+ "5999": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 375,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 73"
+ },
+ "6000": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 375,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 73"
+ },
+ "6001": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 16.5"
+ },
+ "6002": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 16.5"
+ },
+ "6003": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 17"
+ },
+ "6004": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 17"
+ },
+ "6005": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 17.5"
+ },
+ "6006": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 17.5"
+ },
+ "6007": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Over 8.5"
+ },
+ "6008": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Under 8.5"
+ },
+ "6009": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -7.5"
+ },
+ "6010": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 7.5"
+ },
+ "6011": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -7"
+ },
+ "6012": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 7"
+ },
+ "6013": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 18.5"
+ },
+ "6014": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 18.5"
+ },
+ "6015": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 21"
+ },
+ "6016": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 21"
+ },
+ "6017": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -10.5"
+ },
+ "6018": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 10.5"
+ },
+ "6019": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -10"
+ },
+ "6020": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 10"
+ },
+ "6021": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 8.5"
+ },
+ "6022": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 8.5"
+ },
+ "6023": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 18"
+ },
+ "6024": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 18"
+ },
+ "6025": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -8"
+ },
+ "6026": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 8"
+ },
+ "6027": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 18"
+ },
+ "6028": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 18"
+ },
+ "6029": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 39.5"
+ },
+ "6030": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 39.5"
+ },
+ "6031": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 66.5"
+ },
+ "6032": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 66.5"
+ },
+ "6033": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 79.5"
+ },
+ "6034": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 79.5"
+ },
+ "6035": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -27.5"
+ },
+ "6036": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 27.5"
+ },
+ "6037": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 35.5"
+ },
+ "6038": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 35.5"
+ },
+ "6039": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -26.5"
+ },
+ "6040": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 26.5"
+ },
+ "6041": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -27.5"
+ },
+ "6042": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 27.5"
+ },
+ "6043": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 48,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -28.5"
+ },
+ "6044": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 28.5"
+ },
+ "6045": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 48,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -28.5"
+ },
+ "6046": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 28.5"
+ },
+ "6047": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -27.5"
+ },
+ "6048": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 27.5"
+ },
+ "6049": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 9"
+ },
+ "6050": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 9"
+ },
+ "6051": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 9.5"
+ },
+ "6052": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 9.5"
+ },
+ "6053": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 33"
+ },
+ "6054": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 33"
+ },
+ "6055": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 22.5"
+ },
+ "6056": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 22.5"
+ },
+ "6057": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 40"
+ },
+ "6058": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 40"
+ },
+ "6059": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 36.5"
+ },
+ "6060": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 36.5"
+ },
+ "6061": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 38"
+ },
+ "6062": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 38"
+ },
+ "6063": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 38.5"
+ },
+ "6064": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 38.5"
+ },
+ "6065": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -14.5"
+ },
+ "6066": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 14.5"
+ },
+ "6067": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -15.5"
+ },
+ "6068": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 15.5"
+ },
+ "6069": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 26.5"
+ },
+ "6070": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 26.5"
+ },
+ "6071": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 39.5"
+ },
+ "6072": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 39.5"
+ },
+ "6073": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 63.5"
+ },
+ "6074": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 63.5"
+ },
+ "6075": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 39.5"
+ },
+ "6076": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 39.5"
+ },
+ "6077": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 63.5"
+ },
+ "6078": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 63.5"
+ },
+ "6079": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -15.5"
+ },
+ "6080": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 15.5"
+ },
+ "6081": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 38.5"
+ },
+ "6082": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 38.5"
+ },
+ "6083": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 62.5"
+ },
+ "6084": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 62.5"
+ },
+ "6085": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 38.5"
+ },
+ "6086": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 38.5"
+ },
+ "6087": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 62.5"
+ },
+ "6088": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 62.5"
+ },
+ "6089": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 19.5"
+ },
+ "6090": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 19.5"
+ },
+ "6091": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 19.5"
+ },
+ "6092": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 19.5"
+ },
+ "6093": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Over 36"
+ },
+ "6094": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Under 36"
+ },
+ "6095": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Over 36"
+ },
+ "6096": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Under 36"
+ },
+ "6097": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 57.5"
+ },
+ "6098": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 57.5"
+ },
+ "6099": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 36"
+ },
+ "6100": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 36"
+ },
+ "6101": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 8.5"
+ },
+ "6102": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -8.5"
+ },
+ "6103": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Corner Team 1 Over 4.5"
+ },
+ "6104": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Corner Team 1 Under 4.5"
+ },
+ "6105": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Corner Team 2 Over 4.5"
+ },
+ "6106": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Corner Team 2 Under 4.5"
+ },
+ "6107": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 34"
+ },
+ "6108": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 477,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -34"
+ },
+ "6109": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 34.5"
+ },
+ "6110": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 476,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -34.5"
+ },
+ "6111": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 15"
+ },
+ "6112": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -15"
+ },
+ "6113": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Corner Team 2 Over 3.5"
+ },
+ "6114": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Corner Team 2 Under 3.5"
+ },
+ "6115": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 20.5"
+ },
+ "6116": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 20.5"
+ },
+ "6117": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Over 1.5"
+ },
+ "6118": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Under 1.5"
+ },
+ "6119": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 73.5"
+ },
+ "6120": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 73.5"
+ },
+ "6121": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 377,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 74"
+ },
+ "6122": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 377,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 74"
+ },
+ "6123": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -17.5"
+ },
+ "6124": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 17.5"
+ },
+ "6125": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -8.5"
+ },
+ "6126": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 8.5"
+ },
+ "6127": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 58.5"
+ },
+ "6128": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 58.5"
+ },
+ "6129": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 32.5"
+ },
+ "6130": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 32.5"
+ },
+ "6131": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 56.5"
+ },
+ "6132": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 56.5"
+ },
+ "6133": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 57.5"
+ },
+ "6134": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 57.5"
+ },
+ "6135": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 59.5"
+ },
+ "6136": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 59.5"
+ },
+ "6137": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 60.5"
+ },
+ "6138": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 60.5"
+ },
+ "6139": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 61.5"
+ },
+ "6140": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 61.5"
+ },
+ "6141": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 58.5"
+ },
+ "6142": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 58.5"
+ },
+ "6143": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 54.5"
+ },
+ "6144": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 54.5"
+ },
+ "6145": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 55.5"
+ },
+ "6146": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 55.5"
+ },
+ "6147": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 56.5"
+ },
+ "6148": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 56.5"
+ },
+ "6149": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 57.5"
+ },
+ "6150": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 57.5"
+ },
+ "6151": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 59.5"
+ },
+ "6152": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 59.5"
+ },
+ "6153": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 32.5"
+ },
+ "6154": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 32.5"
+ },
+ "6155": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 26.5"
+ },
+ "6156": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 26.5"
+ },
+ "6157": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 31.5"
+ },
+ "6158": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 31.5"
+ },
+ "6159": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 31.5"
+ },
+ "6160": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 31.5"
+ },
+ "6161": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 26.5"
+ },
+ "6162": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 26.5"
+ },
+ "6163": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 75.5"
+ },
+ "6164": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 75.5"
+ },
+ "6165": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 76.5"
+ },
+ "6166": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 76.5"
+ },
+ "6167": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -16.5"
+ },
+ "6168": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 16.5"
+ },
+ "6169": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 32.5"
+ },
+ "6170": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 32.5"
+ },
+ "6171": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 32.5"
+ },
+ "6172": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 32.5"
+ },
+ "6173": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 19.5"
+ },
+ "6174": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -19.5"
+ },
+ "6175": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 18.5"
+ },
+ "6176": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -18.5"
+ },
+ "6177": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 73.5"
+ },
+ "6178": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 73.5"
+ },
+ "6179": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 73.5"
+ },
+ "6180": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 73.5"
+ },
+ "6181": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 74.5"
+ },
+ "6182": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 74.5"
+ },
+ "6183": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 74.5"
+ },
+ "6184": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 74.5"
+ },
+ "6185": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -16.5"
+ },
+ "6186": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 16.5"
+ },
+ "6187": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 243,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 184"
+ },
+ "6188": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 243,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 184"
+ },
+ "6189": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 244,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 184.5"
+ },
+ "6190": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 244,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 184.5"
+ },
+ "6191": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 248,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 186.5"
+ },
+ "6192": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 248,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 186.5"
+ },
+ "6193": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 247,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 186"
+ },
+ "6194": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 247,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 186"
+ },
+ "6195": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 250,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 187.5"
+ },
+ "6196": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 250,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 187.5"
+ },
+ "6197": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 30.5"
+ },
+ "6198": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 30.5"
+ },
+ "6199": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 29.5"
+ },
+ "6200": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 29.5"
+ },
+ "6201": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 30.5"
+ },
+ "6202": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 30.5"
+ },
+ "6203": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 28.5"
+ },
+ "6204": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 28.5"
+ },
+ "6205": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 27.5"
+ },
+ "6206": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 27.5"
+ },
+ "6207": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 40.5"
+ },
+ "6208": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 482,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -40.5"
+ },
+ "6209": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 82,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 101.5"
+ },
+ "6210": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 82,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 101.5"
+ },
+ "6211": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 50.5"
+ },
+ "6212": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 50.5"
+ },
+ "6213": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 492,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 97.5"
+ },
+ "6214": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 492,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 97.5"
+ },
+ "6215": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 27.5"
+ },
+ "6216": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 27.5"
+ },
+ "6217": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 72.5"
+ },
+ "6218": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 72.5"
+ },
+ "6219": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 39.5"
+ },
+ "6220": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 39.5"
+ },
+ "6221": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 74.5"
+ },
+ "6222": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 74.5"
+ },
+ "6223": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 379,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 75"
+ },
+ "6224": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 379,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 75"
+ },
+ "6225": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 80,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 100.5"
+ },
+ "6226": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 80,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 100.5"
+ },
+ "6227": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 24.5"
+ },
+ "6228": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 24.5"
+ },
+ "6229": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 17.5"
+ },
+ "6230": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 17.5"
+ },
+ "6231": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Over 8.5"
+ },
+ "6232": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Game Team 1 H1 1.5"
+ },
+ "6233": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Game Team 2 H2 -1.5"
+ },
+ "6234": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Game Team 1 H1 -3.5"
+ },
+ "6235": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Game Team 2 H2 3.5"
+ },
+ "6236": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Game Team 1 H1 -1.5"
+ },
+ "6237": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Game Team 2 H2 1.5"
+ },
+ "6238": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Game Team 1 H1 3.5"
+ },
+ "6239": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Game Team 2 H2 -3.5"
+ },
+ "6240": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Game Over 8.5"
+ },
+ "6241": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Game Under 8.5"
+ },
+ "6242": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Game Over 10.5"
+ },
+ "6243": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Game Under 10.5"
+ },
+ "6244": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Game Over 12.5"
+ },
+ "6245": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Game Under 12.5"
+ },
+ "6246": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Game Team 1 H1 -0.5"
+ },
+ "6247": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Game Team 2 H2 0.5"
+ },
+ "6248": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Game Team 1 H1 -2.5"
+ },
+ "6249": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Game Team 2 H2 2.5"
+ },
+ "6250": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Game Team 1 H1 -1.5"
+ },
+ "6251": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Game Team 2 H2 1.5"
+ },
+ "6252": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Game Team 1 H1 1.5"
+ },
+ "6253": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Game Team 2 H2 -1.5"
+ },
+ "6254": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Game Over 9.5"
+ },
+ "6255": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Game Under 9.5"
+ },
+ "6256": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Game Over 6.5"
+ },
+ "6257": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Game Under 6.5"
+ },
+ "6258": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Game Over 7.5"
+ },
+ "6259": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Game Under 7.5"
+ },
+ "6260": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Game Over 8.5"
+ },
+ "6261": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Game Under 8.5"
+ },
+ "6262": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Game Over 10.5"
+ },
+ "6263": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Game Under 10.5"
+ },
+ "6264": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Game Over 12.5"
+ },
+ "6265": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Game Under 12.5"
+ },
+ "6266": {
+ "selectionId": 4,
+ "marketId": 2,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Double chance Goal 1X"
+ },
+ "6267": {
+ "selectionId": 6,
+ "marketId": 2,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Double chance Goal 2X"
+ },
+ "6268": {
+ "selectionId": 5,
+ "marketId": 2,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Double chance Goal 12"
+ },
+ "6269": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 8.5"
+ },
+ "6270": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 8.5"
+ },
+ "6271": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 2.5"
+ },
+ "6272": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 2.5"
+ },
+ "6273": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Set Team 1 Over 1.5"
+ },
+ "6274": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Set Team 1 Under 1.5"
+ },
+ "6275": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Set Team 2 Over 1.5"
+ },
+ "6276": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Set Team 2 Under 1.5"
+ },
+ "6277": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Over 3.5"
+ },
+ "6278": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Under 3.5"
+ },
+ "6279": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 12.5"
+ },
+ "6280": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -12.5"
+ },
+ "6281": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 13.5"
+ },
+ "6282": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -13.5"
+ },
+ "6283": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 518,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 98.5"
+ },
+ "6284": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 518,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 98.5"
+ },
+ "6285": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 -1.5"
+ },
+ "6286": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 1.5"
+ },
+ "6287": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 5.5"
+ },
+ "6288": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 5.5"
+ },
+ "6289": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Goal Team 1 Over 3.5"
+ },
+ "6290": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Goal Team 1 Under 3.5"
+ },
+ "6291": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Over 2.5"
+ },
+ "6292": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Under 2.5"
+ },
+ "6293": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Goal Team 1 Over 5.5"
+ },
+ "6294": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Goal Team 1 Under 5.5"
+ },
+ "6295": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Over 1.5"
+ },
+ "6296": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Under 1.5"
+ },
+ "6297": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Goal Team 1 Over 4.5"
+ },
+ "6298": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Goal Team 1 Under 4.5"
+ },
+ "6299": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 519,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 197.5"
+ },
+ "6300": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 519,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 197.5"
+ },
+ "6301": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 487,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 94.5"
+ },
+ "6302": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 487,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 94.5"
+ },
+ "6303": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 14"
+ },
+ "6304": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -14"
+ },
+ "6305": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Over 5.5"
+ },
+ "6306": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Under 5.5"
+ },
+ "6307": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Goal Team 1 Over 0.5"
+ },
+ "6308": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Goal Team 1 Under 0.5"
+ },
+ "6309": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 30"
+ },
+ "6310": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 30"
+ },
+ "6311": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 8"
+ },
+ "6312": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 8"
+ },
+ "6313": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 10.5"
+ },
+ "6314": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -10.5"
+ },
+ "6315": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 12"
+ },
+ "6316": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -12"
+ },
+ "6317": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 11"
+ },
+ "6318": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -11"
+ },
+ "6319": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 13"
+ },
+ "6320": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -13"
+ },
+ "6321": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 11.5"
+ },
+ "6322": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -11.5"
+ },
+ "6323": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Over 2.5"
+ },
+ "6324": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Under 2.5"
+ },
+ "6325": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 9.5"
+ },
+ "6326": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -9.5"
+ },
+ "6327": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 10"
+ },
+ "6328": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -10"
+ },
+ "6329": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 32.5"
+ },
+ "6330": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 32.5"
+ },
+ "6331": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 33.5"
+ },
+ "6332": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 33.5"
+ },
+ "6333": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 43.5"
+ },
+ "6334": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 43.5"
+ },
+ "6335": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 44.5"
+ },
+ "6336": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 44.5"
+ },
+ "6337": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 54.5"
+ },
+ "6338": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 54.5"
+ },
+ "6339": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 45.5"
+ },
+ "6340": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 45.5"
+ },
+ "6341": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 22.5"
+ },
+ "6342": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 22.5"
+ },
+ "6343": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 55.5"
+ },
+ "6344": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 55.5"
+ },
+ "6345": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 34.5"
+ },
+ "6346": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 34.5"
+ },
+ "6347": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Over 19.5"
+ },
+ "6348": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Under 19.5"
+ },
+ "6349": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Over 8.5"
+ },
+ "6350": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Under 8.5"
+ },
+ "6351": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Over 19.5"
+ },
+ "6352": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Under 19.5"
+ },
+ "6353": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Over 8.5"
+ },
+ "6354": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Under 8.5"
+ },
+ "6355": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 480,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 99.5"
+ },
+ "6356": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 480,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 99.5"
+ },
+ "6357": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 31.5"
+ },
+ "6358": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 31.5"
+ },
+ "6359": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 15.5"
+ },
+ "6360": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -15.5"
+ },
+ "6361": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 49"
+ },
+ "6362": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 49"
+ },
+ "6363": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Under 6.5"
+ },
+ "6364": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Over 6.5"
+ },
+ "6365": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Under 6.5"
+ },
+ "6366": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Over 6.5"
+ },
+ "6367": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Under 6.5"
+ },
+ "6368": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 6.5"
+ },
+ "6369": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 -6.5"
+ },
+ "6370": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Over 7.5"
+ },
+ "6371": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Under 7.5"
+ },
+ "6372": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 6.5"
+ },
+ "6373": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 -6.5"
+ },
+ "6374": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Over 7.5"
+ },
+ "6375": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Under 7.5"
+ },
+ "6376": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 5.5"
+ },
+ "6377": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 5.5"
+ },
+ "6378": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 5"
+ },
+ "6379": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 5"
+ },
+ "6380": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 16"
+ },
+ "6381": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -16"
+ },
+ "6382": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 16.5"
+ },
+ "6383": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -16.5"
+ },
+ "6384": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 17"
+ },
+ "6385": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 27,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -17"
+ },
+ "6386": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 491,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 96.5"
+ },
+ "6387": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 491,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 96.5"
+ },
+ "6388": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 520,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 95"
+ },
+ "6389": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 520,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 95"
+ },
+ "6390": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 417,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 95.5"
+ },
+ "6391": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 417,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 95.5"
+ },
+ "6392": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 51.5"
+ },
+ "6393": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 51.5"
+ },
+ "6394": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 52.5"
+ },
+ "6395": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 52.5"
+ },
+ "6396": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -23.5"
+ },
+ "6397": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 23.5"
+ },
+ "6398": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 84,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 102.5"
+ },
+ "6399": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 84,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 102.5"
+ },
+ "6400": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 53.5"
+ },
+ "6401": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 53.5"
+ },
+ "6402": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 51.5"
+ },
+ "6403": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 51.5"
+ },
+ "6404": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 29.5"
+ },
+ "6405": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 29.5"
+ },
+ "6406": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1"
+ },
+ "6407": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2"
+ },
+ "6408": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 84,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 102.5"
+ },
+ "6409": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 84,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 102.5"
+ },
+ "6410": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 493,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -46.5"
+ },
+ "6411": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 46.5"
+ },
+ "6412": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 494,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -49"
+ },
+ "6413": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 49"
+ },
+ "6414": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 497,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -48.5"
+ },
+ "6415": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 48.5"
+ },
+ "6416": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 510,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -48"
+ },
+ "6417": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 48"
+ },
+ "6418": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 521,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -47.5"
+ },
+ "6419": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 47.5"
+ },
+ "6420": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 522,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -47"
+ },
+ "6421": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 47"
+ },
+ "6422": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 496,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -46"
+ },
+ "6423": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 46"
+ },
+ "6424": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 41,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -25"
+ },
+ "6425": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 25"
+ },
+ "6426": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 43,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -26"
+ },
+ "6427": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 26"
+ },
+ "6428": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -25.5"
+ },
+ "6429": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 25.5"
+ },
+ "6430": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -24.5"
+ },
+ "6431": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 24.5"
+ },
+ "6432": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 432,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -24"
+ },
+ "6433": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 24"
+ },
+ "6434": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -26.5"
+ },
+ "6435": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 26.5"
+ },
+ "6436": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 511,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -49.5"
+ },
+ "6437": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 49.5"
+ },
+ "6438": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 509,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -50"
+ },
+ "6439": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 50"
+ },
+ "6440": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Over 4.5"
+ },
+ "6441": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Under 4.5"
+ },
+ "6442": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 88,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 104.5"
+ },
+ "6443": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 88,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 104.5"
+ },
+ "6444": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 92,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 106.5"
+ },
+ "6445": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 92,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 106.5"
+ },
+ "6446": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 52.5"
+ },
+ "6447": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 52.5"
+ },
+ "6448": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 5"
+ },
+ "6449": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 -5"
+ },
+ "6450": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 5.5"
+ },
+ "6451": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 -5.5"
+ },
+ "6452": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 6"
+ },
+ "6453": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 -6"
+ },
+ "6454": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Goal Team 1 Over 1.5"
+ },
+ "6455": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Goal Team 1 Under 1.5"
+ },
+ "6456": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Over 6.5"
+ },
+ "6457": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Under 6.5"
+ },
+ "6458": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 6.5"
+ },
+ "6459": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 -6.5"
+ },
+ "6460": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 1.5"
+ },
+ "6461": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 -1.5"
+ },
+ "6462": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Over 8"
+ },
+ "6463": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Under 8"
+ },
+ "6464": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Over 4.5"
+ },
+ "6465": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Under 4.5"
+ },
+ "6466": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 24"
+ },
+ "6467": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 24"
+ },
+ "6468": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 80,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 100.5"
+ },
+ "6469": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 80,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 100.5"
+ },
+ "6470": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 67.5"
+ },
+ "6471": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 67.5"
+ },
+ "6472": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 361,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 67"
+ },
+ "6473": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 361,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 67"
+ },
+ "6474": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 363,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 68"
+ },
+ "6475": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 363,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 68"
+ },
+ "6476": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 68.5"
+ },
+ "6477": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 68.5"
+ },
+ "6478": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 365,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 69"
+ },
+ "6479": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 365,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 69"
+ },
+ "6480": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 40.5"
+ },
+ "6481": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 40.5"
+ },
+ "6482": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 33.5"
+ },
+ "6483": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 33.5"
+ },
+ "6484": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 34"
+ },
+ "6485": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 34"
+ },
+ "6486": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 34.5"
+ },
+ "6487": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 34.5"
+ },
+ "6488": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 9.5"
+ },
+ "6489": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 -9.5"
+ },
+ "6490": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 10.5"
+ },
+ "6491": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 -10.5"
+ },
+ "6492": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 518,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 98.5"
+ },
+ "6493": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 518,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 98.5"
+ },
+ "6494": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 34.5"
+ },
+ "6495": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 34.5"
+ },
+ "6496": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Over 3.5"
+ },
+ "6497": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Under 3.5"
+ },
+ "6498": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 7.5"
+ },
+ "6499": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 7.5"
+ },
+ "6500": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 7.5"
+ },
+ "6501": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 7.5"
+ },
+ "6502": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Over 3.5"
+ },
+ "6503": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Under 3.5"
+ },
+ "6504": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 9.5"
+ },
+ "6505": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 9.5"
+ },
+ "6506": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 34"
+ },
+ "6507": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 34"
+ },
+ "6508": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 19.5"
+ },
+ "6509": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 19.5"
+ },
+ "6510": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 -3.5"
+ },
+ "6511": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 3.5"
+ },
+ "6512": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 -5.5"
+ },
+ "6513": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 5.5"
+ },
+ "6514": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Goal Team 1 Over 6.5"
+ },
+ "6515": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Goal Team 1 Under 6.5"
+ },
+ "6516": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "1st Period Total Goal Over 3.5"
+ },
+ "6517": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "1st Period Total Goal Under 3.5"
+ },
+ "6518": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 3.5"
+ },
+ "6519": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 -3.5"
+ },
+ "6520": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 11.5"
+ },
+ "6521": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 11.5"
+ },
+ "6522": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 16.5"
+ },
+ "6523": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 16.5"
+ },
+ "6524": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 14.5"
+ },
+ "6525": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 14.5"
+ },
+ "6526": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 2.5"
+ },
+ "6527": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 2.5"
+ },
+ "6528": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 14.5"
+ },
+ "6529": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -14.5"
+ },
+ "6530": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 17"
+ },
+ "6531": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 17"
+ },
+ "6532": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Over 9.5"
+ },
+ "6533": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Run Team 2 Under 9.5"
+ },
+ "6534": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Over 6.5"
+ },
+ "6535": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Under 6.5"
+ },
+ "6536": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 36.5"
+ },
+ "6537": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 36.5"
+ },
+ "6538": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 5.5"
+ },
+ "6539": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 5.5"
+ },
+ "6540": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Over 6.5"
+ },
+ "6541": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Under 6.5"
+ },
+ "6542": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 17.5"
+ },
+ "6543": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 17.5"
+ },
+ "6544": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 17.5"
+ },
+ "6545": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 17.5"
+ },
+ "6546": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 37.5"
+ },
+ "6547": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 37.5"
+ },
+ "6548": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Over 1.5"
+ },
+ "6549": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Under 1.5"
+ },
+ "6550": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 49.5"
+ },
+ "6551": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 49.5"
+ },
+ "6552": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 38.5"
+ },
+ "6553": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 38.5"
+ },
+ "6554": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 15"
+ },
+ "6555": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -15"
+ },
+ "6556": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 15.5"
+ },
+ "6557": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 15.5"
+ },
+ "6558": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 12.5"
+ },
+ "6559": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 12.5"
+ },
+ "6560": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Over 6.5"
+ },
+ "6561": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Under 6.5"
+ },
+ "6562": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 86,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 103.5"
+ },
+ "6563": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 86,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 103.5"
+ },
+ "6564": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 523,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 97"
+ },
+ "6565": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 523,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 97"
+ },
+ "6566": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 7"
+ },
+ "6567": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -7"
+ },
+ "6568": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 14.5"
+ },
+ "6569": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 14.5"
+ },
+ "6570": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 88,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 104.5"
+ },
+ "6571": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 88,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 104.5"
+ },
+ "6572": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1"
+ },
+ "6573": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2"
+ },
+ "6574": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 18.5"
+ },
+ "6575": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 18.5"
+ },
+ "6576": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Goal Team 1 Over 2.5"
+ },
+ "6577": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Goal Team 1 Under 2.5"
+ },
+ "6578": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 6.5"
+ },
+ "6579": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 6.5"
+ },
+ "6580": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 5.5"
+ },
+ "6581": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 5.5"
+ },
+ "6582": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 59.5"
+ },
+ "6583": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 59.5"
+ },
+ "6584": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 8.5"
+ },
+ "6585": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -8.5"
+ },
+ "6586": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 9"
+ },
+ "6587": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -9"
+ },
+ "6588": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 41"
+ },
+ "6589": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 41"
+ },
+ "6590": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 41.5"
+ },
+ "6591": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 41.5"
+ },
+ "6592": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 17"
+ },
+ "6593": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 17"
+ },
+ "6594": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 6.5"
+ },
+ "6595": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 6.5"
+ },
+ "6596": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Over 9.5"
+ },
+ "6597": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Under 9.5"
+ },
+ "6598": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Over 9.5"
+ },
+ "6599": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Under 9.5"
+ },
+ "6600": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Over 10.5"
+ },
+ "6601": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Under 10.5"
+ },
+ "6602": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Over 10.5"
+ },
+ "6603": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Under 10.5"
+ },
+ "6604": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 54.5"
+ },
+ "6605": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 54.5"
+ },
+ "6606": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 82,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 101.5"
+ },
+ "6607": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 82,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 101.5"
+ },
+ "6608": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 90,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 105.5"
+ },
+ "6609": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 90,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 105.5"
+ },
+ "6610": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 15.5"
+ },
+ "6611": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -15.5"
+ },
+ "6612": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 35"
+ },
+ "6613": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 35"
+ },
+ "6614": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 43.5"
+ },
+ "6615": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 43.5"
+ },
+ "6616": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 42"
+ },
+ "6617": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 42"
+ },
+ "6618": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 42.5"
+ },
+ "6619": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 42.5"
+ },
+ "6620": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 43"
+ },
+ "6621": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 43"
+ },
+ "6622": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 44"
+ },
+ "6623": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 44"
+ },
+ "6624": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 44.5"
+ },
+ "6625": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 44.5"
+ },
+ "6626": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 45"
+ },
+ "6627": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 45"
+ },
+ "6628": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 21.5"
+ },
+ "6629": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 21.5"
+ },
+ "6630": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 20"
+ },
+ "6631": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 20"
+ },
+ "6632": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 20.5"
+ },
+ "6633": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 20.5"
+ },
+ "6634": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 21"
+ },
+ "6635": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 21"
+ },
+ "6636": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 22"
+ },
+ "6637": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 22"
+ },
+ "6638": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 22.5"
+ },
+ "6639": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 22.5"
+ },
+ "6640": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 126,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 120.5"
+ },
+ "6641": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 126,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 120.5"
+ },
+ "6642": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 127,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 121"
+ },
+ "6643": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 127,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 121"
+ },
+ "6644": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 19"
+ },
+ "6645": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 19"
+ },
+ "6646": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 16"
+ },
+ "6647": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -16"
+ },
+ "6648": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 61"
+ },
+ "6649": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 61"
+ },
+ "6650": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 39.5"
+ },
+ "6651": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 39.5"
+ },
+ "6652": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 17.5"
+ },
+ "6653": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 17.5"
+ },
+ "6654": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 16.5"
+ },
+ "6655": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -16.5"
+ },
+ "6656": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 17"
+ },
+ "6657": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 27,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -17"
+ },
+ "6658": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 4.5"
+ },
+ "6659": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 4.5"
+ },
+ "6660": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 17.5"
+ },
+ "6661": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 17.5"
+ },
+ "6662": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 80.5"
+ },
+ "6663": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 80.5"
+ },
+ "6664": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 81.5"
+ },
+ "6665": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 81.5"
+ },
+ "6666": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 20.5"
+ },
+ "6667": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 20.5"
+ },
+ "6668": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 20.5"
+ },
+ "6669": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 20.5"
+ },
+ "6670": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 20.5"
+ },
+ "6671": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 20.5"
+ },
+ "6672": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 21.5"
+ },
+ "6673": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 21.5"
+ },
+ "6674": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 80.5"
+ },
+ "6675": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 80.5"
+ },
+ "6676": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 81.5"
+ },
+ "6677": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 81.5"
+ },
+ "6678": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 83.5"
+ },
+ "6679": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 83.5"
+ },
+ "6680": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 22.5"
+ },
+ "6681": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 22.5"
+ },
+ "6682": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 82.5"
+ },
+ "6683": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 82.5"
+ },
+ "6684": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 21.5"
+ },
+ "6685": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 21.5"
+ },
+ "6686": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 25"
+ },
+ "6687": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 25"
+ },
+ "6688": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 25.5"
+ },
+ "6689": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 25.5"
+ },
+ "6690": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 35.5"
+ },
+ "6691": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 35.5"
+ },
+ "6692": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 61.5"
+ },
+ "6693": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 61.5"
+ },
+ "6694": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 40.5"
+ },
+ "6695": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 40.5"
+ },
+ "6696": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Over 9.5"
+ },
+ "6697": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Under 9.5"
+ },
+ "6698": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 -5"
+ },
+ "6699": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 5"
+ },
+ "6700": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 32"
+ },
+ "6701": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 32"
+ },
+ "6702": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 63"
+ },
+ "6703": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 63"
+ },
+ "6704": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 63.5"
+ },
+ "6705": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 63.5"
+ },
+ "6706": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 17.5"
+ },
+ "6707": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -17.5"
+ },
+ "6708": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 35.5"
+ },
+ "6709": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 35.5"
+ },
+ "6710": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 3"
+ },
+ "6711": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 3"
+ },
+ "6712": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 3.5"
+ },
+ "6713": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 3.5"
+ },
+ "6714": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 1"
+ },
+ "6715": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 1"
+ },
+ "6716": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 18"
+ },
+ "6717": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 29,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -18"
+ },
+ "6718": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 4"
+ },
+ "6719": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 4"
+ },
+ "6720": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 40.5"
+ },
+ "6721": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 40.5"
+ },
+ "6722": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 487,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 94.5"
+ },
+ "6723": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 487,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 94.5"
+ },
+ "6724": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 416,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 93.5"
+ },
+ "6725": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 416,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 93.5"
+ },
+ "6726": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 35.5"
+ },
+ "6727": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 35.5"
+ },
+ "6728": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 18.5"
+ },
+ "6729": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -18.5"
+ },
+ "6730": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 30.5"
+ },
+ "6731": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 30.5"
+ },
+ "6732": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 16.5"
+ },
+ "6733": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 16.5"
+ },
+ "6734": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 27.5"
+ },
+ "6735": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 27.5"
+ },
+ "6736": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 28.5"
+ },
+ "6737": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 28.5"
+ },
+ "6738": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -9.5"
+ },
+ "6739": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 9.5"
+ },
+ "6740": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 65.5"
+ },
+ "6741": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 65.5"
+ },
+ "6742": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 36.5"
+ },
+ "6743": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 36.5"
+ },
+ "6744": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 36.5"
+ },
+ "6745": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 36.5"
+ },
+ "6746": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 36.5"
+ },
+ "6747": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 36.5"
+ },
+ "6748": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 37.5"
+ },
+ "6749": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 37.5"
+ },
+ "6750": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 37.5"
+ },
+ "6751": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 37.5"
+ },
+ "6752": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 37.5"
+ },
+ "6753": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 37.5"
+ },
+ "6754": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 14.5"
+ },
+ "6755": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 14.5"
+ },
+ "6756": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 3.5"
+ },
+ "6757": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 3.5"
+ },
+ "6758": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 53.5"
+ },
+ "6759": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 53.5"
+ },
+ "6760": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 22.5"
+ },
+ "6761": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -22.5"
+ },
+ "6762": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 23.5"
+ },
+ "6763": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -23.5"
+ },
+ "6764": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 34.5"
+ },
+ "6765": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 34.5"
+ },
+ "6766": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 7.5"
+ },
+ "6767": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 7.5"
+ },
+ "6768": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 24.5"
+ },
+ "6769": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -24.5"
+ },
+ "6770": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Kill Over 49.5"
+ },
+ "6771": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Kill Under 49.5"
+ },
+ "6772": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 32.5"
+ },
+ "6773": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 32.5"
+ },
+ "6774": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 33.5"
+ },
+ "6775": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 33.5"
+ },
+ "6776": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 524,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -58.5"
+ },
+ "6777": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 58.5"
+ },
+ "6778": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 81.5"
+ },
+ "6779": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 81.5"
+ },
+ "6780": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 82.5"
+ },
+ "6781": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 82.5"
+ },
+ "6782": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 38.5"
+ },
+ "6783": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 38.5"
+ },
+ "6784": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 4.5"
+ },
+ "6785": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 4.5"
+ },
+ "6786": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 3.5"
+ },
+ "6787": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 3.5"
+ },
+ "6788": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 12.5"
+ },
+ "6789": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -12.5"
+ },
+ "6790": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 13.5"
+ },
+ "6791": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -13.5"
+ },
+ "6792": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 14.5"
+ },
+ "6793": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -14.5"
+ },
+ "6794": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 7.5"
+ },
+ "6795": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 7.5"
+ },
+ "6796": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -23.5"
+ },
+ "6797": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 23.5"
+ },
+ "6798": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 33.5"
+ },
+ "6799": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 33.5"
+ },
+ "6800": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 33.5"
+ },
+ "6801": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 33.5"
+ },
+ "6802": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Over 8.5"
+ },
+ "6803": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Under 8.5"
+ },
+ "6804": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Over 8.5"
+ },
+ "6805": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Under 8.5"
+ },
+ "6806": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Over 9.5"
+ },
+ "6807": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Under 9.5"
+ },
+ "6808": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 41,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -25"
+ },
+ "6809": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 25"
+ },
+ "6810": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -24.5"
+ },
+ "6811": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 24.5"
+ },
+ "6812": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 432,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -24"
+ },
+ "6813": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 24"
+ },
+ "6814": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Over 9.5"
+ },
+ "6815": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Under 9.5"
+ },
+ "6816": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 34.5"
+ },
+ "6817": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 34.5"
+ },
+ "6818": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 34.5"
+ },
+ "6819": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 34.5"
+ },
+ "6820": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 35.5"
+ },
+ "6821": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 35.5"
+ },
+ "6822": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 35.5"
+ },
+ "6823": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 35.5"
+ },
+ "6824": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 35.5"
+ },
+ "6825": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 35.5"
+ },
+ "6826": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 525,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -62.5"
+ },
+ "6827": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 62.5"
+ },
+ "6828": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 526,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -64.5"
+ },
+ "6829": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 64.5"
+ },
+ "6830": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 6.5"
+ },
+ "6831": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 6.5"
+ },
+ "6832": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 36.5"
+ },
+ "6833": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 36.5"
+ },
+ "6834": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 20.5"
+ },
+ "6835": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -20.5"
+ },
+ "6836": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 527,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 198"
+ },
+ "6837": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 527,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 198"
+ },
+ "6838": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 69.5"
+ },
+ "6839": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 69.5"
+ },
+ "6840": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 5.5"
+ },
+ "6841": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 5.5"
+ },
+ "6842": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 19.5"
+ },
+ "6843": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -19.5"
+ },
+ "6844": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 21"
+ },
+ "6845": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 21"
+ },
+ "6846": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 6.5"
+ },
+ "6847": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 6.5"
+ },
+ "6848": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 50.5"
+ },
+ "6849": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 50.5"
+ },
+ "6850": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 52.5"
+ },
+ "6851": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 52.5"
+ },
+ "6852": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 82.5"
+ },
+ "6853": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 82.5"
+ },
+ "6854": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 6.5"
+ },
+ "6855": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 6.5"
+ },
+ "6856": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -25.5"
+ },
+ "6857": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 25.5"
+ },
+ "6858": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -18.5"
+ },
+ "6859": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 18.5"
+ },
+ "6860": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -17.5"
+ },
+ "6861": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 17.5"
+ },
+ "6862": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 71.5"
+ },
+ "6863": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 71.5"
+ },
+ "6864": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -17.5"
+ },
+ "6865": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 17.5"
+ },
+ "6866": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Over 37"
+ },
+ "6867": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Under 37"
+ },
+ "6868": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 528,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 400"
+ },
+ "6869": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 529,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -400"
+ },
+ "6870": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 6.5"
+ },
+ "6871": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 6.5"
+ },
+ "6872": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 42.5"
+ },
+ "6873": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 42.5"
+ },
+ "6874": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 59,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -32.5"
+ },
+ "6875": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 32.5"
+ },
+ "6876": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 19"
+ },
+ "6877": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 31,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -19"
+ },
+ "6878": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 20"
+ },
+ "6879": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 38,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -20"
+ },
+ "6880": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 20.5"
+ },
+ "6881": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -20.5"
+ },
+ "6882": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 21"
+ },
+ "6883": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 40,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -21"
+ },
+ "6884": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 37.5"
+ },
+ "6885": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 37.5"
+ },
+ "6886": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 36.5"
+ },
+ "6887": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 36.5"
+ },
+ "6888": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 83.5"
+ },
+ "6889": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 83.5"
+ },
+ "6890": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 84.5"
+ },
+ "6891": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 84.5"
+ },
+ "6892": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 39.5"
+ },
+ "6893": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 39.5"
+ },
+ "6894": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 85.5"
+ },
+ "6895": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 85.5"
+ },
+ "6896": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 41.5"
+ },
+ "6897": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 41.5"
+ },
+ "6898": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 42.5"
+ },
+ "6899": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 42.5"
+ },
+ "6900": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 40.5"
+ },
+ "6901": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 40.5"
+ },
+ "6902": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 43.5"
+ },
+ "6903": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 43.5"
+ },
+ "6904": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 50,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 -29.5"
+ },
+ "6905": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 29.5"
+ },
+ "6906": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 44.5"
+ },
+ "6907": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 44.5"
+ },
+ "6908": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 21.5"
+ },
+ "6909": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -21.5"
+ },
+ "6910": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 22"
+ },
+ "6911": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 430,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -22"
+ },
+ "6912": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Over 38.5"
+ },
+ "6913": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Point Team 2 Under 38.5"
+ },
+ "6914": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 22.5"
+ },
+ "6915": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -22.5"
+ },
+ "6916": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 10"
+ },
+ "6917": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 10"
+ },
+ "6918": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 60.5"
+ },
+ "6919": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 60.5"
+ },
+ "6920": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 76.5"
+ },
+ "6921": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 76.5"
+ },
+ "6922": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 75.5"
+ },
+ "6923": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 75.5"
+ },
+ "6924": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 30.5"
+ },
+ "6925": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 30.5"
+ },
+ "6926": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 29.5"
+ },
+ "6927": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 29.5"
+ },
+ "6928": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 28.5"
+ },
+ "6929": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 28.5"
+ },
+ "6930": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Over 29.5"
+ },
+ "6931": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Kill Team 1 Under 29.5"
+ },
+ "6932": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Over 35"
+ },
+ "6933": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Under 35"
+ },
+ "6934": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Over 35"
+ },
+ "6935": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Under 35"
+ },
+ "6936": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 45,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -27"
+ },
+ "6937": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 27"
+ },
+ "6938": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 43,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -26"
+ },
+ "6939": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 26"
+ },
+ "6940": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -26.5"
+ },
+ "6941": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 26.5"
+ },
+ "6942": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Over 17.5"
+ },
+ "6943": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Under 17.5"
+ },
+ "6944": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 15.5"
+ },
+ "6945": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -15.5"
+ },
+ "6946": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 36.5"
+ },
+ "6947": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 36.5"
+ },
+ "6948": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 35.5"
+ },
+ "6949": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 35.5"
+ },
+ "6950": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 36"
+ },
+ "6951": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 36"
+ },
+ "6952": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 37"
+ },
+ "6953": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 37"
+ },
+ "6954": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 37.5"
+ },
+ "6955": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 37.5"
+ },
+ "6956": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 19.5"
+ },
+ "6957": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 19.5"
+ },
+ "6958": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 18"
+ },
+ "6959": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 18"
+ },
+ "6960": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 38.5"
+ },
+ "6961": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 38.5"
+ },
+ "6962": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 38"
+ },
+ "6963": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 38"
+ },
+ "6964": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 39"
+ },
+ "6965": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 39"
+ },
+ "6966": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 39.5"
+ },
+ "6967": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 39.5"
+ },
+ "6968": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 19"
+ },
+ "6969": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 19"
+ },
+ "6970": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 20"
+ },
+ "6971": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 20"
+ },
+ "6972": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 5.5"
+ },
+ "6973": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 5.5"
+ },
+ "6974": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 5.5"
+ },
+ "6975": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 5.5"
+ },
+ "6976": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 17.5"
+ },
+ "6977": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Fight Winner of match Fight 1"
+ },
+ "6978": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Fight Winner of match Fight 2"
+ },
+ "6979": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Goal 1"
+ },
+ "6980": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Goal 2"
+ },
+ "6981": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Winner of match Goal 1"
+ },
+ "6982": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Winner of match Goal 2"
+ },
+ "6983": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match Point 1"
+ },
+ "6984": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match Point 2"
+ },
+ "6985": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Winner of match Point 1"
+ },
+ "6986": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Winner of match Point 2"
+ },
+ "6987": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Winner of match Point 1"
+ },
+ "6988": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Winner of match Point 2"
+ },
+ "6989": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Winner of match Round 1"
+ },
+ "6990": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Winner of match Round 2"
+ },
+ "6991": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Winner of match Round 1"
+ },
+ "6992": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Winner of match Round 2"
+ },
+ "6993": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Winner of match Round 1"
+ },
+ "6994": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Winner of match Round 2"
+ },
+ "6995": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Map 1"
+ },
+ "6996": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Map 2"
+ },
+ "6997": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 149,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 - Round 16 Winner of match Round 1"
+ },
+ "6998": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 149,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 - Round 16 Winner of match Round 2"
+ },
+ "6999": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 211,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 - Round 16 Winner of match Round 1"
+ },
+ "7000": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 211,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 - Round 16 Winner of match Round 2"
+ },
+ "7001": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 204,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 - Round 1 Winner of match Round 1"
+ },
+ "7002": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 204,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 - Round 1 Winner of match Round 2"
+ },
+ "7003": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 80,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 - Round 1 Winner of match Round 1"
+ },
+ "7004": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 80,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 - Round 1 Winner of match Round 2"
+ },
+ "7005": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 87,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 - Round 16 Winner of match Round 1"
+ },
+ "7006": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 87,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 - Round 16 Winner of match Round 2"
+ },
+ "7007": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 142,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 - Round 1 Winner of match Round 1"
+ },
+ "7008": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 142,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 - Round 1 Winner of match Round 2"
+ },
+ "7009": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Winner of match Map 1"
+ },
+ "7010": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Winner of match Map 2"
+ },
+ "7011": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Winner of match Map 1"
+ },
+ "7012": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Winner of match Map 2"
+ },
+ "7013": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Winner of match Map 1"
+ },
+ "7014": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Winner of match Map 2"
+ },
+ "7015": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Winner of match Map 1"
+ },
+ "7016": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Winner of match Map 2"
+ },
+ "7017": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Winner of match Map 1"
+ },
+ "7018": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Winner of match Map 2"
+ },
+ "7019": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Winner of match Kill 1"
+ },
+ "7020": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Winner of match Kill 2"
+ },
+ "7021": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Winner of match Kill 1"
+ },
+ "7022": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Winner of match Kill 2"
+ },
+ "7023": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Winner of match Kill 1"
+ },
+ "7024": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Winner of match Kill 2"
+ },
+ "7025": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Winner of match Kill 1"
+ },
+ "7026": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Winner of match Kill 2"
+ },
+ "7027": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Winner of match Kill 1"
+ },
+ "7028": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Winner of match Kill 2"
+ },
+ "7029": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Corner 1"
+ },
+ "7030": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Corner 2"
+ },
+ "7031": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Point 1"
+ },
+ "7032": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Point 2"
+ },
+ "7033": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 388,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 6 Winner of match Map 1"
+ },
+ "7034": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 388,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 6 Winner of match Map 2"
+ },
+ "7035": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 450,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 7 Winner of match Map 1"
+ },
+ "7036": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 450,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 7 Winner of match Map 2"
+ },
+ "7037": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Period Winner of match Goal 1"
+ },
+ "7038": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Period Winner of match Goal 2"
+ },
+ "7039": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match Run 1"
+ },
+ "7040": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match Run 2"
+ },
+ "7041": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Set Winner of match Game 1"
+ },
+ "7042": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Set Winner of match Game 2"
+ },
+ "7043": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Winner of match Game 1"
+ },
+ "7044": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Winner of match Game 2"
+ },
+ "7045": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Leg 1"
+ },
+ "7046": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Leg 2"
+ },
+ "7047": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Set 1"
+ },
+ "7048": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Set 2"
+ },
+ "7049": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Set Winner of match Point 1"
+ },
+ "7050": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Set Winner of match Point 2"
+ },
+ "7051": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Game 1"
+ },
+ "7052": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Game 2"
+ },
+ "7053": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 48,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "00:00 - 14:59 Winner of match Goal 1"
+ },
+ "7054": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 48,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "00:00 - 14:59 Winner of match Goal 2"
+ },
+ "7055": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Winner of match Round 1"
+ },
+ "7056": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Winner of match Round 2"
+ },
+ "7057": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Winner of match Round 1"
+ },
+ "7058": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Winner of match Round 2"
+ },
+ "7059": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 273,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 - Round 16 Winner of match Round 1"
+ },
+ "7060": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 273,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 - Round 16 Winner of match Round 2"
+ },
+ "7061": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 266,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 - Round 1 Winner of match Round 1"
+ },
+ "7062": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 266,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 - Round 1 Winner of match Round 2"
+ },
+ "7063": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 335,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 - Round 16 Winner of match Round 1"
+ },
+ "7064": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 335,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 - Round 16 Winner of match Round 2"
+ },
+ "7065": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 328,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 - Round 1 Winner of match Round 1"
+ },
+ "7066": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 328,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 - Round 1 Winner of match Round 2"
+ },
+ "7067": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Round 1"
+ },
+ "7068": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Round 2"
+ },
+ "7069": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 529,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -400"
+ },
+ "7070": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Under 8.5"
+ },
+ "7071": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 8"
+ },
+ "7072": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -8"
+ },
+ "7073": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 21.5"
+ },
+ "7074": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -21.5"
+ },
+ "7075": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 21.5"
+ },
+ "7076": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -21.5"
+ },
+ "7077": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 22.5"
+ },
+ "7078": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -22.5"
+ },
+ "7079": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 36.5"
+ },
+ "7080": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 36.5"
+ },
+ "7081": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 22.5"
+ },
+ "7082": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -22.5"
+ },
+ "7083": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 23.5"
+ },
+ "7084": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -23.5"
+ },
+ "7085": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 36.5"
+ },
+ "7086": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 36.5"
+ },
+ "7087": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 23.5"
+ },
+ "7088": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -23.5"
+ },
+ "7089": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 24.5"
+ },
+ "7090": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -24.5"
+ },
+ "7091": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 37.5"
+ },
+ "7092": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 37.5"
+ },
+ "7093": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 404,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 86.5"
+ },
+ "7094": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 404,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 86.5"
+ },
+ "7095": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 40.5"
+ },
+ "7096": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 40.5"
+ },
+ "7097": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 27.5"
+ },
+ "7098": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 27.5"
+ },
+ "7099": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 6.5"
+ },
+ "7100": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 6.5"
+ },
+ "7101": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 27"
+ },
+ "7102": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 27"
+ },
+ "7103": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 28"
+ },
+ "7104": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 28"
+ },
+ "7105": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 7.5"
+ },
+ "7106": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 7.5"
+ },
+ "7107": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 530,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over -53.5"
+ },
+ "7108": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 530,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under -53.5"
+ },
+ "7109": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Over 16.5"
+ },
+ "7110": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Under 16.5"
+ },
+ "7111": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 2.5"
+ },
+ "7112": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 2.5"
+ },
+ "7113": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 50,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 -29.5"
+ },
+ "7114": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 29.5"
+ },
+ "7115": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 48,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 -28.5"
+ },
+ "7116": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 28.5"
+ },
+ "7117": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 38.5"
+ },
+ "7118": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 38.5"
+ },
+ "7119": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 45.5"
+ },
+ "7120": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 45.5"
+ },
+ "7121": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 36.5"
+ },
+ "7122": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 36.5"
+ },
+ "7123": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 9"
+ },
+ "7124": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -9"
+ },
+ "7125": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 9.5"
+ },
+ "7126": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -9.5"
+ },
+ "7127": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 14.5"
+ },
+ "7128": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 14.5"
+ },
+ "7129": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 75.5"
+ },
+ "7130": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 75.5"
+ },
+ "7131": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 381,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 76"
+ },
+ "7132": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 381,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 76"
+ },
+ "7133": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Over 16.5"
+ },
+ "7134": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Under 16.5"
+ },
+ "7135": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 47.5"
+ },
+ "7136": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 47.5"
+ },
+ "7137": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 48"
+ },
+ "7138": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 48"
+ },
+ "7139": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 29,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -18"
+ },
+ "7140": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 18"
+ },
+ "7141": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 20"
+ },
+ "7142": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 20"
+ },
+ "7143": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 -5"
+ },
+ "7144": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 5"
+ },
+ "7145": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 19"
+ },
+ "7146": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 19"
+ },
+ "7147": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 5.5"
+ },
+ "7148": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 -5.5"
+ },
+ "7149": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 19.5"
+ },
+ "7150": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 19.5"
+ },
+ "7151": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 20.5"
+ },
+ "7152": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 20.5"
+ },
+ "7153": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 21"
+ },
+ "7154": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 21"
+ },
+ "7155": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 -6"
+ },
+ "7156": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 6"
+ },
+ "7157": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 -5.5"
+ },
+ "7158": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 5.5"
+ },
+ "7159": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 -4.5"
+ },
+ "7160": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 4.5"
+ },
+ "7161": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 -4"
+ },
+ "7162": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 4"
+ },
+ "7163": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 18"
+ },
+ "7164": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 18"
+ },
+ "7165": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 18.5"
+ },
+ "7166": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 18.5"
+ },
+ "7167": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 6.5"
+ },
+ "7168": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 -6.5"
+ },
+ "7169": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 6"
+ },
+ "7170": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 -6"
+ },
+ "7171": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 5"
+ },
+ "7172": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 -5"
+ },
+ "7173": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 4.5"
+ },
+ "7174": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 -4.5"
+ },
+ "7175": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 21.5"
+ },
+ "7176": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 21.5"
+ },
+ "7177": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 22"
+ },
+ "7178": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 22"
+ },
+ "7179": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 16"
+ },
+ "7180": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 16"
+ },
+ "7181": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 15.5"
+ },
+ "7182": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 15.5"
+ },
+ "7183": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 -11.5"
+ },
+ "7184": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 11.5"
+ },
+ "7185": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 65.5"
+ },
+ "7186": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 65.5"
+ },
+ "7187": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Over 37"
+ },
+ "7188": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Under 37"
+ },
+ "7189": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 -11.5"
+ },
+ "7190": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 11.5"
+ },
+ "7191": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 47"
+ },
+ "7192": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 522,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -47"
+ },
+ "7193": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 80,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 100.5"
+ },
+ "7194": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 80,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 100.5"
+ },
+ "7195": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 81,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 101"
+ },
+ "7196": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 81,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 101"
+ },
+ "7197": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 47.5"
+ },
+ "7198": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 47.5"
+ },
+ "7199": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 480,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 99.5"
+ },
+ "7200": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 480,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 99.5"
+ },
+ "7201": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 79,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 100"
+ },
+ "7202": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 79,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 100"
+ },
+ "7203": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 47"
+ },
+ "7204": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 47"
+ },
+ "7205": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 25.5"
+ },
+ "7206": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 25.5"
+ },
+ "7207": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 32.5"
+ },
+ "7208": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 32.5"
+ },
+ "7209": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 6.5"
+ },
+ "7210": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 6.5"
+ },
+ "7211": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 3.5"
+ },
+ "7212": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 3.5"
+ },
+ "7213": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 9.5"
+ },
+ "7214": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 9.5"
+ },
+ "7215": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 47.5"
+ },
+ "7216": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 521,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -47.5"
+ },
+ "7217": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 12.5"
+ },
+ "7218": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -12.5"
+ },
+ "7219": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 43.5"
+ },
+ "7220": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 43.5"
+ },
+ "7221": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 35.5"
+ },
+ "7222": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 35.5"
+ },
+ "7223": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Corner Team 1 Over 7.5"
+ },
+ "7224": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Corner Team 1 Under 7.5"
+ },
+ "7225": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Corner Team 2 Over 2.5"
+ },
+ "7226": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Corner Team 2 Under 2.5"
+ },
+ "7227": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Corner Team 2 Over 1.5"
+ },
+ "7228": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Corner Team 2 Under 1.5"
+ },
+ "7229": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 16.5"
+ },
+ "7230": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -16.5"
+ },
+ "7231": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 16.5"
+ },
+ "7232": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -16.5"
+ },
+ "7233": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 17.5"
+ },
+ "7234": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -17.5"
+ },
+ "7235": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 -11.5"
+ },
+ "7236": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 11.5"
+ },
+ "7237": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Corner Team 2 Over 5.5"
+ },
+ "7238": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Corner Team 2 Under 5.5"
+ },
+ "7239": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Corner Team 1 Over 5.5"
+ },
+ "7240": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Corner Team 1 Under 5.5"
+ },
+ "7241": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Corner Team 1 Over 3.5"
+ },
+ "7242": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Corner Team 1 Under 3.5"
+ },
+ "7243": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 27.5"
+ },
+ "7244": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -27.5"
+ },
+ "7245": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 76.5"
+ },
+ "7246": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 76.5"
+ },
+ "7247": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 24.5"
+ },
+ "7248": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -24.5"
+ },
+ "7249": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Corner Team 1 Over 6.5"
+ },
+ "7250": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Corner Team 1 Under 6.5"
+ },
+ "7251": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 41.5"
+ },
+ "7252": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 41.5"
+ },
+ "7253": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Over 42.5"
+ },
+ "7254": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Point Team 1 Under 42.5"
+ },
+ "7255": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match Goal 1"
+ },
+ "7256": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match Goal 2"
+ },
+ "7257": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Corner Team 1 Over 8.5"
+ },
+ "7258": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Corner Team 1 Under 8.5"
+ },
+ "7259": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 -12.5"
+ },
+ "7260": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 12.5"
+ },
+ "7261": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 11.5"
+ },
+ "7262": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 -11.5"
+ },
+ "7263": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 38"
+ },
+ "7264": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 38"
+ },
+ "7265": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Over 38"
+ },
+ "7266": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Under 38"
+ },
+ "7267": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Over 38"
+ },
+ "7268": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Under 38"
+ },
+ "7269": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 108,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 112.5"
+ },
+ "7270": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 108,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 112.5"
+ },
+ "7271": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 55.5"
+ },
+ "7272": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 55.5"
+ },
+ "7273": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 104,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 110.5"
+ },
+ "7274": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 104,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 110.5"
+ },
+ "7275": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 98,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 108.5"
+ },
+ "7276": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 98,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 108.5"
+ },
+ "7277": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 531,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 96"
+ },
+ "7278": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 532,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 500"
+ },
+ "7279": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 530,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -53.5"
+ },
+ "7280": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 531,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 96"
+ },
+ "7281": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 531,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 96"
+ },
+ "7282": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 532,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 500"
+ },
+ "7283": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 533,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -500"
+ },
+ "7284": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 26.5"
+ },
+ "7285": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 26.5"
+ },
+ "7286": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 534,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 211.5"
+ },
+ "7287": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 534,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 211.5"
+ },
+ "7288": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 110,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 113.5"
+ },
+ "7289": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 110,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 113.5"
+ },
+ "7290": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 535,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 209.5"
+ },
+ "7291": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 535,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 209.5"
+ },
+ "7292": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 536,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 210.5"
+ },
+ "7293": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 536,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 210.5"
+ },
+ "7294": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 537,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 212.5"
+ },
+ "7295": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 537,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 212.5"
+ },
+ "7296": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 538,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 213.5"
+ },
+ "7297": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 538,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 213.5"
+ },
+ "7298": {
+ "selectionId": 23,
+ "marketId": 16,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual To Score Goal Team 1 Yes"
+ },
+ "7299": {
+ "selectionId": 24,
+ "marketId": 16,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual To Score Goal Team 1 No"
+ },
+ "7300": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Frame 1"
+ },
+ "7301": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Frame 2"
+ },
+ "7302": {
+ "selectionId": 23,
+ "marketId": 16,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual To Score Goal Team 2 Yes"
+ },
+ "7303": {
+ "selectionId": 24,
+ "marketId": 16,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual To Score Goal Team 2 No"
+ },
+ "7304": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 15.5"
+ },
+ "7305": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 15.5"
+ },
+ "7306": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -8.5"
+ },
+ "7307": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 8.5"
+ },
+ "7308": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 17.5"
+ },
+ "7309": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 17.5"
+ },
+ "7310": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 39.5"
+ },
+ "7311": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 39.5"
+ },
+ "7312": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 82,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 101.5"
+ },
+ "7313": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 82,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 101.5"
+ },
+ "7314": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 80,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 100.5"
+ },
+ "7315": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 80,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 100.5"
+ },
+ "7316": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 84,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 102.5"
+ },
+ "7317": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 84,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 102.5"
+ },
+ "7318": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 56.5"
+ },
+ "7319": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 56.5"
+ },
+ "7320": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 55.5"
+ },
+ "7321": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 55.5"
+ },
+ "7322": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 539,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 214.5"
+ },
+ "7323": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 539,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 214.5"
+ },
+ "7324": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 90,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 105.5"
+ },
+ "7325": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 90,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 105.5"
+ },
+ "7326": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 54.5"
+ },
+ "7327": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 54.5"
+ },
+ "7328": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 95,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 107.5"
+ },
+ "7329": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 95,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 107.5"
+ },
+ "7330": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 100,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 109.5"
+ },
+ "7331": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 100,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 109.5"
+ },
+ "7332": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 57.5"
+ },
+ "7333": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 57.5"
+ },
+ "7334": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 106,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 111.5"
+ },
+ "7335": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 106,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 111.5"
+ },
+ "7336": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 98,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 108.5"
+ },
+ "7337": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 98,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 108.5"
+ },
+ "7338": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 244,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 184.5"
+ },
+ "7339": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 244,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 184.5"
+ },
+ "7340": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 2.5"
+ },
+ "7341": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 -2.5"
+ },
+ "7342": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 238,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 181.5"
+ },
+ "7343": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 238,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 181.5"
+ },
+ "7344": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 152,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 137.5"
+ },
+ "7345": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 152,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 137.5"
+ },
+ "7346": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 242,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 183.5"
+ },
+ "7347": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 242,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 183.5"
+ },
+ "7348": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 236,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 180.5"
+ },
+ "7349": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 236,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 180.5"
+ },
+ "7350": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 222,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 169.5"
+ },
+ "7351": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 222,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 169.5"
+ },
+ "7352": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 6.5"
+ },
+ "7353": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 6.5"
+ },
+ "7354": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 8.5"
+ },
+ "7355": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 8.5"
+ },
+ "7356": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 540,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 216.5"
+ },
+ "7357": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 540,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 216.5"
+ },
+ "7358": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 541,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 215.5"
+ },
+ "7359": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 541,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 215.5"
+ },
+ "7360": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 542,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 218.5"
+ },
+ "7361": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 542,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 218.5"
+ },
+ "7362": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 543,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 217.5"
+ },
+ "7363": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 543,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 217.5"
+ },
+ "7364": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 544,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 219.5"
+ },
+ "7365": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 544,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 219.5"
+ },
+ "7366": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 545,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 221.5"
+ },
+ "7367": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 545,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 221.5"
+ },
+ "7368": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 546,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 220.5"
+ },
+ "7369": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 546,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 220.5"
+ },
+ "7370": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 112,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 114.5"
+ },
+ "7371": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 112,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 114.5"
+ },
+ "7372": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 100,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 109.5"
+ },
+ "7373": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 100,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 109.5"
+ },
+ "7374": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 547,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 208.5"
+ },
+ "7375": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 547,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 208.5"
+ },
+ "7376": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 548,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 207.5"
+ },
+ "7377": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 548,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 207.5"
+ },
+ "7378": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 549,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 206.5"
+ },
+ "7379": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 549,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 206.5"
+ },
+ "7380": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 246,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 185.5"
+ },
+ "7381": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 246,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 185.5"
+ },
+ "7382": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 226,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 176.5"
+ },
+ "7383": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 226,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 176.5"
+ },
+ "7384": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 550,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 222.5"
+ },
+ "7385": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 550,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 222.5"
+ },
+ "7386": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 551,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 223.5"
+ },
+ "7387": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 551,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 223.5"
+ },
+ "7388": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 552,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 205.5"
+ },
+ "7389": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 552,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 205.5"
+ },
+ "7390": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 104,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 110.5"
+ },
+ "7391": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 104,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 110.5"
+ },
+ "7392": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 553,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 224.5"
+ },
+ "7393": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 553,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 224.5"
+ },
+ "7394": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 554,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 225.5"
+ },
+ "7395": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 554,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 225.5"
+ },
+ "7396": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 555,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 204.5"
+ },
+ "7397": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 555,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 204.5"
+ },
+ "7398": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 556,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 203.5"
+ },
+ "7399": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 556,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 203.5"
+ },
+ "7400": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 108,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 112.5"
+ },
+ "7401": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 108,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 112.5"
+ },
+ "7402": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 0.5"
+ },
+ "7403": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 -0.5"
+ },
+ "7404": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 557,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 226.5"
+ },
+ "7405": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 557,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 226.5"
+ },
+ "7406": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 558,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 227.5"
+ },
+ "7407": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 558,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 227.5"
+ },
+ "7408": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 164,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 142.5"
+ },
+ "7409": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 164,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 142.5"
+ },
+ "7410": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 174,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 147.5"
+ },
+ "7411": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 174,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 147.5"
+ },
+ "7412": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 110,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 113.5"
+ },
+ "7413": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 110,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 113.5"
+ },
+ "7414": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 12.5"
+ },
+ "7415": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 12.5"
+ },
+ "7416": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 114,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 115.5"
+ },
+ "7417": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 114,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 115.5"
+ },
+ "7418": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 559,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 198.5"
+ },
+ "7419": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 559,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 198.5"
+ },
+ "7420": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 560,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 199.5"
+ },
+ "7421": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 560,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 199.5"
+ },
+ "7422": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 561,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 200.5"
+ },
+ "7423": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 561,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 200.5"
+ },
+ "7424": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 492,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 97.5"
+ },
+ "7425": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 492,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 97.5"
+ },
+ "7426": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 178,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 149.5"
+ },
+ "7427": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 178,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 149.5"
+ },
+ "7428": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 162,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 141.5"
+ },
+ "7429": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 162,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 141.5"
+ },
+ "7430": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 418,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 174.5"
+ },
+ "7431": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 418,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 174.5"
+ },
+ "7432": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 172,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 146.5"
+ },
+ "7433": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 172,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 146.5"
+ },
+ "7434": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 210,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 163.5"
+ },
+ "7435": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 210,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 163.5"
+ },
+ "7436": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 160,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 140.5"
+ },
+ "7437": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 160,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 140.5"
+ },
+ "7438": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 232,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 179.5"
+ },
+ "7439": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 232,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 179.5"
+ },
+ "7440": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 478,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 175.5"
+ },
+ "7441": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 478,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 175.5"
+ },
+ "7442": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 507,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 129.5"
+ },
+ "7443": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 507,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 129.5"
+ },
+ "7444": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 502,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 131.5"
+ },
+ "7445": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 502,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 131.5"
+ },
+ "7446": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 95,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 107.5"
+ },
+ "7447": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 95,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 107.5"
+ },
+ "7448": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 56.5"
+ },
+ "7449": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 56.5"
+ },
+ "7450": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 512,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -50.5"
+ },
+ "7451": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 50.5"
+ },
+ "7452": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 92,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 106.5"
+ },
+ "7453": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 92,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 106.5"
+ },
+ "7454": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 240,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 182.5"
+ },
+ "7455": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 240,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 182.5"
+ },
+ "7456": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 562,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 201.5"
+ },
+ "7457": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 562,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 201.5"
+ },
+ "7458": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 563,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 202.5"
+ },
+ "7459": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 563,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 202.5"
+ },
+ "7460": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 518,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 98.5"
+ },
+ "7461": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 518,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 98.5"
+ },
+ "7462": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -21.5"
+ },
+ "7463": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 21.5"
+ },
+ "7464": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -22.5"
+ },
+ "7465": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 22.5"
+ },
+ "7466": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 11.5"
+ },
+ "7467": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 11.5"
+ },
+ "7468": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 10.5"
+ },
+ "7469": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 10.5"
+ },
+ "7470": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 9.5"
+ },
+ "7471": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 9.5"
+ },
+ "7472": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 -2.5"
+ },
+ "7473": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 2.5"
+ },
+ "7474": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 214,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 165.5"
+ },
+ "7475": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 214,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 165.5"
+ },
+ "7476": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 230,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 178.5"
+ },
+ "7477": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 230,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 178.5"
+ },
+ "7478": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 61.5"
+ },
+ "7479": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 61.5"
+ },
+ "7480": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 32.5"
+ },
+ "7481": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 32.5"
+ },
+ "7482": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 81.5"
+ },
+ "7483": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 81.5"
+ },
+ "7484": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 32.5"
+ },
+ "7485": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 32.5"
+ },
+ "7486": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 81.5"
+ },
+ "7487": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 81.5"
+ },
+ "7488": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 33.5"
+ },
+ "7489": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 33.5"
+ },
+ "7490": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 80.5"
+ },
+ "7491": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 80.5"
+ },
+ "7492": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 80.5"
+ },
+ "7493": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 80.5"
+ },
+ "7494": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 106,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 111.5"
+ },
+ "7495": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 106,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 111.5"
+ },
+ "7496": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 500,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 130.5"
+ },
+ "7497": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 500,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 130.5"
+ },
+ "7498": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 456,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 173.5"
+ },
+ "7499": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 456,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 173.5"
+ },
+ "7500": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 156,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 139.5"
+ },
+ "7501": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 156,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 139.5"
+ },
+ "7502": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 451,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 171.5"
+ },
+ "7503": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 451,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 171.5"
+ },
+ "7504": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 228,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 177.5"
+ },
+ "7505": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 228,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 177.5"
+ },
+ "7506": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 452,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 170.5"
+ },
+ "7507": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 452,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 170.5"
+ },
+ "7508": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 154,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 138.5"
+ },
+ "7509": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 154,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 138.5"
+ },
+ "7510": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 7.5"
+ },
+ "7511": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -7.5"
+ },
+ "7512": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 2.5"
+ },
+ "7513": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 2.5"
+ },
+ "7514": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 3.5"
+ },
+ "7515": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 3.5"
+ },
+ "7516": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 564,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 228.5"
+ },
+ "7517": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 564,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 228.5"
+ },
+ "7518": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 41.5"
+ },
+ "7519": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 41.5"
+ },
+ "7520": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 186,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 152.5"
+ },
+ "7521": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 186,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 152.5"
+ },
+ "7522": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 146,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 134.5"
+ },
+ "7523": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 146,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 134.5"
+ },
+ "7524": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Dragon Over 3.5"
+ },
+ "7525": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 48,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Dragon Under 3.5"
+ },
+ "7526": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 118,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 117.5"
+ },
+ "7527": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 118,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 117.5"
+ },
+ "7528": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 92,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 106.5"
+ },
+ "7529": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 92,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 106.5"
+ },
+ "7530": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 95,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 107.5"
+ },
+ "7531": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 95,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 107.5"
+ },
+ "7532": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 98,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 108.5"
+ },
+ "7533": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 98,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 108.5"
+ },
+ "7534": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 38.5"
+ },
+ "7535": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 38.5"
+ },
+ "7536": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 4.5"
+ },
+ "7537": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 4.5"
+ },
+ "7538": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 220,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 168.5"
+ },
+ "7539": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 220,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 168.5"
+ },
+ "7540": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 565,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 229.5"
+ },
+ "7541": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 565,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 229.5"
+ },
+ "7542": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 48.5"
+ },
+ "7543": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 48.5"
+ },
+ "7544": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Turret Over 11.5"
+ },
+ "7545": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 98,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Turret Under 11.5"
+ },
+ "7546": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 566,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 412.5"
+ },
+ "7547": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 566,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 412.5"
+ },
+ "7548": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 438,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -38.5"
+ },
+ "7549": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 38.5"
+ },
+ "7550": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 33.5"
+ },
+ "7551": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 431,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -33.5"
+ },
+ "7552": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 50.5"
+ },
+ "7553": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 50.5"
+ },
+ "7554": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 52.5"
+ },
+ "7555": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 52.5"
+ },
+ "7556": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 26.5"
+ },
+ "7557": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 26.5"
+ },
+ "7558": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 51.5"
+ },
+ "7559": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 51.5"
+ },
+ "7560": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 480,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 99.5"
+ },
+ "7561": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 480,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 99.5"
+ },
+ "7562": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 86,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 103.5"
+ },
+ "7563": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 86,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 103.5"
+ },
+ "7564": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 53.5"
+ },
+ "7565": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 53.5"
+ },
+ "7566": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 88,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 104.5"
+ },
+ "7567": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 88,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 104.5"
+ },
+ "7568": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 25.5"
+ },
+ "7569": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 25.5"
+ },
+ "7570": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 54.5"
+ },
+ "7571": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 54.5"
+ },
+ "7572": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 27.5"
+ },
+ "7573": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 27.5"
+ },
+ "7574": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 142,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 132.5"
+ },
+ "7575": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 142,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 132.5"
+ },
+ "7576": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 442,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -36.5"
+ },
+ "7577": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 36.5"
+ },
+ "7578": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 66.5"
+ },
+ "7579": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 66.5"
+ },
+ "7580": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 34.5"
+ },
+ "7581": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 476,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -34.5"
+ },
+ "7582": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 454,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 172.5"
+ },
+ "7583": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 454,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 172.5"
+ },
+ "7584": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 112,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 114.5"
+ },
+ "7585": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 112,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 114.5"
+ },
+ "7586": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 114,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 115.5"
+ },
+ "7587": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 114,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 115.5"
+ },
+ "7588": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 150,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 136.5"
+ },
+ "7589": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 150,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 136.5"
+ },
+ "7590": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 53.5"
+ },
+ "7591": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 53.5"
+ },
+ "7592": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 567,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 230.5"
+ },
+ "7593": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 567,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 230.5"
+ },
+ "7594": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 5.5"
+ },
+ "7595": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 5.5"
+ },
+ "7596": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 26.5"
+ },
+ "7597": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 26.5"
+ },
+ "7598": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 26.5"
+ },
+ "7599": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 26.5"
+ },
+ "7600": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 64.5"
+ },
+ "7601": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 64.5"
+ },
+ "7602": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 86,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 103.5"
+ },
+ "7603": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 86,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 103.5"
+ },
+ "7604": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 17.5"
+ },
+ "7605": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 15.5"
+ },
+ "7606": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 15.5"
+ },
+ "7607": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 65.5"
+ },
+ "7608": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 65.5"
+ },
+ "7609": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 568,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 231.5"
+ },
+ "7610": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 568,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 231.5"
+ },
+ "7611": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 116,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 116.5"
+ },
+ "7612": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 116,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 116.5"
+ },
+ "7613": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -11.5"
+ },
+ "7614": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 11.5"
+ },
+ "7615": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -23.5"
+ },
+ "7616": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 23.5"
+ },
+ "7617": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -24.5"
+ },
+ "7618": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 24.5"
+ },
+ "7619": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -12.5"
+ },
+ "7620": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 12.5"
+ },
+ "7621": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 27.5"
+ },
+ "7622": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 27.5"
+ },
+ "7623": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 58.5"
+ },
+ "7624": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 58.5"
+ },
+ "7625": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 28.5"
+ },
+ "7626": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 28.5"
+ },
+ "7627": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 90,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 105.5"
+ },
+ "7628": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 90,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 105.5"
+ },
+ "7629": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 569,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 232.5"
+ },
+ "7630": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 569,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 232.5"
+ },
+ "7631": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 10.5"
+ },
+ "7632": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -10.5"
+ },
+ "7633": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 13.5"
+ },
+ "7634": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 13.5"
+ },
+ "7635": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 49.5"
+ },
+ "7636": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 49.5"
+ },
+ "7637": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 168,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 144.5"
+ },
+ "7638": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 168,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 144.5"
+ },
+ "7639": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 20.5"
+ },
+ "7640": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -20.5"
+ },
+ "7641": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 216,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 166.5"
+ },
+ "7642": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 216,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 166.5"
+ },
+ "7643": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 570,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 1399.5"
+ },
+ "7644": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 570,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 1399.5"
+ },
+ "7645": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 0.5"
+ },
+ "7646": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -0.5"
+ },
+ "7647": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 -0.5"
+ },
+ "7648": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 0.5"
+ },
+ "7649": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 170,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 145.5"
+ },
+ "7650": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 170,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 145.5"
+ },
+ "7651": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 148,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 135.5"
+ },
+ "7652": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 148,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 135.5"
+ },
+ "7653": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 508,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 127.5"
+ },
+ "7654": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 508,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 127.5"
+ },
+ "7655": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Over 7.5"
+ },
+ "7656": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Under 7.5"
+ },
+ "7657": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Over 7.5"
+ },
+ "7658": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Under 7.5"
+ },
+ "7659": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 505,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 128.5"
+ },
+ "7660": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 505,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 128.5"
+ },
+ "7661": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 218,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 167.5"
+ },
+ "7662": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 218,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 167.5"
+ },
+ "7663": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Game Team 1 H1 -3.5"
+ },
+ "7664": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Game Team 2 H2 3.5"
+ },
+ "7665": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Game Team 1 H1 0.5"
+ },
+ "7666": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Game Team 2 H2 -0.5"
+ },
+ "7667": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Game Team 1 H1 2.5"
+ },
+ "7668": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Game Team 2 H2 -2.5"
+ },
+ "7669": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Game Team 1 H1 3.5"
+ },
+ "7670": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Game Team 2 H2 -3.5"
+ },
+ "7671": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Game Over 6.5"
+ },
+ "7672": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Game Under 6.5"
+ },
+ "7673": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Game Team 1 H1 -4.5"
+ },
+ "7674": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Game Team 2 H2 4.5"
+ },
+ "7675": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 144,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 133.5"
+ },
+ "7676": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 144,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 133.5"
+ },
+ "7677": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 176,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 148.5"
+ },
+ "7678": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 176,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 148.5"
+ },
+ "7679": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 138,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 126.5"
+ },
+ "7680": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 138,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 126.5"
+ },
+ "7681": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 46.5"
+ },
+ "7682": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 493,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -46.5"
+ },
+ "7683": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Over 5.5"
+ },
+ "7684": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Under 5.5"
+ },
+ "7685": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 57.5"
+ },
+ "7686": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 57.5"
+ },
+ "7687": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Over 6.5"
+ },
+ "7688": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Under 6.5"
+ },
+ "7689": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 571,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 234.5"
+ },
+ "7690": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 571,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 234.5"
+ },
+ "7691": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 572,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 233.5"
+ },
+ "7692": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 572,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 233.5"
+ },
+ "7693": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 126,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 120.5"
+ },
+ "7694": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 126,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 120.5"
+ },
+ "7695": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 122,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 119.5"
+ },
+ "7696": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 122,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 119.5"
+ },
+ "7697": {
+ "selectionId": 182,
+ "marketId": 14,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game Total Even Point Yes"
+ },
+ "7698": {
+ "selectionId": 183,
+ "marketId": 14,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game Total Even Point No"
+ },
+ "7699": {
+ "selectionId": 20,
+ "marketId": 15,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Even Point Team 1 No"
+ },
+ "7700": {
+ "selectionId": 19,
+ "marketId": 15,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Even Point Team 1 Yes"
+ },
+ "7701": {
+ "selectionId": 20,
+ "marketId": 15,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Even Point Team 2 No"
+ },
+ "7702": {
+ "selectionId": 19,
+ "marketId": 15,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Even Point Team 2 Yes"
+ },
+ "7703": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 514,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -51.5"
+ },
+ "7704": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 51.5"
+ },
+ "7705": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 67.5"
+ },
+ "7706": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 67.5"
+ },
+ "7707": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 68.5"
+ },
+ "7708": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 68.5"
+ },
+ "7709": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -27.5"
+ },
+ "7710": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 27.5"
+ },
+ "7711": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 55.5"
+ },
+ "7712": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 55.5"
+ },
+ "7713": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 56.5"
+ },
+ "7714": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 56.5"
+ },
+ "7715": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 100,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 109.5"
+ },
+ "7716": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 100,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 109.5"
+ },
+ "7717": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 104,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 110.5"
+ },
+ "7718": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 104,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 110.5"
+ },
+ "7719": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 106,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 111.5"
+ },
+ "7720": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 106,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 111.5"
+ },
+ "7721": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 108,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 112.5"
+ },
+ "7722": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 108,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 112.5"
+ },
+ "7723": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 57.5"
+ },
+ "7724": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 57.5"
+ },
+ "7725": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 573,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -54.5"
+ },
+ "7726": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 54.5"
+ },
+ "7727": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 574,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -72.5"
+ },
+ "7728": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 72.5"
+ },
+ "7729": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 575,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -56.5"
+ },
+ "7730": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 56.5"
+ },
+ "7731": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 444,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -35.5"
+ },
+ "7732": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 35.5"
+ },
+ "7733": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 76.5"
+ },
+ "7734": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 76.5"
+ },
+ "7735": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 82.5"
+ },
+ "7736": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 82.5"
+ },
+ "7737": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 442,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -36.5"
+ },
+ "7738": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 36.5"
+ },
+ "7739": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 438,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -38.5"
+ },
+ "7740": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 38.5"
+ },
+ "7741": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 576,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -60.5"
+ },
+ "7742": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 60.5"
+ },
+ "7743": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 74.5"
+ },
+ "7744": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 74.5"
+ },
+ "7745": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 72.5"
+ },
+ "7746": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 72.5"
+ },
+ "7747": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 439,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -37.5"
+ },
+ "7748": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 37.5"
+ },
+ "7749": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 120,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 118.5"
+ },
+ "7750": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 120,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 118.5"
+ },
+ "7751": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 577,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 235.5"
+ },
+ "7752": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 577,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 235.5"
+ },
+ "7753": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 128,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 121.5"
+ },
+ "7754": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 128,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 121.5"
+ },
+ "7755": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 516,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -52.5"
+ },
+ "7756": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 52.5"
+ },
+ "7757": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 530,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -53.5"
+ },
+ "7758": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 53.5"
+ },
+ "7759": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 112,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 114.5"
+ },
+ "7760": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 112,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 114.5"
+ },
+ "7761": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 114,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 115.5"
+ },
+ "7762": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 114,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 115.5"
+ },
+ "7763": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 116,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 116.5"
+ },
+ "7764": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 116,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 116.5"
+ },
+ "7765": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 118,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 117.5"
+ },
+ "7766": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 118,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 117.5"
+ },
+ "7767": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 58.5"
+ },
+ "7768": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 58.5"
+ },
+ "7769": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 59.5"
+ },
+ "7770": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 59.5"
+ },
+ "7771": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 28.5"
+ },
+ "7772": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 28.5"
+ },
+ "7773": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 29.5"
+ },
+ "7774": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 29.5"
+ },
+ "7775": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 110,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 113.5"
+ },
+ "7776": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 110,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 113.5"
+ },
+ "7777": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 120,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 118.5"
+ },
+ "7778": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 120,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 118.5"
+ },
+ "7779": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 122,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 119.5"
+ },
+ "7780": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 122,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 119.5"
+ },
+ "7781": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 60.5"
+ },
+ "7782": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 60.5"
+ },
+ "7783": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 61.5"
+ },
+ "7784": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 61.5"
+ },
+ "7785": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 31.5"
+ },
+ "7786": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 31.5"
+ },
+ "7787": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 59.5"
+ },
+ "7788": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 59.5"
+ },
+ "7789": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 30.5"
+ },
+ "7790": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 30.5"
+ },
+ "7791": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 60.5"
+ },
+ "7792": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 60.5"
+ },
+ "7793": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 29.5"
+ },
+ "7794": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 29.5"
+ },
+ "7795": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 126,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 120.5"
+ },
+ "7796": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 126,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 120.5"
+ },
+ "7797": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 61.5"
+ },
+ "7798": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 61.5"
+ },
+ "7799": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 26.5"
+ },
+ "7800": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -26.5"
+ },
+ "7801": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 29.5"
+ },
+ "7802": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 50,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -29.5"
+ },
+ "7803": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 439,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -37.5"
+ },
+ "7804": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 37.5"
+ },
+ "7805": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 31.5"
+ },
+ "7806": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 57,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -31.5"
+ },
+ "7807": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 578,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -55.5"
+ },
+ "7808": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 55.5"
+ },
+ "7809": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 27.5"
+ },
+ "7810": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -27.5"
+ },
+ "7811": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 25.5"
+ },
+ "7812": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -25.5"
+ },
+ "7813": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 58.5"
+ },
+ "7814": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 58.5"
+ },
+ "7815": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 579,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 236.5"
+ },
+ "7816": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 579,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 236.5"
+ },
+ "7817": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 128,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 121.5"
+ },
+ "7818": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 128,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 121.5"
+ },
+ "7819": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 59.5"
+ },
+ "7820": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 59.5"
+ },
+ "7821": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 62.5"
+ },
+ "7822": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 62.5"
+ },
+ "7823": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 130,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 122.5"
+ },
+ "7824": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 130,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 122.5"
+ },
+ "7825": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 130,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 122.5"
+ },
+ "7826": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 130,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 122.5"
+ },
+ "7827": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 63.5"
+ },
+ "7828": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 63.5"
+ },
+ "7829": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 526,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -64.5"
+ },
+ "7830": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 64.5"
+ },
+ "7831": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 30.5"
+ },
+ "7832": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 30.5"
+ },
+ "7833": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 70.5"
+ },
+ "7834": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 70.5"
+ },
+ "7835": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 204,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 160.5"
+ },
+ "7836": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 204,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 160.5"
+ },
+ "7837": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 120,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 118.5"
+ },
+ "7838": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 120,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 118.5"
+ },
+ "7839": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 580,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -73.5"
+ },
+ "7840": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 73.5"
+ },
+ "7841": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 55.5"
+ },
+ "7842": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 578,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -55.5"
+ },
+ "7843": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 118,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 117.5"
+ },
+ "7844": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 118,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 117.5"
+ },
+ "7845": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 59.5"
+ },
+ "7846": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 581,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -59.5"
+ },
+ "7847": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 212,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 164.5"
+ },
+ "7848": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 212,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 164.5"
+ },
+ "7849": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 122,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 119.5"
+ },
+ "7850": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 122,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 119.5"
+ },
+ "7851": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 116,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 116.5"
+ },
+ "7852": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 116,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 116.5"
+ },
+ "7853": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 78.5"
+ },
+ "7854": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 78.5"
+ },
+ "7855": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 582,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -76.5"
+ },
+ "7856": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 76.5"
+ },
+ "7857": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 516,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -52.5"
+ },
+ "7858": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 52.5"
+ },
+ "7859": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 69.5"
+ },
+ "7860": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 69.5"
+ },
+ "7861": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -0.5"
+ },
+ "7862": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 0.5"
+ },
+ "7863": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Over 5.5"
+ },
+ "7864": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Under 5.5"
+ },
+ "7865": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 16.5"
+ },
+ "7866": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 16.5"
+ },
+ "7867": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 39.5"
+ },
+ "7868": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 39.5"
+ },
+ "7869": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 514,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -51.5"
+ },
+ "7870": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 51.5"
+ },
+ "7871": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Over 13.5"
+ },
+ "7872": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Under 13.5"
+ },
+ "7873": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Over 14.5"
+ },
+ "7874": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Under 14.5"
+ },
+ "7875": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Over 14.5"
+ },
+ "7876": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Under 14.5"
+ },
+ "7877": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Over 15.5"
+ },
+ "7878": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Round Team 2 Under 15.5"
+ },
+ "7879": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Over 15.5"
+ },
+ "7880": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Round Team 2 Under 15.5"
+ },
+ "7881": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Over 14.5"
+ },
+ "7882": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Under 14.5"
+ },
+ "7883": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Over 14.5"
+ },
+ "7884": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Under 14.5"
+ },
+ "7885": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 512,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -50.5"
+ },
+ "7886": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 50.5"
+ },
+ "7887": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 60.5"
+ },
+ "7888": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 60.5"
+ },
+ "7889": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 77.5"
+ },
+ "7890": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 77.5"
+ },
+ "7891": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 79.5"
+ },
+ "7892": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 79.5"
+ },
+ "7893": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 17.5"
+ },
+ "7894": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 17.5"
+ },
+ "7895": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Over 13.5"
+ },
+ "7896": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Under 13.5"
+ },
+ "7897": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Over 13.5"
+ },
+ "7898": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Round Team 1 Under 13.5"
+ },
+ "7899": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 31.5"
+ },
+ "7900": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 31.5"
+ },
+ "7901": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 62.5"
+ },
+ "7902": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 62.5"
+ },
+ "7903": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 583,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 237.5"
+ },
+ "7904": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 583,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 237.5"
+ },
+ "7905": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 584,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -66.5"
+ },
+ "7906": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 66.5"
+ },
+ "7907": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 80.5"
+ },
+ "7908": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 80.5"
+ },
+ "7909": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 585,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 238.5"
+ },
+ "7910": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 585,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 238.5"
+ },
+ "7911": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 32.5"
+ },
+ "7912": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 32.5"
+ },
+ "7913": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 188,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 153.5"
+ },
+ "7914": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 188,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 153.5"
+ },
+ "7915": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 26.5"
+ },
+ "7916": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -26.5"
+ },
+ "7917": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 28.5"
+ },
+ "7918": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 48,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -28.5"
+ },
+ "7919": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 29.5"
+ },
+ "7920": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 50,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -29.5"
+ },
+ "7921": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 50,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -29.5"
+ },
+ "7922": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 29.5"
+ },
+ "7923": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 166,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 143.5"
+ },
+ "7924": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 166,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 143.5"
+ },
+ "7925": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 126,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 120.5"
+ },
+ "7926": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 126,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 120.5"
+ },
+ "7927": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 61.5"
+ },
+ "7928": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 61.5"
+ },
+ "7929": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 128,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 121.5"
+ },
+ "7930": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 128,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 121.5"
+ },
+ "7931": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 194,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 156.5"
+ },
+ "7932": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 194,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 156.5"
+ },
+ "7933": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 182,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 150.5"
+ },
+ "7934": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 182,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 150.5"
+ },
+ "7935": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 47.5"
+ },
+ "7936": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 47.5"
+ },
+ "7937": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 48.5"
+ },
+ "7938": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 48.5"
+ },
+ "7939": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 132,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 123.5"
+ },
+ "7940": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 132,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 123.5"
+ },
+ "7941": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 2.5"
+ },
+ "7942": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 2.5"
+ },
+ "7943": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 586,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 239.5"
+ },
+ "7944": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 586,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 239.5"
+ },
+ "7945": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 62.5"
+ },
+ "7946": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 62.5"
+ },
+ "7947": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 132,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 123.5"
+ },
+ "7948": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 132,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 123.5"
+ },
+ "7949": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 134,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 124.5"
+ },
+ "7950": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 134,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 124.5"
+ },
+ "7951": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 587,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 240.5"
+ },
+ "7952": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 587,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 240.5"
+ },
+ "7953": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 588,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 241.5"
+ },
+ "7954": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 588,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 241.5"
+ },
+ "7955": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 134,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 124.5"
+ },
+ "7956": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 134,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 124.5"
+ },
+ "7957": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 63.5"
+ },
+ "7958": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 63.5"
+ },
+ "7959": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 136,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 125.5"
+ },
+ "7960": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 136,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 125.5"
+ },
+ "7961": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 12.5"
+ },
+ "7962": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 12.5"
+ },
+ "7963": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 13.5"
+ },
+ "7964": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 13.5"
+ },
+ "7965": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 72.5"
+ },
+ "7966": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 72.5"
+ },
+ "7967": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 70.5"
+ },
+ "7968": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 70.5"
+ },
+ "7969": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 9.5"
+ },
+ "7970": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 9.5"
+ },
+ "7971": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 12.5"
+ },
+ "7972": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 12.5"
+ },
+ "7973": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 57,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -31.5"
+ },
+ "7974": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 31.5"
+ },
+ "7975": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 55,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -30.5"
+ },
+ "7976": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 30.5"
+ },
+ "7977": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 134,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 124.5"
+ },
+ "7978": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 134,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 124.5"
+ },
+ "7979": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 14.5"
+ },
+ "7980": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 14.5"
+ },
+ "7981": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 200,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 159.5"
+ },
+ "7982": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 200,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 159.5"
+ },
+ "7983": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 248,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 186.5"
+ },
+ "7984": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 248,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 186.5"
+ },
+ "7985": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 10.5"
+ },
+ "7986": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 10.5"
+ },
+ "7987": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 83.5"
+ },
+ "7988": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 83.5"
+ },
+ "7989": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 25.5"
+ },
+ "7990": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -25.5"
+ },
+ "7991": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 37.5"
+ },
+ "7992": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 37.5"
+ },
+ "7993": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 26.5"
+ },
+ "7994": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -26.5"
+ },
+ "7995": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 27.5"
+ },
+ "7996": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -27.5"
+ },
+ "7997": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 38.5"
+ },
+ "7998": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 38.5"
+ },
+ "7999": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 28.5"
+ },
+ "8000": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 48,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -28.5"
+ },
+ "8001": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Kill Team 1 H1 29.5"
+ },
+ "8002": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 50,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Kill Team 2 H2 -29.5"
+ },
+ "8003": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 39.5"
+ },
+ "8004": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 39.5"
+ },
+ "8005": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 84.5"
+ },
+ "8006": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 84.5"
+ },
+ "8007": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 85.5"
+ },
+ "8008": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 85.5"
+ },
+ "8009": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 404,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 86.5"
+ },
+ "8010": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 404,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 86.5"
+ },
+ "8011": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 406,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 87.5"
+ },
+ "8012": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 406,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 87.5"
+ },
+ "8013": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 408,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 88.5"
+ },
+ "8014": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 408,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 88.5"
+ },
+ "8015": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 37.5"
+ },
+ "8016": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 37.5"
+ },
+ "8017": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 11.5"
+ },
+ "8018": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 11.5"
+ },
+ "8019": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 14.5"
+ },
+ "8020": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 14.5"
+ },
+ "8021": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 11.5"
+ },
+ "8022": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 11.5"
+ },
+ "8023": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 11.5"
+ },
+ "8024": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 11.5"
+ },
+ "8025": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 0.5"
+ },
+ "8026": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 0.5"
+ },
+ "8027": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 15.5"
+ },
+ "8028": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 15.5"
+ },
+ "8029": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Over 5.5"
+ },
+ "8030": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Under 5.5"
+ },
+ "8031": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -26.5"
+ },
+ "8032": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 26.5"
+ },
+ "8033": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 136,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 125.5"
+ },
+ "8034": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 136,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 125.5"
+ },
+ "8035": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 70.5"
+ },
+ "8036": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 70.5"
+ },
+ "8037": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 71.5"
+ },
+ "8038": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 71.5"
+ },
+ "8039": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 80.5"
+ },
+ "8040": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 80.5"
+ },
+ "8041": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 9.5"
+ },
+ "8042": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -9.5"
+ },
+ "8043": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 40.5"
+ },
+ "8044": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 40.5"
+ },
+ "8045": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 16.5"
+ },
+ "8046": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 16.5"
+ },
+ "8047": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 13.5"
+ },
+ "8048": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 13.5"
+ },
+ "8049": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 12.5"
+ },
+ "8050": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 12.5"
+ },
+ "8051": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 575,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -56.5"
+ },
+ "8052": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 56.5"
+ },
+ "8053": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 8.5"
+ },
+ "8054": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -8.5"
+ },
+ "8055": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 71.5"
+ },
+ "8056": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 71.5"
+ },
+ "8057": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 73.5"
+ },
+ "8058": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 73.5"
+ },
+ "8059": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 75.5"
+ },
+ "8060": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 75.5"
+ },
+ "8061": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 77.5"
+ },
+ "8062": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 77.5"
+ },
+ "8063": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 132,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 123.5"
+ },
+ "8064": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 132,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 123.5"
+ },
+ "8065": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 46.5"
+ },
+ "8066": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 46.5"
+ },
+ "8067": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 518,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 98.5"
+ },
+ "8068": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 518,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 98.5"
+ },
+ "8069": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 45.5"
+ },
+ "8070": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 45.5"
+ },
+ "8071": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 492,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 97.5"
+ },
+ "8072": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 492,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 97.5"
+ },
+ "8073": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 54.5"
+ },
+ "8074": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 573,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -54.5"
+ },
+ "8075": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 48,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -28.5"
+ },
+ "8076": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 28.5"
+ },
+ "8077": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Period Individual Total Goal Team 2 Over 2.5"
+ },
+ "8078": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Period Individual Total Goal Team 2 Under 2.5"
+ },
+ "8079": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 13.5"
+ },
+ "8080": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 13.5"
+ },
+ "8081": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 130,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 122.5"
+ },
+ "8082": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 130,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 122.5"
+ },
+ "8083": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -9.5"
+ },
+ "8084": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 9.5"
+ },
+ "8085": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Winner of match Point 1"
+ },
+ "8086": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Winner of match Point 2"
+ },
+ "8087": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 27.5"
+ },
+ "8088": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 27.5"
+ },
+ "8089": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -3.5"
+ },
+ "8090": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 3.5"
+ },
+ "8091": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 26.5"
+ },
+ "8092": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 26.5"
+ },
+ "8093": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -2.5"
+ },
+ "8094": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 2.5"
+ },
+ "8095": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 21.5"
+ },
+ "8096": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 21.5"
+ },
+ "8097": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 30.5"
+ },
+ "8098": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 30.5"
+ },
+ "8099": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -8.5"
+ },
+ "8100": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 8.5"
+ },
+ "8101": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 19.5"
+ },
+ "8102": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 19.5"
+ },
+ "8103": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 20.5"
+ },
+ "8104": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 20.5"
+ },
+ "8105": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Corner Team 1 H1 0.5"
+ },
+ "8106": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Corner Team 2 H2 -0.5"
+ },
+ "8107": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Corner Team 1 H1 -1.5"
+ },
+ "8108": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Corner Team 2 H2 1.5"
+ },
+ "8109": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Corner Team 1 H1 -0.5"
+ },
+ "8110": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Corner Team 2 H2 0.5"
+ },
+ "8111": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 84.5"
+ },
+ "8112": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 84.5"
+ },
+ "8113": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 192,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Over 155.5"
+ },
+ "8114": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 192,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Set Under 155.5"
+ },
+ "8115": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Corner Team 1 H1 -2.5"
+ },
+ "8116": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Corner Team 2 H2 2.5"
+ },
+ "8117": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 40.5"
+ },
+ "8118": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 40.5"
+ },
+ "8119": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 41.5"
+ },
+ "8120": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 41.5"
+ },
+ "8121": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 136,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 125.5"
+ },
+ "8122": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 136,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 125.5"
+ },
+ "8123": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 589,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 242.5"
+ },
+ "8124": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 589,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 242.5"
+ },
+ "8125": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 590,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 243.5"
+ },
+ "8126": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 590,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 243.5"
+ },
+ "8127": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 13.5"
+ },
+ "8128": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -13.5"
+ },
+ "8129": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 14.5"
+ },
+ "8130": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -14.5"
+ },
+ "8131": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 15.5"
+ },
+ "8132": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -15.5"
+ },
+ "8133": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 38.5"
+ },
+ "8134": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 38.5"
+ },
+ "8135": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 37.5"
+ },
+ "8136": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 37.5"
+ },
+ "8137": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 591,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -99.5"
+ },
+ "8138": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 480,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 99.5"
+ },
+ "8139": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 592,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -103.5"
+ },
+ "8140": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 86,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 103.5"
+ },
+ "8141": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 28.5"
+ },
+ "8142": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 48,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -28.5"
+ },
+ "8143": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 36.5"
+ },
+ "8144": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 36.5"
+ },
+ "8145": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 130,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 122.5"
+ },
+ "8146": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 130,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 122.5"
+ },
+ "8147": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 85.5"
+ },
+ "8148": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 593,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -85.5"
+ },
+ "8149": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 30.5"
+ },
+ "8150": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 55,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -30.5"
+ },
+ "8151": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 32.5"
+ },
+ "8152": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 59,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -32.5"
+ },
+ "8153": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Corner Team 1 H1 1.5"
+ },
+ "8154": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Corner Team 2 H2 -1.5"
+ },
+ "8155": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 477,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -34"
+ },
+ "8156": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 34"
+ },
+ "8157": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 594,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 98"
+ },
+ "8158": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 594,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 98"
+ },
+ "8159": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 595,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 99"
+ },
+ "8160": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 595,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 99"
+ },
+ "8161": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 79,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 100"
+ },
+ "8162": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 79,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 100"
+ },
+ "8163": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 81,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 101"
+ },
+ "8164": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 81,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 101"
+ },
+ "8165": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 39"
+ },
+ "8166": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 39"
+ },
+ "8167": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Over 39"
+ },
+ "8168": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Under 39"
+ },
+ "8169": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Over 39"
+ },
+ "8170": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Under 39"
+ },
+ "8171": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 41"
+ },
+ "8172": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 41"
+ },
+ "8173": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 596,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 225"
+ },
+ "8174": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 596,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 225"
+ },
+ "8175": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 597,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 223"
+ },
+ "8176": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 597,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 223"
+ },
+ "8177": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 598,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 224"
+ },
+ "8178": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 598,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 224"
+ },
+ "8179": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 599,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 226"
+ },
+ "8180": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 599,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 226"
+ },
+ "8181": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 600,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 227"
+ },
+ "8182": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 600,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 227"
+ },
+ "8183": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 601,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 218"
+ },
+ "8184": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 601,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 218"
+ },
+ "8185": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 602,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 219"
+ },
+ "8186": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 602,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 219"
+ },
+ "8187": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 603,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 220"
+ },
+ "8188": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 603,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 220"
+ },
+ "8189": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 604,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 222"
+ },
+ "8190": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 604,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 222"
+ },
+ "8191": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 605,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 221"
+ },
+ "8192": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 605,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 221"
+ },
+ "8193": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 -1"
+ },
+ "8194": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 1"
+ },
+ "8195": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 1"
+ },
+ "8196": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 -1"
+ },
+ "8197": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 2"
+ },
+ "8198": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 -2"
+ },
+ "8199": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 6"
+ },
+ "8200": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 6"
+ },
+ "8201": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 7"
+ },
+ "8202": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 7"
+ },
+ "8203": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 -2"
+ },
+ "8204": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 2"
+ },
+ "8205": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 5"
+ },
+ "8206": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 5"
+ },
+ "8207": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 103,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 110"
+ },
+ "8208": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 103,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 110"
+ },
+ "8209": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 97,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 108"
+ },
+ "8210": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 97,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 108"
+ },
+ "8211": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 99,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 109"
+ },
+ "8212": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 99,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 109"
+ },
+ "8213": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 105,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 111"
+ },
+ "8214": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 105,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 111"
+ },
+ "8215": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 107,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 112"
+ },
+ "8216": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 107,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 112"
+ },
+ "8217": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 55"
+ },
+ "8218": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 55"
+ },
+ "8219": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 53"
+ },
+ "8220": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 53"
+ },
+ "8221": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 54"
+ },
+ "8222": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 54"
+ },
+ "8223": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 56"
+ },
+ "8224": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 56"
+ },
+ "8225": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 57"
+ },
+ "8226": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 57"
+ },
+ "8227": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 93,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 107"
+ },
+ "8228": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 93,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 107"
+ },
+ "8229": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 606,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 199"
+ },
+ "8230": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 606,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 199"
+ },
+ "8231": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 607,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 200"
+ },
+ "8232": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 607,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 200"
+ },
+ "8233": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 608,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 201"
+ },
+ "8234": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 608,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 201"
+ },
+ "8235": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 609,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 202"
+ },
+ "8236": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 609,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 202"
+ },
+ "8237": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 610,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 203"
+ },
+ "8238": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 610,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 203"
+ },
+ "8239": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 611,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 204"
+ },
+ "8240": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 611,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 204"
+ },
+ "8241": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 8"
+ },
+ "8242": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 8"
+ },
+ "8243": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 45,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -27"
+ },
+ "8244": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 27"
+ },
+ "8245": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 513,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -51"
+ },
+ "8246": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 51"
+ },
+ "8247": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 612,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 205"
+ },
+ "8248": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 612,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 205"
+ },
+ "8249": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 613,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 206"
+ },
+ "8250": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 613,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 206"
+ },
+ "8251": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 614,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 207"
+ },
+ "8252": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 614,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 207"
+ },
+ "8253": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 83,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 102"
+ },
+ "8254": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 83,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 102"
+ },
+ "8255": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 615,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 208"
+ },
+ "8256": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 615,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 208"
+ },
+ "8257": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 616,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 209"
+ },
+ "8258": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 616,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 209"
+ },
+ "8259": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 617,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 210"
+ },
+ "8260": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 617,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 210"
+ },
+ "8261": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 618,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 212"
+ },
+ "8262": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 618,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 212"
+ },
+ "8263": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 619,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 211"
+ },
+ "8264": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 619,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 211"
+ },
+ "8265": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 620,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 213"
+ },
+ "8266": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 620,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 213"
+ },
+ "8267": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 85,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 103"
+ },
+ "8268": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 85,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 103"
+ },
+ "8269": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 621,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 214"
+ },
+ "8270": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 621,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 214"
+ },
+ "8271": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 622,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 215"
+ },
+ "8272": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 622,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 215"
+ },
+ "8273": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 87,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 104"
+ },
+ "8274": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 87,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 104"
+ },
+ "8275": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 623,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 216"
+ },
+ "8276": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 623,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 216"
+ },
+ "8277": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 89,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 105"
+ },
+ "8278": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 89,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 105"
+ },
+ "8279": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 624,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 228"
+ },
+ "8280": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 624,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 228"
+ },
+ "8281": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 109,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 113"
+ },
+ "8282": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 109,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 113"
+ },
+ "8283": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 625,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 230"
+ },
+ "8284": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 625,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 230"
+ },
+ "8285": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 626,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 229"
+ },
+ "8286": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 626,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 229"
+ },
+ "8287": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 627,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 231"
+ },
+ "8288": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 627,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 231"
+ },
+ "8289": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 628,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 232"
+ },
+ "8290": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 628,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 232"
+ },
+ "8291": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 629,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 233"
+ },
+ "8292": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 629,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 233"
+ },
+ "8293": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 630,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 234"
+ },
+ "8294": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 630,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 234"
+ },
+ "8295": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 631,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 217"
+ },
+ "8296": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 631,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 217"
+ },
+ "8297": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 115,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 116"
+ },
+ "8298": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 115,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 116"
+ },
+ "8299": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 117,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 117"
+ },
+ "8300": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 117,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 117"
+ },
+ "8301": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 119,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 118"
+ },
+ "8302": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 119,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 118"
+ },
+ "8303": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 121,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 119"
+ },
+ "8304": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 121,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 119"
+ },
+ "8305": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 58"
+ },
+ "8306": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 58"
+ },
+ "8307": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 59"
+ },
+ "8308": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 59"
+ },
+ "8309": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 60"
+ },
+ "8310": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 60"
+ },
+ "8311": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 111,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 114"
+ },
+ "8312": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 111,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 114"
+ },
+ "8313": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 113,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 115"
+ },
+ "8314": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 113,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 115"
+ },
+ "8315": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 51"
+ },
+ "8316": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 51"
+ },
+ "8317": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 91,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 106"
+ },
+ "8318": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 91,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 106"
+ },
+ "8319": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 52"
+ },
+ "8320": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 52"
+ },
+ "8321": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 40"
+ },
+ "8322": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 40"
+ },
+ "8323": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Over 40"
+ },
+ "8324": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Under 40"
+ },
+ "8325": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Over 40"
+ },
+ "8326": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Under 40"
+ },
+ "8327": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 61"
+ },
+ "8328": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 61"
+ },
+ "8329": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 632,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 235"
+ },
+ "8330": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 632,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 235"
+ },
+ "8331": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 125,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 120"
+ },
+ "8332": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 125,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 120"
+ },
+ "8333": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 62"
+ },
+ "8334": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 62"
+ },
+ "8335": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 127,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 121"
+ },
+ "8336": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 127,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 121"
+ },
+ "8337": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Map Team 1 H1"
+ },
+ "8338": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Map Team 2 H2"
+ },
+ "8339": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 633,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 -211"
+ },
+ "8340": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 619,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 211"
+ },
+ "8341": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 430,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -22"
+ },
+ "8342": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 22"
+ },
+ "8343": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -11"
+ },
+ "8344": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 11"
+ },
+ "8345": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 109,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 113"
+ },
+ "8346": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 109,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 113"
+ },
+ "8347": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 87,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 104"
+ },
+ "8348": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 87,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 104"
+ },
+ "8349": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 515,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -52"
+ },
+ "8350": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 52"
+ },
+ "8351": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 39"
+ },
+ "8352": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 39"
+ },
+ "8353": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 26"
+ },
+ "8354": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 26"
+ },
+ "8355": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Over 41"
+ },
+ "8356": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Under 41"
+ },
+ "8357": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Over 41"
+ },
+ "8358": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Under 41"
+ },
+ "8359": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 383,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 77"
+ },
+ "8360": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 383,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 77"
+ },
+ "8361": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 385,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 78"
+ },
+ "8362": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 385,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 78"
+ },
+ "8363": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 387,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 79"
+ },
+ "8364": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 387,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 79"
+ },
+ "8365": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 634,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 236"
+ },
+ "8366": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 634,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 236"
+ },
+ "8367": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 635,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 237"
+ },
+ "8368": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 635,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 237"
+ },
+ "8369": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 62"
+ },
+ "8370": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 62"
+ },
+ "8371": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 59"
+ },
+ "8372": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 59"
+ },
+ "8373": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 115,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 116"
+ },
+ "8374": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 115,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 116"
+ },
+ "8375": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 129,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 122"
+ },
+ "8376": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 129,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 122"
+ },
+ "8377": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 10"
+ },
+ "8378": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -10"
+ },
+ "8379": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 636,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 238"
+ },
+ "8380": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 636,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 238"
+ },
+ "8381": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 637,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 239"
+ },
+ "8382": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 637,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 239"
+ },
+ "8383": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 28"
+ },
+ "8384": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 47,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -28"
+ },
+ "8385": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 27"
+ },
+ "8386": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 45,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -27"
+ },
+ "8387": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 29"
+ },
+ "8388": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 49,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -29"
+ },
+ "8389": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 47,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -28"
+ },
+ "8390": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 28"
+ },
+ "8391": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 49,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -29"
+ },
+ "8392": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 29"
+ },
+ "8393": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 397,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 83"
+ },
+ "8394": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 397,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 83"
+ },
+ "8395": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 48"
+ },
+ "8396": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 48"
+ },
+ "8397": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 131,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 123"
+ },
+ "8398": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 131,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 123"
+ },
+ "8399": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 63"
+ },
+ "8400": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 63"
+ },
+ "8401": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 638,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 240"
+ },
+ "8402": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 638,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 240"
+ },
+ "8403": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 639,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 241"
+ },
+ "8404": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 639,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 241"
+ },
+ "8405": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 640,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 242"
+ },
+ "8406": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 640,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 242"
+ },
+ "8407": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 133,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 124"
+ },
+ "8408": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 133,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 124"
+ },
+ "8409": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Over 39"
+ },
+ "8410": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Duration Minute Under 39"
+ },
+ "8411": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Over 39"
+ },
+ "8412": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Duration Minute Under 39"
+ },
+ "8413": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 135,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 125"
+ },
+ "8414": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 135,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 125"
+ },
+ "8415": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 27"
+ },
+ "8416": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 27"
+ },
+ "8417": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 16"
+ },
+ "8418": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 16"
+ },
+ "8419": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 54,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -30"
+ },
+ "8420": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 30"
+ },
+ "8421": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 56,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -31"
+ },
+ "8422": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 31"
+ },
+ "8423": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 97,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 108"
+ },
+ "8424": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 97,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 108"
+ },
+ "8425": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 18"
+ },
+ "8426": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 18"
+ },
+ "8427": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 37"
+ },
+ "8428": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 37"
+ },
+ "8429": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 10"
+ },
+ "8430": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 10"
+ },
+ "8431": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 11"
+ },
+ "8432": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 11"
+ },
+ "8433": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 12"
+ },
+ "8434": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 12"
+ },
+ "8435": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 125,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 120"
+ },
+ "8436": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 125,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 120"
+ },
+ "8437": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 103,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 110"
+ },
+ "8438": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 103,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 110"
+ },
+ "8439": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 20"
+ },
+ "8440": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 38,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -20"
+ },
+ "8441": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 427,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -23"
+ },
+ "8442": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 23"
+ },
+ "8443": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 432,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -24"
+ },
+ "8444": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 24"
+ },
+ "8445": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 17"
+ },
+ "8446": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 17"
+ },
+ "8447": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Map Team 1 H1 -2"
+ },
+ "8448": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Map Team 2 H2 2"
+ },
+ "8449": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 79,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 100"
+ },
+ "8450": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 641,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -100"
+ },
+ "8451": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 50"
+ },
+ "8452": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 50"
+ },
+ "8453": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 6"
+ },
+ "8454": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 6"
+ },
+ "8455": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 5"
+ },
+ "8456": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 5"
+ },
+ "8457": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 369,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 70"
+ },
+ "8458": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 369,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 70"
+ },
+ "8459": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 371,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 71"
+ },
+ "8460": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 371,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 71"
+ },
+ "8461": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 373,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 72"
+ },
+ "8462": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 373,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 72"
+ },
+ "8463": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 391,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 80"
+ },
+ "8464": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 391,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 80"
+ },
+ "8465": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 517,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -53"
+ },
+ "8466": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 53"
+ },
+ "8467": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 8"
+ },
+ "8468": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -8"
+ },
+ "8469": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 9"
+ },
+ "8470": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -9"
+ },
+ "8471": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 17"
+ },
+ "8472": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 17"
+ },
+ "8473": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 40"
+ },
+ "8474": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 40"
+ },
+ "8475": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 393,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 81"
+ },
+ "8476": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 393,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 81"
+ },
+ "8477": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 373,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 72"
+ },
+ "8478": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 373,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 72"
+ },
+ "8479": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 371,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 71"
+ },
+ "8480": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 371,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 71"
+ },
+ "8481": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 375,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 73"
+ },
+ "8482": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 375,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 73"
+ },
+ "8483": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 377,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 74"
+ },
+ "8484": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 377,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 74"
+ },
+ "8485": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 379,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 75"
+ },
+ "8486": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 379,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 75"
+ },
+ "8487": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 381,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 76"
+ },
+ "8488": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 381,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 76"
+ },
+ "8489": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 383,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 77"
+ },
+ "8490": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 383,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 77"
+ },
+ "8491": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 369,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 70"
+ },
+ "8492": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 369,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 70"
+ },
+ "8493": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 365,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 69"
+ },
+ "8494": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 365,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 69"
+ },
+ "8495": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 66"
+ },
+ "8496": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 66"
+ },
+ "8497": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 361,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 67"
+ },
+ "8498": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 361,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 67"
+ },
+ "8499": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 363,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 68"
+ },
+ "8500": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 363,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 68"
+ },
+ "8501": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 595,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 99"
+ },
+ "8502": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 595,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 99"
+ },
+ "8503": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 46"
+ },
+ "8504": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 46"
+ },
+ "8505": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 594,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 98"
+ },
+ "8506": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 594,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 98"
+ },
+ "8507": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 523,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 97"
+ },
+ "8508": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 523,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 97"
+ },
+ "8509": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 47,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -28"
+ },
+ "8510": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 28"
+ },
+ "8511": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 54"
+ },
+ "8512": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 642,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -54"
+ },
+ "8513": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 49,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -29"
+ },
+ "8514": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 29"
+ },
+ "8515": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 55"
+ },
+ "8516": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 643,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -55"
+ },
+ "8517": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 56"
+ },
+ "8518": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 644,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -56"
+ },
+ "8519": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 645,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 1333"
+ },
+ "8520": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 645,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 1333"
+ },
+ "8521": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 64"
+ },
+ "8522": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 64"
+ },
+ "8523": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 65"
+ },
+ "8524": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 65"
+ },
+ "8525": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -6"
+ },
+ "8526": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 6"
+ },
+ "8527": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 20"
+ },
+ "8528": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 20"
+ },
+ "8529": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 21"
+ },
+ "8530": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 21"
+ },
+ "8531": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -3"
+ },
+ "8532": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 3"
+ },
+ "8533": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 1"
+ },
+ "8534": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -1"
+ },
+ "8535": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -7"
+ },
+ "8536": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 7"
+ },
+ "8537": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 28"
+ },
+ "8538": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 28"
+ },
+ "8539": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -8"
+ },
+ "8540": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 8"
+ },
+ "8541": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 15"
+ },
+ "8542": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 15"
+ },
+ "8543": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 117,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 117"
+ },
+ "8544": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 117,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 117"
+ },
+ "8545": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 105,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 111"
+ },
+ "8546": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 105,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 111"
+ },
+ "8547": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 105,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 111"
+ },
+ "8548": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 105,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 111"
+ },
+ "8549": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Corner Team 1 H1 -2"
+ },
+ "8550": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Corner Team 2 H2 2"
+ },
+ "8551": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Corner Team 1 H1 -1"
+ },
+ "8552": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Corner Team 2 H2 1"
+ },
+ "8553": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Corner Team 1 H1"
+ },
+ "8554": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Corner Team 2 H2"
+ },
+ "8555": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 1"
+ },
+ "8556": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 1"
+ },
+ "8557": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 58,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -32"
+ },
+ "8558": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 32"
+ },
+ "8559": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 646,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 243"
+ },
+ "8560": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 646,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 243"
+ },
+ "8561": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 64"
+ },
+ "8562": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 64"
+ },
+ "8563": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 15"
+ },
+ "8564": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 15"
+ },
+ "8565": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 642,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -54"
+ },
+ "8566": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 54"
+ },
+ "8567": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 647,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -95"
+ },
+ "8568": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 520,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 95"
+ },
+ "8569": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 13"
+ },
+ "8570": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -13"
+ },
+ "8571": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 14"
+ },
+ "8572": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -14"
+ },
+ "8573": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 15"
+ },
+ "8574": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -15"
+ },
+ "8575": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 27"
+ },
+ "8576": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 45,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -27"
+ },
+ "8577": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -12"
+ },
+ "8578": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 12"
+ },
+ "8579": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 2"
+ },
+ "8580": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 2"
+ },
+ "8581": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 29"
+ },
+ "8582": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 49,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -29"
+ },
+ "8583": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 36"
+ },
+ "8584": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 36"
+ },
+ "8585": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Corner Team 1 H1 1"
+ },
+ "8586": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Corner Team 2 H2 -1"
+ },
+ "8587": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -9"
+ },
+ "8588": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 9"
+ },
+ "8589": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 17"
+ },
+ "8590": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 17"
+ },
+ "8591": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 648,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -163"
+ },
+ "8592": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 209,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 163"
+ },
+ "8593": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 115,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 116"
+ },
+ "8594": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 115,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 116"
+ },
+ "8595": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 97,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 108"
+ },
+ "8596": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 97,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 108"
+ },
+ "8597": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 52"
+ },
+ "8598": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 52"
+ },
+ "8599": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 42"
+ },
+ "8600": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 42"
+ },
+ "8601": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Over 42"
+ },
+ "8602": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Under 42"
+ },
+ "8603": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Kill Over 63.5"
+ },
+ "8604": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Kill Under 63.5"
+ },
+ "8605": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 12.5"
+ },
+ "8606": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 -12.5"
+ },
+ "8607": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 38.5"
+ },
+ "8608": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 38.5"
+ },
+ "8609": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 39.5"
+ },
+ "8610": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 39.5"
+ },
+ "8611": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Over 51.5"
+ },
+ "8612": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Under 51.5"
+ },
+ "8613": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 414,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 90.5"
+ },
+ "8614": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 414,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 90.5"
+ },
+ "8615": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 410,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 89.5"
+ },
+ "8616": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 410,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 89.5"
+ },
+ "8617": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 415,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 91.5"
+ },
+ "8618": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 415,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 91.5"
+ },
+ "8619": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 39.5"
+ },
+ "8620": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 39.5"
+ },
+ "8621": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 459,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 92.5"
+ },
+ "8622": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 459,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 92.5"
+ },
+ "8623": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 417,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 95.5"
+ },
+ "8624": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 417,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 95.5"
+ },
+ "8625": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 487,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 94.5"
+ },
+ "8626": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 487,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 94.5"
+ },
+ "8627": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 406,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 87.5"
+ },
+ "8628": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 406,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 87.5"
+ },
+ "8629": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 41.5"
+ },
+ "8630": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 41.5"
+ },
+ "8631": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 42.5"
+ },
+ "8632": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 42.5"
+ },
+ "8633": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 416,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 93.5"
+ },
+ "8634": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 416,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 93.5"
+ },
+ "8635": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Map Over 51.5"
+ },
+ "8636": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Map Under 51.5"
+ },
+ "8637": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 38.5"
+ },
+ "8638": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 38.5"
+ },
+ "8639": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 85.5"
+ },
+ "8640": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 85.5"
+ },
+ "8641": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 649,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 244.5"
+ },
+ "8642": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 649,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 244.5"
+ },
+ "8643": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 650,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 245.5"
+ },
+ "8644": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 650,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 245.5"
+ },
+ "8645": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 651,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 1369.5"
+ },
+ "8646": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 651,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 1369.5"
+ },
+ "8647": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 138,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 126.5"
+ },
+ "8648": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 138,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 126.5"
+ },
+ "8649": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 652,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -61.5"
+ },
+ "8650": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 61.5"
+ },
+ "8651": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 64.5"
+ },
+ "8652": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 64.5"
+ },
+ "8653": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 65.5"
+ },
+ "8654": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 65.5"
+ },
+ "8655": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 78.5"
+ },
+ "8656": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 78.5"
+ },
+ "8657": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 3.5"
+ },
+ "8658": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -3.5"
+ },
+ "8659": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 2.5"
+ },
+ "8660": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -2.5"
+ },
+ "8661": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 70.5"
+ },
+ "8662": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 70.5"
+ },
+ "8663": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 4.5"
+ },
+ "8664": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -4.5"
+ },
+ "8665": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 75.5"
+ },
+ "8666": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 75.5"
+ },
+ "8667": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 81.5"
+ },
+ "8668": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 81.5"
+ },
+ "8669": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 83.5"
+ },
+ "8670": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 83.5"
+ },
+ "8671": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -1.5"
+ },
+ "8672": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 1.5"
+ },
+ "8673": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 72.5"
+ },
+ "8674": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 72.5"
+ },
+ "8675": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -4.5"
+ },
+ "8676": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 4.5"
+ },
+ "8677": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 69.5"
+ },
+ "8678": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 69.5"
+ },
+ "8679": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 71.5"
+ },
+ "8680": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 71.5"
+ },
+ "8681": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 73.5"
+ },
+ "8682": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 73.5"
+ },
+ "8683": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 74.5"
+ },
+ "8684": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 74.5"
+ },
+ "8685": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 8.5"
+ },
+ "8686": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -8.5"
+ },
+ "8687": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 10.5"
+ },
+ "8688": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -10.5"
+ },
+ "8689": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 7.5"
+ },
+ "8690": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -7.5"
+ },
+ "8691": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 9.5"
+ },
+ "8692": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -9.5"
+ },
+ "8693": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 76.5"
+ },
+ "8694": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 76.5"
+ },
+ "8695": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 0.5"
+ },
+ "8696": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -0.5"
+ },
+ "8697": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 82.5"
+ },
+ "8698": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 82.5"
+ },
+ "8699": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 67.5"
+ },
+ "8700": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 67.5"
+ },
+ "8701": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 66.5"
+ },
+ "8702": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 66.5"
+ },
+ "8703": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 77.5"
+ },
+ "8704": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 77.5"
+ },
+ "8705": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 6.5"
+ },
+ "8706": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -6.5"
+ },
+ "8707": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 5.5"
+ },
+ "8708": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -5.5"
+ },
+ "8709": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 65.5"
+ },
+ "8710": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 65.5"
+ },
+ "8711": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 1.5"
+ },
+ "8712": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -1.5"
+ },
+ "8713": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 68.5"
+ },
+ "8714": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 68.5"
+ },
+ "8715": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 80.5"
+ },
+ "8716": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 80.5"
+ },
+ "8717": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -0.5"
+ },
+ "8718": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 0.5"
+ },
+ "8719": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 79.5"
+ },
+ "8720": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 79.5"
+ },
+ "8721": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 64.5"
+ },
+ "8722": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 64.5"
+ },
+ "8723": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -7.5"
+ },
+ "8724": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 7.5"
+ },
+ "8725": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -6.5"
+ },
+ "8726": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 6.5"
+ },
+ "8727": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 62.5"
+ },
+ "8728": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 62.5"
+ },
+ "8729": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 63.5"
+ },
+ "8730": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 63.5"
+ },
+ "8731": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 60.5"
+ },
+ "8732": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 60.5"
+ },
+ "8733": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -5.5"
+ },
+ "8734": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 5.5"
+ },
+ "8735": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 11.5"
+ },
+ "8736": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -11.5"
+ },
+ "8737": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 84.5"
+ },
+ "8738": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 84.5"
+ },
+ "8739": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 406,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 87.5"
+ },
+ "8740": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 406,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 87.5"
+ },
+ "8741": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 12.5"
+ },
+ "8742": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -12.5"
+ },
+ "8743": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 64.5"
+ },
+ "8744": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 64.5"
+ },
+ "8745": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 33.5"
+ },
+ "8746": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 33.5"
+ },
+ "8747": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 22.5"
+ },
+ "8748": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 22.5"
+ },
+ "8749": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 23.5"
+ },
+ "8750": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 23.5"
+ },
+ "8751": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 33.5"
+ },
+ "8752": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 33.5"
+ },
+ "8753": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 24.5"
+ },
+ "8754": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 24.5"
+ },
+ "8755": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 29.5"
+ },
+ "8756": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 29.5"
+ },
+ "8757": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -13.5"
+ },
+ "8758": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 13.5"
+ },
+ "8759": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Period Individual Total Goal Team 1 Over 2.5"
+ },
+ "8760": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 52,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Period Individual Total Goal Team 1 Under 2.5"
+ },
+ "8761": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 35.5"
+ },
+ "8762": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 35.5"
+ },
+ "8763": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 755,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "To Qualify Winner of match Goal 1"
+ },
+ "8764": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 755,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "To Qualify Winner of match Goal 2"
+ },
+ "8765": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 756,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "To Win Final Winner of match Goal 1"
+ },
+ "8766": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 756,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "To Win Final Winner of match Goal 2"
+ },
+ "8767": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 757,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "To Take 3rd Place Winner of match Goal 1"
+ },
+ "8768": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 757,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "To Take 3rd Place Winner of match Goal 2"
+ },
+ "8769": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 3.5"
+ },
+ "8770": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 3.5"
+ },
+ "8771": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -9.5"
+ },
+ "8772": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 9.5"
+ },
+ "8773": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 16.5"
+ },
+ "8774": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 85.5"
+ },
+ "8775": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 85.5"
+ },
+ "8776": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 404,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 86.5"
+ },
+ "8777": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 404,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 86.5"
+ },
+ "8778": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 11.5"
+ },
+ "8779": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 11.5"
+ },
+ "8780": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Kill Over 27.5"
+ },
+ "8781": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Kill Under 27.5"
+ },
+ "8782": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Game Team 1 H1 5.5"
+ },
+ "8783": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Game Team 2 H2 -5.5"
+ },
+ "8784": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 4.5"
+ },
+ "8785": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 4.5"
+ },
+ "8786": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 10.5"
+ },
+ "8787": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 10.5"
+ },
+ "8788": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 16.5"
+ },
+ "8789": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 16.5"
+ },
+ "8790": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Game Team 1 H1 -5.5"
+ },
+ "8791": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Game Team 2 H2 5.5"
+ },
+ "8792": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 13.5"
+ },
+ "8793": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 13.5"
+ },
+ "8794": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 138,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 126.5"
+ },
+ "8795": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 138,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 126.5"
+ },
+ "8796": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 132,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 123.5"
+ },
+ "8797": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 653,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 246.5"
+ },
+ "8798": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 653,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 246.5"
+ },
+ "8799": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 134,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 124.5"
+ },
+ "8800": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 59.5"
+ },
+ "8801": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 59.5"
+ },
+ "8802": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 65.5"
+ },
+ "8803": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 65.5"
+ },
+ "8804": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 32.5"
+ },
+ "8805": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 12.5"
+ },
+ "8806": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 12.5"
+ },
+ "8807": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 63.5"
+ },
+ "8808": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 5.5"
+ },
+ "8809": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 -5.5"
+ },
+ "8810": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 6.5"
+ },
+ "8811": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 -6.5"
+ },
+ "8812": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 8.5"
+ },
+ "8813": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 -8.5"
+ },
+ "8814": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 9.5"
+ },
+ "8815": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 -9.5"
+ },
+ "8816": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Over 27.5"
+ },
+ "8817": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Under 27.5"
+ },
+ "8818": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 60.5"
+ },
+ "8819": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 576,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -60.5"
+ },
+ "8820": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 4.5"
+ },
+ "8821": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 4.5"
+ },
+ "8822": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 4.5"
+ },
+ "8823": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 4.5"
+ },
+ "8824": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 5.5"
+ },
+ "8825": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 5.5"
+ },
+ "8826": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 30.5"
+ },
+ "8827": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 30.5"
+ },
+ "8828": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 32.5"
+ },
+ "8829": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 32.5"
+ },
+ "8830": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 4.5"
+ },
+ "8831": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 4.5"
+ },
+ "8832": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 11.5"
+ },
+ "8833": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 11.5"
+ },
+ "8834": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 11.5"
+ },
+ "8835": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 11.5"
+ },
+ "8836": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 5.5"
+ },
+ "8837": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 5.5"
+ },
+ "8838": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 16.5"
+ },
+ "8839": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 16.5"
+ },
+ "8840": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 23.5"
+ },
+ "8841": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -23.5"
+ },
+ "8842": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 24.5"
+ },
+ "8843": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -24.5"
+ },
+ "8844": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 25.5"
+ },
+ "8845": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -25.5"
+ },
+ "8846": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 4.5"
+ },
+ "8847": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 4.5"
+ },
+ "8848": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Run Team 2 Over 4.5"
+ },
+ "8849": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Run Team 2 Under 4.5"
+ },
+ "8850": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 7.5"
+ },
+ "8851": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 -7.5"
+ },
+ "8852": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 36.5"
+ },
+ "8853": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 442,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -36.5"
+ },
+ "8854": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 30.5"
+ },
+ "8855": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 55,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -30.5"
+ },
+ "8856": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 10.5"
+ },
+ "8857": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 10.5"
+ },
+ "8858": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 10.5"
+ },
+ "8859": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 10.5"
+ },
+ "8860": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 4.5"
+ },
+ "8861": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 4.5"
+ },
+ "8862": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 -3.5"
+ },
+ "8863": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 3.5"
+ },
+ "8864": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 -5.5"
+ },
+ "8865": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 5.5"
+ },
+ "8866": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 -4.5"
+ },
+ "8867": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 4.5"
+ },
+ "8868": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 524,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -58.5"
+ },
+ "8869": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 58.5"
+ },
+ "8870": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Run Team 1 Over 4.5"
+ },
+ "8871": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Run Team 1 Under 4.5"
+ },
+ "8872": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 3.5"
+ },
+ "8873": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 -3.5"
+ },
+ "8874": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 64.5"
+ },
+ "8875": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 -6.5"
+ },
+ "8876": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 6.5"
+ },
+ "8877": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 -8.5"
+ },
+ "8878": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 8.5"
+ },
+ "8879": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Over 10.5"
+ },
+ "8880": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Run Team 1 Under 10.5"
+ },
+ "8881": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Over 8.5"
+ },
+ "8882": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Under 8.5"
+ },
+ "8883": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Run Team 1 Over 5.5"
+ },
+ "8884": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Run Team 1 Under 5.5"
+ },
+ "8885": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 654,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -113.5"
+ },
+ "8886": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 110,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 113.5"
+ },
+ "8887": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 655,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 255.5"
+ },
+ "8888": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 655,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 255.5"
+ },
+ "8889": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 26.5"
+ },
+ "8890": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 26.5"
+ },
+ "8891": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 18.5"
+ },
+ "8892": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 18.5"
+ },
+ "8893": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Run Team 2 Over 5.5"
+ },
+ "8894": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Run Team 2 Under 5.5"
+ },
+ "8895": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 582,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -76.5"
+ },
+ "8896": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 76.5"
+ },
+ "8897": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 656,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -65.5"
+ },
+ "8898": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 65.5"
+ },
+ "8899": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 508,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 127.5"
+ },
+ "8900": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 508,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 127.5"
+ },
+ "8901": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Over 26.5"
+ },
+ "8902": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Under 26.5"
+ },
+ "8903": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 657,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 247.5"
+ },
+ "8904": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 657,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 247.5"
+ },
+ "8905": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -10.5"
+ },
+ "8906": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 10.5"
+ },
+ "8907": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 10.5"
+ },
+ "8908": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -10.5"
+ },
+ "8909": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 39.5"
+ },
+ "8910": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 39.5"
+ },
+ "8911": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 15.5"
+ },
+ "8912": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 15.5"
+ },
+ "8913": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 408,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 88.5"
+ },
+ "8914": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 408,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 88.5"
+ },
+ "8915": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 414,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 90.5"
+ },
+ "8916": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 414,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 90.5"
+ },
+ "8917": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 410,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 89.5"
+ },
+ "8918": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 410,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 89.5"
+ },
+ "8919": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -25.5"
+ },
+ "8920": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 25.5"
+ },
+ "8921": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 -7.5"
+ },
+ "8922": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 7.5"
+ },
+ "8923": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Over 47.5"
+ },
+ "8924": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Under 47.5"
+ },
+ "8925": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Map Over 47.5"
+ },
+ "8926": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Map Under 47.5"
+ },
+ "8927": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Map Over 47.5"
+ },
+ "8928": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Map Under 47.5"
+ },
+ "8929": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Over 46.5"
+ },
+ "8930": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Under 46.5"
+ },
+ "8931": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Map Over 46.5"
+ },
+ "8932": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Map Under 46.5"
+ },
+ "8933": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Map Over 46.5"
+ },
+ "8934": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Map Under 46.5"
+ },
+ "8935": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Run Team 1 H1 4.5"
+ },
+ "8936": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Run Team 2 H2 -4.5"
+ },
+ "8937": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 136,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 125.5"
+ },
+ "8938": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 521,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -47.5"
+ },
+ "8939": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 47.5"
+ },
+ "8940": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Over 48.5"
+ },
+ "8941": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Under 48.5"
+ },
+ "8942": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Map Over 48.5"
+ },
+ "8943": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Map Under 48.5"
+ },
+ "8944": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Map Over 48.5"
+ },
+ "8945": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Map Under 48.5"
+ },
+ "8946": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 33.5"
+ },
+ "8947": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 658,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 250.5"
+ },
+ "8948": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 658,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 250.5"
+ },
+ "8949": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 659,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 249.5"
+ },
+ "8950": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 659,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 249.5"
+ },
+ "8951": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 660,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 248.5"
+ },
+ "8952": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 660,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 248.5"
+ },
+ "8953": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 138,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 126.5"
+ },
+ "8954": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 661,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 251.5"
+ },
+ "8955": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 661,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 251.5"
+ },
+ "8956": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 13.5"
+ },
+ "8957": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 13.5"
+ },
+ "8958": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 13.5"
+ },
+ "8959": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 13.5"
+ },
+ "8960": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 2.5"
+ },
+ "8961": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 2.5"
+ },
+ "8962": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -11.5"
+ },
+ "8963": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 11.5"
+ },
+ "8964": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Over 45.5"
+ },
+ "8965": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Under 45.5"
+ },
+ "8966": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Map Over 45.5"
+ },
+ "8967": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Map Under 45.5"
+ },
+ "8968": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Map Over 45.5"
+ },
+ "8969": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Map Under 45.5"
+ },
+ "8970": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 12.5"
+ },
+ "8971": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 12.5"
+ },
+ "8972": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 12.5"
+ },
+ "8973": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 12.5"
+ },
+ "8974": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 14.5"
+ },
+ "8975": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 14.5"
+ },
+ "8976": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 508,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 127.5"
+ },
+ "8977": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 508,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 127.5"
+ },
+ "8978": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 65.5"
+ },
+ "8979": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 66.5"
+ },
+ "8980": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 66.5"
+ },
+ "8981": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 11.5"
+ },
+ "8982": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 11.5"
+ },
+ "8983": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 11.5"
+ },
+ "8984": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 11.5"
+ },
+ "8985": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 4.5"
+ },
+ "8986": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 4.5"
+ },
+ "8987": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 593,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -85.5"
+ },
+ "8988": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 85.5"
+ },
+ "8989": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 662,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -57.5"
+ },
+ "8990": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 57.5"
+ },
+ "8991": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 19.5"
+ },
+ "8992": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 19.5"
+ },
+ "8993": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 41.5"
+ },
+ "8994": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 41.5"
+ },
+ "8995": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 505,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 128.5"
+ },
+ "8996": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 505,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 128.5"
+ },
+ "8997": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 34.5"
+ },
+ "8998": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 34.5"
+ },
+ "8999": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 505,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 128.5"
+ },
+ "9000": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 505,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 128.5"
+ },
+ "9001": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 66.5"
+ },
+ "9002": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 66.5"
+ },
+ "9003": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 507,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 129.5"
+ },
+ "9004": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 507,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 129.5"
+ },
+ "9005": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 7.5"
+ },
+ "9006": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 -7.5"
+ },
+ "9007": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 4.5"
+ },
+ "9008": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 4.5"
+ },
+ "9009": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 5.5"
+ },
+ "9010": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 5.5"
+ },
+ "9011": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 6.5"
+ },
+ "9012": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 6.5"
+ },
+ "9013": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 580,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -73.5"
+ },
+ "9014": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 73.5"
+ },
+ "9015": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 19.5"
+ },
+ "9016": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 19.5"
+ },
+ "9017": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 136,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 125.5"
+ },
+ "9018": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 64.5"
+ },
+ "9019": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 134,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 124.5"
+ },
+ "9020": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 32.5"
+ },
+ "9021": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 20.5"
+ },
+ "9022": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 20.5"
+ },
+ "9023": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 25.5"
+ },
+ "9024": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 25.5"
+ },
+ "9025": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 16.5"
+ },
+ "9026": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 38.5"
+ },
+ "9027": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 38.5"
+ },
+ "9028": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 39.5"
+ },
+ "9029": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 39.5"
+ },
+ "9030": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 41.5"
+ },
+ "9031": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 41.5"
+ },
+ "9032": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 40.5"
+ },
+ "9033": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 40.5"
+ },
+ "9034": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 29.5"
+ },
+ "9035": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 29.5"
+ },
+ "9036": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 30.5"
+ },
+ "9037": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 30.5"
+ },
+ "9038": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 31.5"
+ },
+ "9039": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 31.5"
+ },
+ "9040": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 132,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 123.5"
+ },
+ "9041": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 505,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 128.5"
+ },
+ "9042": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 507,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 129.5"
+ },
+ "9043": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 63.5"
+ },
+ "9044": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 500,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 130.5"
+ },
+ "9045": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 500,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 130.5"
+ },
+ "9046": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 67.5"
+ },
+ "9047": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 67.5"
+ },
+ "9048": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 3.5"
+ },
+ "9049": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 3.5"
+ },
+ "9050": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 2.5"
+ },
+ "9051": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 2.5"
+ },
+ "9052": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 2.5"
+ },
+ "9053": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 2.5"
+ },
+ "9054": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 33.5"
+ },
+ "9055": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 33.5"
+ },
+ "9056": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 50.5"
+ },
+ "9057": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 512,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -50.5"
+ },
+ "9058": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 48.5"
+ },
+ "9059": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 497,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -48.5"
+ },
+ "9060": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 56.5"
+ },
+ "9061": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 575,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -56.5"
+ },
+ "9062": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 59,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -32.5"
+ },
+ "9063": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 32.5"
+ },
+ "9064": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 511,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -49.5"
+ },
+ "9065": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 49.5"
+ },
+ "9066": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 497,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -48.5"
+ },
+ "9067": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 48.5"
+ },
+ "9068": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 64.5"
+ },
+ "9069": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 526,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -64.5"
+ },
+ "9070": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 68.5"
+ },
+ "9071": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 663,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -68.5"
+ },
+ "9072": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 51,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Inning Winner of match Run 1"
+ },
+ "9073": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 51,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Inning Winner of match Run 2"
+ },
+ "9074": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 17.5"
+ },
+ "9075": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 -17.5"
+ },
+ "9076": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 15.5"
+ },
+ "9077": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -10.5"
+ },
+ "9078": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 10.5"
+ },
+ "9079": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 31.5"
+ },
+ "9080": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 31.5"
+ },
+ "9081": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 31.5"
+ },
+ "9082": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 31.5"
+ },
+ "9083": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 77.5"
+ },
+ "9084": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 77.5"
+ },
+ "9085": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 78.5"
+ },
+ "9086": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 78.5"
+ },
+ "9087": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 34.5"
+ },
+ "9088": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 34.5"
+ },
+ "9089": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 79.5"
+ },
+ "9090": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 79.5"
+ },
+ "9091": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 35.5"
+ },
+ "9092": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 35.5"
+ },
+ "9093": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Over 82.5"
+ },
+ "9094": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Kill Under 82.5"
+ },
+ "9095": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 33.5"
+ },
+ "9096": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 33.5"
+ },
+ "9097": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 77.5"
+ },
+ "9098": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 77.5"
+ },
+ "9099": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Over 78.5"
+ },
+ "9100": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Kill Under 78.5"
+ },
+ "9101": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 34.5"
+ },
+ "9102": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 34.5"
+ },
+ "9103": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Over 35.5"
+ },
+ "9104": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Kill Team 2 Under 35.5"
+ },
+ "9105": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 573,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -54.5"
+ },
+ "9106": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 54.5"
+ },
+ "9107": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 50,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -29.5"
+ },
+ "9108": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 29.5"
+ },
+ "9109": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 15.5"
+ },
+ "9110": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 664,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -63.5"
+ },
+ "9111": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 63.5"
+ },
+ "9112": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 581,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -59.5"
+ },
+ "9113": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 59.5"
+ },
+ "9114": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 665,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -67.5"
+ },
+ "9115": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 67.5"
+ },
+ "9116": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 431,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -33.5"
+ },
+ "9117": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 33.5"
+ },
+ "9118": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 25.5"
+ },
+ "9119": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -25.5"
+ },
+ "9120": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 45.5"
+ },
+ "9121": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 483,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -45.5"
+ },
+ "9122": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 44.5"
+ },
+ "9123": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 485,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -44.5"
+ },
+ "9124": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 43.5"
+ },
+ "9125": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 449,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -43.5"
+ },
+ "9126": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 46.5"
+ },
+ "9127": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 493,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -46.5"
+ },
+ "9128": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 47.5"
+ },
+ "9129": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 521,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -47.5"
+ },
+ "9130": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 42.5"
+ },
+ "9131": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 447,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -42.5"
+ },
+ "9132": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 40.5"
+ },
+ "9133": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 482,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -40.5"
+ },
+ "9134": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 41.5"
+ },
+ "9135": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 445,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -41.5"
+ },
+ "9136": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 72.5"
+ },
+ "9137": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 72.5"
+ },
+ "9138": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Game Team 1 H1 4.5"
+ },
+ "9139": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Game Team 2 H2 -4.5"
+ },
+ "9140": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 8.5"
+ },
+ "9141": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 8.5"
+ },
+ "9142": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 439,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -37.5"
+ },
+ "9143": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 37.5"
+ },
+ "9144": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 445,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -41.5"
+ },
+ "9145": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 41.5"
+ },
+ "9146": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 666,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 3145.5"
+ },
+ "9147": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 666,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 3145.5"
+ },
+ "9148": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "2nd Period Handicap Goal Team 1 H1 0.5"
+ },
+ "9149": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "2nd Period Handicap Goal Team 2 H2 -0.5"
+ },
+ "9150": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "2nd Period Handicap Goal Team 1 H1 -0.5"
+ },
+ "9151": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "2nd Period Handicap Goal Team 2 H2 0.5"
+ },
+ "9152": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "2nd Period Handicap Goal Team 1 H1 1.5"
+ },
+ "9153": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "2nd Period Handicap Goal Team 2 H2 -1.5"
+ },
+ "9154": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "3rd Period Handicap Goal Team 1 H1 -1.5"
+ },
+ "9155": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "3rd Period Handicap Goal Team 2 H2 1.5"
+ },
+ "9156": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "3rd Period Handicap Goal Team 1 H1 0.5"
+ },
+ "9157": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "3rd Period Handicap Goal Team 2 H2 -0.5"
+ },
+ "9158": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "3rd Period Total Goal Over 2.5"
+ },
+ "9159": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "3rd Period Total Goal Under 2.5"
+ },
+ "9160": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "3rd Period Handicap Goal Team 1 H1 -0.5"
+ },
+ "9161": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "3rd Period Handicap Goal Team 2 H2 0.5"
+ },
+ "9162": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "3rd Period Handicap Goal Team 1 H1 1.5"
+ },
+ "9163": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "3rd Period Handicap Goal Team 2 H2 -1.5"
+ },
+ "9164": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "3rd Period Total Goal Over 1.5"
+ },
+ "9165": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "3rd Period Total Goal Under 1.5"
+ },
+ "9166": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "3rd Period Total Goal Over 3.5"
+ },
+ "9167": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "3rd Period Total Goal Under 3.5"
+ },
+ "9168": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "3rd Period Total Goal Over 0.5"
+ },
+ "9169": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "3rd Period Total Goal Under 0.5"
+ },
+ "9170": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "2nd Period Handicap Goal Team 1 H1 -1.5"
+ },
+ "9171": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "2nd Period Handicap Goal Team 2 H2 1.5"
+ },
+ "9172": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "2nd Period Total Goal Over 1.5"
+ },
+ "9173": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "2nd Period Total Goal Under 1.5"
+ },
+ "9174": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "2nd Period Total Goal Over 0.5"
+ },
+ "9175": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "2nd Period Total Goal Under 0.5"
+ },
+ "9176": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "2nd Period Total Goal Over 2.5"
+ },
+ "9177": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "2nd Period Total Goal Under 2.5"
+ },
+ "9178": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "2nd Period Total Goal Over 3.5"
+ },
+ "9179": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "2nd Period Total Goal Under 3.5"
+ },
+ "9180": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "3rd Period Individual Total Goal Team 1 Over 0.5"
+ },
+ "9181": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "3rd Period Individual Total Goal Team 1 Under 0.5"
+ },
+ "9182": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "3rd Period Individual Total Goal Team 2 Over 1.5"
+ },
+ "9183": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "3rd Period Individual Total Goal Team 2 Under 1.5"
+ },
+ "9184": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "3rd Period Individual Total Goal Team 2 Over 0.5"
+ },
+ "9185": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "3rd Period Individual Total Goal Team 2 Under 0.5"
+ },
+ "9186": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 1.5"
+ },
+ "9187": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 1.5"
+ },
+ "9188": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "3rd Period Individual Total Goal Team 1 Over 1.5"
+ },
+ "9189": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "3rd Period Individual Total Goal Team 1 Under 1.5"
+ },
+ "9190": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "2nd Period Individual Total Goal Team 1 Over 1.5"
+ },
+ "9191": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "2nd Period Individual Total Goal Team 1 Under 1.5"
+ },
+ "9192": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "2nd Period Individual Total Goal Team 1 Over 0.5"
+ },
+ "9193": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "2nd Period Individual Total Goal Team 1 Under 0.5"
+ },
+ "9194": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 64.5"
+ },
+ "9195": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 526,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -64.5"
+ },
+ "9196": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "2nd Period Individual Total Goal Team 2 Over 0.5"
+ },
+ "9197": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "2nd Period Individual Total Goal Team 2 Under 0.5"
+ },
+ "9198": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "2nd Period Winner of match Goal 1"
+ },
+ "9199": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "2nd Period Winner of match Goal 2"
+ },
+ "9200": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "3rd Period Winner of match Goal 1"
+ },
+ "9201": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "3rd Period Winner of match Goal 2"
+ },
+ "9202": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 431,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -33.5"
+ },
+ "9203": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 33.5"
+ },
+ "9204": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "2nd Period Individual Total Goal Team 2 Over 1.5"
+ },
+ "9205": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "2nd Period Individual Total Goal Team 2 Under 1.5"
+ },
+ "9206": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 500,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 130.5"
+ },
+ "9207": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 500,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 130.5"
+ },
+ "9208": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 40.5"
+ },
+ "9209": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 40.5"
+ },
+ "9210": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 41.5"
+ },
+ "9211": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 41.5"
+ },
+ "9212": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 42.5"
+ },
+ "9213": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 42.5"
+ },
+ "9214": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 40.5"
+ },
+ "9215": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 40.5"
+ },
+ "9216": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 7.5"
+ },
+ "9217": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 7.5"
+ },
+ "9218": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Over 4.5"
+ },
+ "9219": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Goal Team 2 Under 4.5"
+ },
+ "9220": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 23.5"
+ },
+ "9221": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 23.5"
+ },
+ "9222": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 0.5"
+ },
+ "9223": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 0.5"
+ },
+ "9224": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 24.5"
+ },
+ "9225": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 24.5"
+ },
+ "9226": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 26.5"
+ },
+ "9227": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 26.5"
+ },
+ "9228": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Over 9.5"
+ },
+ "9229": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Under 9.5"
+ },
+ "9230": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 18.5"
+ },
+ "9231": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 18.5"
+ },
+ "9232": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 19.5"
+ },
+ "9233": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 19.5"
+ },
+ "9234": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 20.5"
+ },
+ "9235": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 20.5"
+ },
+ "9236": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 31.5"
+ },
+ "9237": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 31.5"
+ },
+ "9238": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -14.5"
+ },
+ "9239": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 14.5"
+ },
+ "9240": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 8.5"
+ },
+ "9241": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 8.5"
+ },
+ "9242": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 667,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 1500.5"
+ },
+ "9243": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 667,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 1500.5"
+ },
+ "9244": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 27.5"
+ },
+ "9245": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 27.5"
+ },
+ "9246": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 73.5"
+ },
+ "9247": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 73.5"
+ },
+ "9248": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 31.5"
+ },
+ "9249": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 57,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -31.5"
+ },
+ "9250": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 450,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 7 Winner of match Round 1"
+ },
+ "9251": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 450,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 7 Winner of match Round 2"
+ },
+ "9252": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 43.5"
+ },
+ "9253": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 43.5"
+ },
+ "9254": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 33.5"
+ },
+ "9255": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 33.5"
+ },
+ "9256": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 11.5"
+ },
+ "9257": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 11.5"
+ },
+ "9258": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 15.5"
+ },
+ "9259": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 15.5"
+ },
+ "9260": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 57.5"
+ },
+ "9261": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 662,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -57.5"
+ },
+ "9262": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 16.5"
+ },
+ "9263": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 16.5"
+ },
+ "9264": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 18.5"
+ },
+ "9265": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 18.5"
+ },
+ "9266": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -11.5"
+ },
+ "9267": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 11.5"
+ },
+ "9268": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 38.5"
+ },
+ "9269": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 38.5"
+ },
+ "9270": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 14.5"
+ },
+ "9271": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 14.5"
+ },
+ "9272": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 63.5"
+ },
+ "9273": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 664,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -63.5"
+ },
+ "9274": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 65.5"
+ },
+ "9275": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 656,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -65.5"
+ },
+ "9276": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 104,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 110.5"
+ },
+ "9277": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 668,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -110.5"
+ },
+ "9278": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 492,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 97.5"
+ },
+ "9279": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 669,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -97.5"
+ },
+ "9280": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 13.5"
+ },
+ "9281": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 13.5"
+ },
+ "9282": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 17.5"
+ },
+ "9283": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 17.5"
+ },
+ "9284": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 417,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 95.5"
+ },
+ "9285": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 670,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -95.5"
+ },
+ "9286": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 415,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 91.5"
+ },
+ "9287": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 671,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -91.5"
+ },
+ "9288": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 30.5"
+ },
+ "9289": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 30.5"
+ },
+ "9290": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 40.5"
+ },
+ "9291": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 40.5"
+ },
+ "9292": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 31.5"
+ },
+ "9293": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 31.5"
+ },
+ "9294": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 51,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "1st Inning Total Run Over 10.5"
+ },
+ "9295": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 51,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "1st Inning Total Run Under 10.5"
+ },
+ "9296": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Over 40.5"
+ },
+ "9297": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Under 40.5"
+ },
+ "9298": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Map Over 40.5"
+ },
+ "9299": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Map Under 40.5"
+ },
+ "9300": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Map Over 40.5"
+ },
+ "9301": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Map Under 40.5"
+ },
+ "9302": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 37.5"
+ },
+ "9303": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 37.5"
+ },
+ "9304": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 74.5"
+ },
+ "9305": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 74.5"
+ },
+ "9306": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Winner of match Run 1"
+ },
+ "9307": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Winner of match Run 2"
+ },
+ "9308": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 11.5"
+ },
+ "9309": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -11.5"
+ },
+ "9310": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 19.5"
+ },
+ "9311": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 19.5"
+ },
+ "9312": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 18.5"
+ },
+ "9313": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 18.5"
+ },
+ "9314": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 18.5"
+ },
+ "9315": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 18.5"
+ },
+ "9316": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 34.5"
+ },
+ "9317": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 34.5"
+ },
+ "9318": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 17.5"
+ },
+ "9319": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 17.5"
+ },
+ "9320": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 28.5"
+ },
+ "9321": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 28.5"
+ },
+ "9322": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 20.5"
+ },
+ "9323": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 20.5"
+ },
+ "9324": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 20.5"
+ },
+ "9325": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 20.5"
+ },
+ "9326": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 16.5"
+ },
+ "9327": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 16.5"
+ },
+ "9328": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 27.5"
+ },
+ "9329": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 27.5"
+ },
+ "9330": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 33.5"
+ },
+ "9331": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 33.5"
+ },
+ "9332": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 32.5"
+ },
+ "9333": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 32.5"
+ },
+ "9334": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 14.5"
+ },
+ "9335": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 14.5"
+ },
+ "9336": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 15.5"
+ },
+ "9337": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 15.5"
+ },
+ "9338": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 42.5"
+ },
+ "9339": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 42.5"
+ },
+ "9340": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 43.5"
+ },
+ "9341": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 43.5"
+ },
+ "9342": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 21.5"
+ },
+ "9343": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 21.5"
+ },
+ "9344": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 21.5"
+ },
+ "9345": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 21.5"
+ },
+ "9346": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 41.5"
+ },
+ "9347": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 41.5"
+ },
+ "9348": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -11.5"
+ },
+ "9349": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 11.5"
+ },
+ "9350": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -12.5"
+ },
+ "9351": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 12.5"
+ },
+ "9352": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 14.5"
+ },
+ "9353": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 14.5"
+ },
+ "9354": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 40.5"
+ },
+ "9355": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 40.5"
+ },
+ "9356": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 15.5"
+ },
+ "9357": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 15.5"
+ },
+ "9358": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 16.5"
+ },
+ "9359": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 16.5"
+ },
+ "9360": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 17.5"
+ },
+ "9361": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 17.5"
+ },
+ "9362": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 9.5"
+ },
+ "9363": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -9.5"
+ },
+ "9364": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 55,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -30.5"
+ },
+ "9365": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 30.5"
+ },
+ "9366": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 476,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -34.5"
+ },
+ "9367": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 34.5"
+ },
+ "9368": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 58.5"
+ },
+ "9369": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 524,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -58.5"
+ },
+ "9370": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 35.5"
+ },
+ "9371": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 35.5"
+ },
+ "9372": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 0.5"
+ },
+ "9373": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 0.5"
+ },
+ "9374": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 61.5"
+ },
+ "9375": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 652,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -61.5"
+ },
+ "9376": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 62.5"
+ },
+ "9377": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 525,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -62.5"
+ },
+ "9378": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -1.5"
+ },
+ "9379": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 1.5"
+ },
+ "9380": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 34.5"
+ },
+ "9381": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 34.5"
+ },
+ "9382": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 45.5"
+ },
+ "9383": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 45.5"
+ },
+ "9384": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 576,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -60.5"
+ },
+ "9385": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 60.5"
+ },
+ "9386": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 57,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -31.5"
+ },
+ "9387": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 31.5"
+ },
+ "9388": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 39.5"
+ },
+ "9389": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 39.5"
+ },
+ "9390": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 59,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -32.5"
+ },
+ "9391": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 32.5"
+ },
+ "9392": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 10.5"
+ },
+ "9393": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 10.5"
+ },
+ "9394": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 9.5"
+ },
+ "9395": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 9.5"
+ },
+ "9396": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 10.5"
+ },
+ "9397": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 10.5"
+ },
+ "9398": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 13.5"
+ },
+ "9399": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 13.5"
+ },
+ "9400": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 25.5"
+ },
+ "9401": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 25.5"
+ },
+ "9402": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 12.5"
+ },
+ "9403": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 12.5"
+ },
+ "9404": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 12.5"
+ },
+ "9405": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 12.5"
+ },
+ "9406": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 584,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -66.5"
+ },
+ "9407": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 66.5"
+ },
+ "9408": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 476,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -34.5"
+ },
+ "9409": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 34.5"
+ },
+ "9410": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 9.5"
+ },
+ "9411": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 9.5"
+ },
+ "9412": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 136,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 125.5"
+ },
+ "9413": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 136,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 125.5"
+ },
+ "9414": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 24.5"
+ },
+ "9415": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 24.5"
+ },
+ "9416": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 11.5"
+ },
+ "9417": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 11.5"
+ },
+ "9418": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Over 23.5"
+ },
+ "9419": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Under 23.5"
+ },
+ "9420": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 10.5"
+ },
+ "9421": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -10.5"
+ },
+ "9422": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 11.5"
+ },
+ "9423": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -11.5"
+ },
+ "9424": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 18.5"
+ },
+ "9425": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 18.5"
+ },
+ "9426": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 8.5"
+ },
+ "9427": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 8.5"
+ },
+ "9428": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 13.5"
+ },
+ "9429": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 13.5"
+ },
+ "9430": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 7.5"
+ },
+ "9431": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 7.5"
+ },
+ "9432": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 9.5"
+ },
+ "9433": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 9.5"
+ },
+ "9434": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 7.5"
+ },
+ "9435": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 7.5"
+ },
+ "9436": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 8.5"
+ },
+ "9437": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 8.5"
+ },
+ "9438": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 7.5"
+ },
+ "9439": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 -7.5"
+ },
+ "9440": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 8.5"
+ },
+ "9441": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 -8.5"
+ },
+ "9442": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 9.5"
+ },
+ "9443": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 -9.5"
+ },
+ "9444": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Round Team 1 H1 10.5"
+ },
+ "9445": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Round Team 2 H2 -10.5"
+ },
+ "9446": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 8.5"
+ },
+ "9447": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 -8.5"
+ },
+ "9448": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 9.5"
+ },
+ "9449": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 -9.5"
+ },
+ "9450": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Round Team 1 H1 10.5"
+ },
+ "9451": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Round Team 2 H2 -10.5"
+ },
+ "9452": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 672,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -78.5"
+ },
+ "9453": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 78.5"
+ },
+ "9454": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 673,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -70.5"
+ },
+ "9455": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 70.5"
+ },
+ "9456": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -27.5"
+ },
+ "9457": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 27.5"
+ },
+ "9458": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 48,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -28.5"
+ },
+ "9459": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 28.5"
+ },
+ "9460": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 8.5"
+ },
+ "9461": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 8.5"
+ },
+ "9462": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 50,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -29.5"
+ },
+ "9463": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 29.5"
+ },
+ "9464": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 29.5"
+ },
+ "9465": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 29.5"
+ },
+ "9466": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 55,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -30.5"
+ },
+ "9467": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 30.5"
+ },
+ "9468": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Over 0.5"
+ },
+ "9469": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Run Under 0.5"
+ },
+ "9470": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 9.5"
+ },
+ "9471": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 9.5"
+ },
+ "9472": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 14.5"
+ },
+ "9473": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 14.5"
+ },
+ "9474": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 15.5"
+ },
+ "9475": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 15.5"
+ },
+ "9476": {
+ "selectionId": 1,
+ "marketId": 1,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Full time result Run 1"
+ },
+ "9477": {
+ "selectionId": 3,
+ "marketId": 1,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Full time result Run 2"
+ },
+ "9478": {
+ "selectionId": 2,
+ "marketId": 1,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Full time result Run X"
+ },
+ "9479": {
+ "selectionId": 1,
+ "marketId": 1,
+ "gamePeriodId": 51,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Inning Full time result Run 1"
+ },
+ "9480": {
+ "selectionId": 3,
+ "marketId": 1,
+ "gamePeriodId": 51,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Inning Full time result Run 2"
+ },
+ "9481": {
+ "selectionId": 2,
+ "marketId": 1,
+ "gamePeriodId": 51,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Inning Full time result Run X"
+ },
+ "9482": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Over 2.5"
+ },
+ "9483": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Under 2.5"
+ },
+ "9484": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Over 1.5"
+ },
+ "9485": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Under 1.5"
+ },
+ "9486": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Over 10.5"
+ },
+ "9487": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Under 10.5"
+ },
+ "9488": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 32.5"
+ },
+ "9489": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 59,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -32.5"
+ },
+ "9490": {
+ "selectionId": 4,
+ "marketId": 2,
+ "gamePeriodId": 51,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Inning Double chance Goal 1X"
+ },
+ "9491": {
+ "selectionId": 6,
+ "marketId": 2,
+ "gamePeriodId": 51,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Inning Double chance Goal 2X"
+ },
+ "9492": {
+ "selectionId": 5,
+ "marketId": 2,
+ "gamePeriodId": 51,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Inning Double chance Goal 12"
+ },
+ "9493": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 35.5"
+ },
+ "9494": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 444,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -35.5"
+ },
+ "9495": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Over 8.5"
+ },
+ "9496": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Under 8.5"
+ },
+ "9497": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Over 4.5"
+ },
+ "9498": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Under 4.5"
+ },
+ "9499": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 431,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -33.5"
+ },
+ "9500": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 33.5"
+ },
+ "9501": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Map Over 46.5"
+ },
+ "9502": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Map Under 46.5"
+ },
+ "9503": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Leg Team 1 H1 3.5"
+ },
+ "9504": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Leg Team 2 H2 -3.5"
+ },
+ "9505": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Leg Team 1 H1 -1.5"
+ },
+ "9506": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Leg Team 2 H2 1.5"
+ },
+ "9507": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Leg Team 1 H1 2.5"
+ },
+ "9508": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Leg Team 2 H2 -2.5"
+ },
+ "9509": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Leg Team 1 H1 1.5"
+ },
+ "9510": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Leg Team 2 H2 -1.5"
+ },
+ "9511": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Over 3.5"
+ },
+ "9512": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Under 3.5"
+ },
+ "9513": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 11.5"
+ },
+ "9514": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 11.5"
+ },
+ "9515": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Leg Team 1 H1 -2.5"
+ },
+ "9516": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Leg Team 2 H2 2.5"
+ },
+ "9517": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 54,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Set Winner of match Set 1"
+ },
+ "9518": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 54,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Set Winner of match Set 2"
+ },
+ "9519": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Over 3.5"
+ },
+ "9520": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Kill Team 2 Under 3.5"
+ },
+ "9521": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Kill Over 24.5"
+ },
+ "9522": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Kill Under 24.5"
+ },
+ "9523": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 540,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 216.5"
+ },
+ "9524": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 540,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 216.5"
+ },
+ "9525": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Over 44.5"
+ },
+ "9526": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Under 44.5"
+ },
+ "9527": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Map Over 44.5"
+ },
+ "9528": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Map Under 44.5"
+ },
+ "9529": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Over 9.5"
+ },
+ "9530": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Under 9.5"
+ },
+ "9531": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Over 8.5"
+ },
+ "9532": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Under 8.5"
+ },
+ "9533": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 22.5"
+ },
+ "9534": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 22.5"
+ },
+ "9535": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 480,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Over 99.5"
+ },
+ "9536": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 480,
+ "teamPlayerId": None,
+ "_comment": "Game Total Run Under 99.5"
+ },
+ "9537": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 44.5"
+ },
+ "9538": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 44.5"
+ },
+ "9539": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 9.5"
+ },
+ "9540": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 9.5"
+ },
+ "9541": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Leg Team 1 H1 -3.5"
+ },
+ "9542": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Leg Team 2 H2 3.5"
+ },
+ "9543": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 459,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 92.5"
+ },
+ "9544": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 459,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 92.5"
+ },
+ "9545": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 674,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -89.5"
+ },
+ "9546": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 410,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 89.5"
+ },
+ "9547": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 671,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -91.5"
+ },
+ "9548": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 415,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 91.5"
+ },
+ "9549": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 670,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -95.5"
+ },
+ "9550": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 417,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 95.5"
+ },
+ "9551": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 675,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -94.5"
+ },
+ "9552": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 487,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 94.5"
+ },
+ "9553": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 676,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -93.5"
+ },
+ "9554": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 416,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 93.5"
+ },
+ "9555": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 677,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -92.5"
+ },
+ "9556": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 459,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 92.5"
+ },
+ "9557": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 678,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -90.5"
+ },
+ "9558": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 414,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 90.5"
+ },
+ "9559": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 679,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -88.5"
+ },
+ "9560": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 408,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 88.5"
+ },
+ "9561": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 680,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -87.5"
+ },
+ "9562": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 406,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 87.5"
+ },
+ "9563": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 447,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -42.5"
+ },
+ "9564": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 42.5"
+ },
+ "9565": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 493,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -46.5"
+ },
+ "9566": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 46.5"
+ },
+ "9567": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 483,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -45.5"
+ },
+ "9568": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 45.5"
+ },
+ "9569": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 482,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -40.5"
+ },
+ "9570": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 40.5"
+ },
+ "9571": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 485,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -44.5"
+ },
+ "9572": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 44.5"
+ },
+ "9573": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 449,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -43.5"
+ },
+ "9574": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 43.5"
+ },
+ "9575": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 434,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -39.5"
+ },
+ "9576": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 39.5"
+ },
+ "9577": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 438,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -38.5"
+ },
+ "9578": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 38.5"
+ },
+ "9579": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 681,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -84.5"
+ },
+ "9580": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 84.5"
+ },
+ "9581": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 682,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -82.5"
+ },
+ "9582": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 82.5"
+ },
+ "9583": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 683,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -83.5"
+ },
+ "9584": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 83.5"
+ },
+ "9585": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 684,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -86.5"
+ },
+ "9586": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 404,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 86.5"
+ },
+ "9587": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 685,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -81.5"
+ },
+ "9588": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 81.5"
+ },
+ "9589": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 686,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -80.5"
+ },
+ "9590": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 80.5"
+ },
+ "9591": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 687,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -79.5"
+ },
+ "9592": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 79.5"
+ },
+ "9593": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Over 11.5"
+ },
+ "9594": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Under 11.5"
+ },
+ "9595": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 688,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -77.5"
+ },
+ "9596": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 77.5"
+ },
+ "9597": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 689,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -75.5"
+ },
+ "9598": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 75.5"
+ },
+ "9599": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 690,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -74.5"
+ },
+ "9600": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 74.5"
+ },
+ "9601": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 442,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -36.5"
+ },
+ "9602": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 36.5"
+ },
+ "9603": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 14.5"
+ },
+ "9604": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 14.5"
+ },
+ "9605": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 10.5"
+ },
+ "9606": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 10.5"
+ },
+ "9607": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 444,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -35.5"
+ },
+ "9608": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 35.5"
+ },
+ "9609": {
+ "selectionId": 1,
+ "marketId": 1,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result Corner 1"
+ },
+ "9610": {
+ "selectionId": 3,
+ "marketId": 1,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result Corner 2"
+ },
+ "9611": {
+ "selectionId": 2,
+ "marketId": 1,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result Corner X"
+ },
+ "9612": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Over 5.5"
+ },
+ "9613": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Under 5.5"
+ },
+ "9614": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Game Team 1 Over 5.5"
+ },
+ "9615": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Game Team 1 Under 5.5"
+ },
+ "9616": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Game Team 2 Over 5.5"
+ },
+ "9617": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Game Team 2 Under 5.5"
+ },
+ "9618": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Map Over 26.5"
+ },
+ "9619": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Map Under 26.5"
+ },
+ "9620": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 172,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 146.5"
+ },
+ "9621": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 172,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 146.5"
+ },
+ "9622": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Leg Team 1 H1 -4.5"
+ },
+ "9623": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Leg Team 2 H2 4.5"
+ },
+ "9624": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Over 7.5"
+ },
+ "9625": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Under 7.5"
+ },
+ "9626": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Over 6.5"
+ },
+ "9627": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Under 6.5"
+ },
+ "9628": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Leg Team 1 H1 -5.5"
+ },
+ "9629": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Leg Team 2 H2 5.5"
+ },
+ "9630": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Over 6.5"
+ },
+ "9631": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Under 6.5"
+ },
+ "9632": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Kill Over 23.5"
+ },
+ "9633": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Kill Under 23.5"
+ },
+ "9634": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Over 10.5"
+ },
+ "9635": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Under 10.5"
+ },
+ "9636": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 22.5"
+ },
+ "9637": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 22.5"
+ },
+ "9638": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Corner Team 2 Over 6.5"
+ },
+ "9639": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Corner Team 2 Under 6.5"
+ },
+ "9640": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Corner Team 1 Over 2.5"
+ },
+ "9641": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Corner Team 1 Under 2.5"
+ },
+ "9642": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Corner Team 2 Over 7.5"
+ },
+ "9643": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Corner Team 2 Under 7.5"
+ },
+ "9644": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Frame Team 1 H1 -0.5"
+ },
+ "9645": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Frame Team 2 H2 0.5"
+ },
+ "9646": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Over 9.5"
+ },
+ "9647": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Under 9.5"
+ },
+ "9648": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 508,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 127.5"
+ },
+ "9649": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Over 28.5"
+ },
+ "9650": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Under 28.5"
+ },
+ "9651": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Over 16.5"
+ },
+ "9652": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Under 16.5"
+ },
+ "9653": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 415,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 91.5"
+ },
+ "9654": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 415,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 91.5"
+ },
+ "9655": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Over 15.5"
+ },
+ "9656": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Under 15.5"
+ },
+ "9657": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 691,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -69.5"
+ },
+ "9658": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 69.5"
+ },
+ "9659": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 663,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -68.5"
+ },
+ "9660": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 68.5"
+ },
+ "9661": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Over 18.5"
+ },
+ "9662": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Under 18.5"
+ },
+ "9663": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 1.5"
+ },
+ "9664": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 1.5"
+ },
+ "9665": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Game Team 2 Over 2.5"
+ },
+ "9666": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Game Team 2 Under 2.5"
+ },
+ "9667": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 8.5"
+ },
+ "9668": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 8.5"
+ },
+ "9669": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Over 27.5"
+ },
+ "9670": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Under 27.5"
+ },
+ "9671": {
+ "selectionId": 1,
+ "marketId": 1,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Full time result Corner 1"
+ },
+ "9672": {
+ "selectionId": 3,
+ "marketId": 1,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Full time result Corner 2"
+ },
+ "9673": {
+ "selectionId": 2,
+ "marketId": 1,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Full time result Corner X"
+ },
+ "9674": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Corner Team 1 Over 2.5"
+ },
+ "9675": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Corner Team 1 Under 2.5"
+ },
+ "9676": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Corner Team 2 Over 1.5"
+ },
+ "9677": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Corner Team 2 Under 1.5"
+ },
+ "9678": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Corner Team 1 Over 1.5"
+ },
+ "9679": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Corner Team 1 Under 1.5"
+ },
+ "9680": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Corner Team 2 Over 2.5"
+ },
+ "9681": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Corner Team 2 Under 2.5"
+ },
+ "9682": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Corner Team 1 Over 3.5"
+ },
+ "9683": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Corner Team 1 Under 3.5"
+ },
+ "9684": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Map Over 31.5"
+ },
+ "9685": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Map Under 31.5"
+ },
+ "9686": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Over 29.5"
+ },
+ "9687": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Under 29.5"
+ },
+ "9688": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Over 31.5"
+ },
+ "9689": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Under 31.5"
+ },
+ "9690": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Game Team 2 Over 4.5"
+ },
+ "9691": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Game Team 2 Under 4.5"
+ },
+ "9692": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Over 6.5"
+ },
+ "9693": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Under 6.5"
+ },
+ "9694": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Frame Team 1 H1 2.5"
+ },
+ "9695": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Frame Team 2 H2 -2.5"
+ },
+ "9696": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Frame Team 1 H1 1.5"
+ },
+ "9697": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Frame Team 2 H2 -1.5"
+ },
+ "9698": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Over 7.5"
+ },
+ "9699": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Under 7.5"
+ },
+ "9700": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Frame Team 1 H1 3.5"
+ },
+ "9701": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Frame Team 2 H2 -3.5"
+ },
+ "9702": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Frame Team 1 H1 -1.5"
+ },
+ "9703": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Frame Team 2 H2 1.5"
+ },
+ "9704": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Frame Team 1 H1 -2.5"
+ },
+ "9705": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Frame Team 2 H2 2.5"
+ },
+ "9706": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Frame Team 1 H1 4.5"
+ },
+ "9707": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Frame Team 2 H2 -4.5"
+ },
+ "9708": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Over 5.5"
+ },
+ "9709": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Under 5.5"
+ },
+ "9710": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Frame Team 1 H1 -3.5"
+ },
+ "9711": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Frame Team 2 H2 3.5"
+ },
+ "9712": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Over 0.5"
+ },
+ "9713": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Under 0.5"
+ },
+ "9714": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Frame Team 1 H1 -4.5"
+ },
+ "9715": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Frame Team 2 H2 4.5"
+ },
+ "9716": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Over 24.5"
+ },
+ "9717": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Under 24.5"
+ },
+ "9718": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Map Over 24.5"
+ },
+ "9719": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Map Under 24.5"
+ },
+ "9720": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 83.5"
+ },
+ "9721": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 83.5"
+ },
+ "9722": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game Who First Run 1"
+ },
+ "9723": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 76,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game Who First Run 2"
+ },
+ "9724": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Run 1"
+ },
+ "9725": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 1,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Winner of match Run 2"
+ },
+ "9726": {
+ "selectionId": 25,
+ "marketId": 26,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Both Teams To Score & Full time result Multiple Yes & 1"
+ },
+ "9727": {
+ "selectionId": 26,
+ "marketId": 26,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Both Teams To Score & Full time result Multiple Yes & X"
+ },
+ "9728": {
+ "selectionId": 27,
+ "marketId": 26,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Both Teams To Score & Full time result Multiple Yes & 2"
+ },
+ "9729": {
+ "selectionId": 28,
+ "marketId": 26,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Both Teams To Score & Full time result Multiple No & 1"
+ },
+ "9730": {
+ "selectionId": 29,
+ "marketId": 26,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Both Teams To Score & Full time result Multiple No & X"
+ },
+ "9731": {
+ "selectionId": 30,
+ "marketId": 26,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Both Teams To Score & Full time result Multiple No & 2"
+ },
+ "9732": {
+ "selectionId": 31,
+ "marketId": 27,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Both Teams To Score & Total Multiple Yes & Over 2.5"
+ },
+ "9733": {
+ "selectionId": 32,
+ "marketId": 27,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Both Teams To Score & Total Multiple Yes & Under 2.5"
+ },
+ "9734": {
+ "selectionId": 33,
+ "marketId": 27,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Both Teams To Score & Total Multiple No & Over 2.5"
+ },
+ "9735": {
+ "selectionId": 34,
+ "marketId": 27,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Both Teams To Score & Total Multiple No & Under 2.5"
+ },
+ "9736": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Over 3.5"
+ },
+ "9737": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Under 3.5"
+ },
+ "9738": {
+ "selectionId": 35,
+ "marketId": 28,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result & Total Multiple 1 & Over 2.5"
+ },
+ "9739": {
+ "selectionId": 36,
+ "marketId": 28,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result & Total Multiple 1 & Under 2.5"
+ },
+ "9740": {
+ "selectionId": 37,
+ "marketId": 28,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result & Total Multiple X & Over 2.5"
+ },
+ "9741": {
+ "selectionId": 38,
+ "marketId": 28,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result & Total Multiple X & Under 2.5"
+ },
+ "9742": {
+ "selectionId": 39,
+ "marketId": 28,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result & Total Multiple 2 & Over 2.5"
+ },
+ "9743": {
+ "selectionId": 40,
+ "marketId": 28,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result & Total Multiple 2 & Under 2.5"
+ },
+ "9744": {
+ "selectionId": 33,
+ "marketId": 30,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Even & Total Multiple No & Over 2.5"
+ },
+ "9745": {
+ "selectionId": 34,
+ "marketId": 30,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Even & Total Multiple No & Under 2.5"
+ },
+ "9746": {
+ "selectionId": 31,
+ "marketId": 30,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Even & Total Multiple Yes & Over 2.5"
+ },
+ "9747": {
+ "selectionId": 32,
+ "marketId": 30,
+ "gamePeriodId": 1,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Even & Total Multiple Yes & Under 2.5"
+ },
+ "9748": {
+ "selectionId": 35,
+ "marketId": 29,
+ "gamePeriodId": 76,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match & Total Multiple 1 & Over 8.5"
+ },
+ "9749": {
+ "selectionId": 39,
+ "marketId": 29,
+ "gamePeriodId": 76,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match & Total Multiple 2 & Over 8.5"
+ },
+ "9750": {
+ "selectionId": 36,
+ "marketId": 29,
+ "gamePeriodId": 76,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match & Total Multiple 1 & Under 8.5"
+ },
+ "9751": {
+ "selectionId": 40,
+ "marketId": 29,
+ "gamePeriodId": 76,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match & Total Multiple 2 & Under 8.5"
+ },
+ "9752": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Over 25.5"
+ },
+ "9753": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Under 25.5"
+ },
+ "9754": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Bookings Team 1 H1 1.5"
+ },
+ "9755": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Bookings Team 2 H2 -1.5"
+ },
+ "9756": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Over 28.5"
+ },
+ "9757": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Under 28.5"
+ },
+ "9758": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Over 27.5"
+ },
+ "9759": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Under 27.5"
+ },
+ "9760": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Over 26.5"
+ },
+ "9761": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Under 26.5"
+ },
+ "9762": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 581,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -59.5"
+ },
+ "9763": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 59.5"
+ },
+ "9764": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 110,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Century Over 1.5"
+ },
+ "9765": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 110,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Century Under 1.5"
+ },
+ "9766": {
+ "selectionId": 20,
+ "marketId": 15,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Even Point Team 2 No"
+ },
+ "9767": {
+ "selectionId": 19,
+ "marketId": 15,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Even Point Team 2 Yes"
+ },
+ "9768": {
+ "selectionId": 182,
+ "marketId": 14,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Even Point Yes"
+ },
+ "9769": {
+ "selectionId": 183,
+ "marketId": 14,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Even Point No"
+ },
+ "9770": {
+ "selectionId": 20,
+ "marketId": 15,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Even Point Team 1 No"
+ },
+ "9771": {
+ "selectionId": 19,
+ "marketId": 15,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Even Point Team 1 Yes"
+ },
+ "9772": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 10.5"
+ },
+ "9773": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 10.5"
+ },
+ "9774": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Over 4.5"
+ },
+ "9775": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Under 4.5"
+ },
+ "9776": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 9.5"
+ },
+ "9777": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 9.5"
+ },
+ "9778": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Over 3.5"
+ },
+ "9779": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Under 3.5"
+ },
+ "9780": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 -1.5"
+ },
+ "9781": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 1.5"
+ },
+ "9782": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 78,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Winner of match Point 1"
+ },
+ "9783": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 78,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Winner of match Point 2"
+ },
+ "9784": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 140,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Winner of match Point 1"
+ },
+ "9785": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 140,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Winner of match Point 2"
+ },
+ "9786": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 202,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Winner of match Point 1"
+ },
+ "9787": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 202,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Winner of match Point 2"
+ },
+ "9788": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 264,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Winner of match Point 1"
+ },
+ "9789": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 264,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Winner of match Point 2"
+ },
+ "9790": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 326,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Winner of match Point 1"
+ },
+ "9791": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 326,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Winner of match Point 2"
+ },
+ "9792": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Over 9.5"
+ },
+ "9793": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Under 9.5"
+ },
+ "9794": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Bookings Team 1 H1 0.5"
+ },
+ "9795": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Bookings Team 2 H2 -0.5"
+ },
+ "9796": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Over 29.5"
+ },
+ "9797": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Under 29.5"
+ },
+ "9798": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Over 32.5"
+ },
+ "9799": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Under 32.5"
+ },
+ "9800": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 663,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -68.5"
+ },
+ "9801": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 68.5"
+ },
+ "9802": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Over 5.5"
+ },
+ "9803": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Under 5.5"
+ },
+ "9804": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Over 6.5"
+ },
+ "9805": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Under 6.5"
+ },
+ "9806": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Round Team 1 H1 11.5"
+ },
+ "9807": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Round Team 2 H2 -11.5"
+ },
+ "9808": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 75.5"
+ },
+ "9809": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 75.5"
+ },
+ "9810": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 38.5"
+ },
+ "9811": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 38.5"
+ },
+ "9812": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 530,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -53.5"
+ },
+ "9813": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 53.5"
+ },
+ "9814": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 691,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -69.5"
+ },
+ "9815": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 69.5"
+ },
+ "9816": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 690,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -74.5"
+ },
+ "9817": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 74.5"
+ },
+ "9818": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 110,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Century Over 0.5"
+ },
+ "9819": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 110,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Century Under 0.5"
+ },
+ "9820": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Over 4.5"
+ },
+ "9821": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Under 4.5"
+ },
+ "9822": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Bookings Team 1 H1 -0.5"
+ },
+ "9823": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Bookings Team 2 H2 0.5"
+ },
+ "9824": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Over 16.5"
+ },
+ "9825": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Under 16.5"
+ },
+ "9826": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 83.5"
+ },
+ "9827": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 83.5"
+ },
+ "9828": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 110,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Century Over 3.5"
+ },
+ "9829": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 110,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Century Under 3.5"
+ },
+ "9830": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 50,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Game Total FieldGoal Over 3.5"
+ },
+ "9831": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 50,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Game Total FieldGoal Under 3.5"
+ },
+ "9832": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game To Score Point Yes"
+ },
+ "9833": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game To Score Point No"
+ },
+ "9834": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half To Score Point Yes"
+ },
+ "9835": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "1st Half To Score Point No"
+ },
+ "9836": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 108,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Game Total Sack Over 5.5"
+ },
+ "9837": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 108,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Game Total Sack Under 5.5"
+ },
+ "9838": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 78.5"
+ },
+ "9839": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 78.5"
+ },
+ "9840": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 0.5"
+ },
+ "9841": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 0.5"
+ },
+ "9842": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap 180s Team 1 H1 0.5"
+ },
+ "9843": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap 180s Team 2 H2 -0.5"
+ },
+ "9844": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Over 3.5"
+ },
+ "9845": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Under 3.5"
+ },
+ "9846": {
+ "selectionId": 1,
+ "marketId": 1,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result 180s 1"
+ },
+ "9847": {
+ "selectionId": 3,
+ "marketId": 1,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result 180s 2"
+ },
+ "9848": {
+ "selectionId": 2,
+ "marketId": 1,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Full time result 180s X"
+ },
+ "9849": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 35.5"
+ },
+ "9850": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 444,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -35.5"
+ },
+ "9851": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap 180s Team 1 H1 1.5"
+ },
+ "9852": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap 180s Team 2 H2 -1.5"
+ },
+ "9853": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Over 4.5"
+ },
+ "9854": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Under 4.5"
+ },
+ "9855": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap 180s Team 1 H1 -0.5"
+ },
+ "9856": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap 180s Team 2 H2 0.5"
+ },
+ "9857": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap 180s Team 1 H1 -1.5"
+ },
+ "9858": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap 180s Team 2 H2 1.5"
+ },
+ "9859": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Over 5.5"
+ },
+ "9860": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Under 5.5"
+ },
+ "9861": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 108,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Game Total Sack Over 4.5"
+ },
+ "9862": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 108,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Game Total Sack Under 4.5"
+ },
+ "9863": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 108,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Game Total Sack Over 3.5"
+ },
+ "9864": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 108,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Game Total Sack Under 3.5"
+ },
+ "9865": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Over 2.5"
+ },
+ "9866": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Under 2.5"
+ },
+ "9867": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 7.5"
+ },
+ "9868": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 7.5"
+ },
+ "9869": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 692,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -71.5"
+ },
+ "9870": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 71.5"
+ },
+ "9871": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 81.5"
+ },
+ "9872": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 81.5"
+ },
+ "9873": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 673,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -70.5"
+ },
+ "9874": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 70.5"
+ },
+ "9875": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 656,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -65.5"
+ },
+ "9876": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 65.5"
+ },
+ "9877": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 6.5"
+ },
+ "9878": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 6.5"
+ },
+ "9879": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 8.5"
+ },
+ "9880": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 8.5"
+ },
+ "9881": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Over 31.5"
+ },
+ "9882": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Under 31.5"
+ },
+ "9883": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Over 18.5"
+ },
+ "9884": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Under 18.5"
+ },
+ "9885": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 17.5"
+ },
+ "9886": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 17.5"
+ },
+ "9887": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -10.5"
+ },
+ "9888": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 10.5"
+ },
+ "9889": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Over 9.5"
+ },
+ "9890": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Under 9.5"
+ },
+ "9891": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 14.5"
+ },
+ "9892": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -14.5"
+ },
+ "9893": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap 180s Team 1 H1 2.5"
+ },
+ "9894": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap 180s Team 2 H2 -2.5"
+ },
+ "9895": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Over 8.5"
+ },
+ "9896": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Under 8.5"
+ },
+ "9897": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 20.5"
+ },
+ "9898": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 20.5"
+ },
+ "9899": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 13.5"
+ },
+ "9900": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -13.5"
+ },
+ "9901": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 28.5"
+ },
+ "9902": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 28.5"
+ },
+ "9903": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 15.5"
+ },
+ "9904": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -15.5"
+ },
+ "9905": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 16.5"
+ },
+ "9906": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 16.5"
+ },
+ "9907": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 15.5"
+ },
+ "9908": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 15.5"
+ },
+ "9909": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Over 10.5"
+ },
+ "9910": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Under 10.5"
+ },
+ "9911": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 20.5"
+ },
+ "9912": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 20.5"
+ },
+ "9913": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 6.5"
+ },
+ "9914": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 6.5"
+ },
+ "9915": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -15.5"
+ },
+ "9916": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 15.5"
+ },
+ "9917": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -14.5"
+ },
+ "9918": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 14.5"
+ },
+ "9919": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -13.5"
+ },
+ "9920": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 13.5"
+ },
+ "9921": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -12.5"
+ },
+ "9922": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 12.5"
+ },
+ "9923": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 16.5"
+ },
+ "9924": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 16.5"
+ },
+ "9925": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 31.5"
+ },
+ "9926": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 31.5"
+ },
+ "9927": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 32.5"
+ },
+ "9928": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 32.5"
+ },
+ "9929": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 17.5"
+ },
+ "9930": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 17.5"
+ },
+ "9931": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -11.5"
+ },
+ "9932": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 11.5"
+ },
+ "9933": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 21.5"
+ },
+ "9934": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 21.5"
+ },
+ "9935": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 34.5"
+ },
+ "9936": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 34.5"
+ },
+ "9937": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Over 2.5"
+ },
+ "9938": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Under 2.5"
+ },
+ "9939": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Over 8.5"
+ },
+ "9940": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Under 8.5"
+ },
+ "9941": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Over 12.5"
+ },
+ "9942": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Under 12.5"
+ },
+ "9943": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 525,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -62.5"
+ },
+ "9944": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 62.5"
+ },
+ "9945": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Over 11.5"
+ },
+ "9946": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Under 11.5"
+ },
+ "9947": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Over 10.5"
+ },
+ "9948": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Under 10.5"
+ },
+ "9949": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Over 24.5"
+ },
+ "9950": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Under 24.5"
+ },
+ "9951": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Frame Team 1 H1 -5.5"
+ },
+ "9952": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Frame Team 2 H2 5.5"
+ },
+ "9953": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 665,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -67.5"
+ },
+ "9954": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 67.5"
+ },
+ "9955": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 79.5"
+ },
+ "9956": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 79.5"
+ },
+ "9957": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Over 2.5"
+ },
+ "9958": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Under 2.5"
+ },
+ "9959": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Over 7.5"
+ },
+ "9960": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 75,
+ "gameTypeId": 51,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Fight Total Fight Under 7.5"
+ },
+ "9961": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Over 6.5"
+ },
+ "9962": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Under 6.5"
+ },
+ "9963": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 7.5"
+ },
+ "9964": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 7.5"
+ },
+ "9965": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 4.5"
+ },
+ "9966": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 4.5"
+ },
+ "9967": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 16.5"
+ },
+ "9968": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 16.5"
+ },
+ "9969": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 17.5"
+ },
+ "9970": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 17.5"
+ },
+ "9971": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 19.5"
+ },
+ "9972": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 19.5"
+ },
+ "9973": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 18.5"
+ },
+ "9974": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 18.5"
+ },
+ "9975": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Over 4.5"
+ },
+ "9976": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Under 4.5"
+ },
+ "9977": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Over 3.5"
+ },
+ "9978": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Under 3.5"
+ },
+ "9979": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 1.5"
+ },
+ "9980": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 -1.5"
+ },
+ "9981": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Over 4.5"
+ },
+ "9982": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Under 4.5"
+ },
+ "9983": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Over 7.5"
+ },
+ "9984": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 109,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total 180s Under 7.5"
+ },
+ "9985": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 35.5"
+ },
+ "9986": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 444,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -35.5"
+ },
+ "9987": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 37.5"
+ },
+ "9988": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 439,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -37.5"
+ },
+ "9989": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 36.5"
+ },
+ "9990": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 442,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -36.5"
+ },
+ "9991": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 692,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -71.5"
+ },
+ "9992": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 71.5"
+ },
+ "9993": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 574,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -72.5"
+ },
+ "9994": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 72.5"
+ },
+ "9995": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 38.5"
+ },
+ "9996": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 438,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -38.5"
+ },
+ "9997": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Over 30.5"
+ },
+ "9998": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Under 30.5"
+ },
+ "9999": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 37.5"
+ },
+ "10000": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 439,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -37.5"
+ },
+ "10001": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 38.5"
+ },
+ "10002": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 438,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -38.5"
+ },
+ "10003": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 652,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -61.5"
+ },
+ "10004": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 61.5"
+ },
+ "10005": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 35.5"
+ },
+ "10006": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 35.5"
+ },
+ "10007": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 110,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Century Over 2.5"
+ },
+ "10008": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 110,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Century Under 2.5"
+ },
+ "10009": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 15.5"
+ },
+ "10010": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 15.5"
+ },
+ "10011": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 37.5"
+ },
+ "10012": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 37.5"
+ },
+ "10013": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 388,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 6 Winner of match Point 1"
+ },
+ "10014": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 388,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 6 Winner of match Point 2"
+ },
+ "10015": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 450,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 7 Winner of match Point 1"
+ },
+ "10016": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 450,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 7 Winner of match Point 2"
+ },
+ "10017": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Over 2.5"
+ },
+ "10018": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Under 2.5"
+ },
+ "10019": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Over 3.5"
+ },
+ "10020": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Under 3.5"
+ },
+ "10021": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Over 4.5"
+ },
+ "10022": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Under 4.5"
+ },
+ "10023": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 74,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 0.75"
+ },
+ "10024": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 74,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 0.75"
+ },
+ "10025": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 8,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 1.25"
+ },
+ "10026": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 8,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 1.25"
+ },
+ "10027": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 2,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -0.25"
+ },
+ "10028": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 72,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 0.25"
+ },
+ "10029": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 10,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -0.75"
+ },
+ "10030": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 74,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 0.75"
+ },
+ "10031": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 0"
+ },
+ "10032": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 0"
+ },
+ "10033": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 72,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 0.25"
+ },
+ "10034": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 2,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -0.25"
+ },
+ "10035": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 9,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -1.25"
+ },
+ "10036": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 8,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 1.25"
+ },
+ "10037": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 10,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -0.75"
+ },
+ "10038": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 74,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 0.75"
+ },
+ "10039": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 2,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -0.25"
+ },
+ "10040": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 72,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 0.25"
+ },
+ "10041": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 72,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 0.25"
+ },
+ "10042": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 2,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -0.25"
+ },
+ "10043": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 258,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 2.75"
+ },
+ "10044": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 258,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 2.75"
+ },
+ "10045": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 76,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 1.75"
+ },
+ "10046": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 76,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 1.75"
+ },
+ "10047": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 257,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 2.25"
+ },
+ "10048": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 257,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 2.25"
+ },
+ "10049": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 280,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 3.25"
+ },
+ "10050": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 280,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 3.25"
+ },
+ "10051": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 281,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 3.75"
+ },
+ "10052": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 281,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 3.75"
+ },
+ "10053": {
+ "selectionId": 41,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H1 2"
+ },
+ "10054": {
+ "selectionId": 42,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal HX 2"
+ },
+ "10055": {
+ "selectionId": 43,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H2 -2"
+ },
+ "10056": {
+ "selectionId": 44,
+ "marketId": 25,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Who First (3 way) Goal 1"
+ },
+ "10057": {
+ "selectionId": 45,
+ "marketId": 25,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Who First (3 way) Goal 2"
+ },
+ "10058": {
+ "selectionId": 46,
+ "marketId": 25,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Whole game Who First (3 way) Goal Neither"
+ },
+ "10059": {
+ "selectionId": 41,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H1 -3"
+ },
+ "10060": {
+ "selectionId": 42,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal HX -3"
+ },
+ "10061": {
+ "selectionId": 43,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H2 3"
+ },
+ "10062": {
+ "selectionId": 41,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H1 1"
+ },
+ "10063": {
+ "selectionId": 42,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal HX 1"
+ },
+ "10064": {
+ "selectionId": 43,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H2 -1"
+ },
+ "10065": {
+ "selectionId": 41,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H1 -2"
+ },
+ "10066": {
+ "selectionId": 42,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal HX -2"
+ },
+ "10067": {
+ "selectionId": 43,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H2 2"
+ },
+ "10068": {
+ "selectionId": 41,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H1 -1"
+ },
+ "10069": {
+ "selectionId": 42,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal HX -1"
+ },
+ "10070": {
+ "selectionId": 43,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H2 1"
+ },
+ "10071": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Over 5"
+ },
+ "10072": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Under 5"
+ },
+ "10073": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 0"
+ },
+ "10074": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 0"
+ },
+ "10075": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 74,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 0.75"
+ },
+ "10076": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 10,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -0.75"
+ },
+ "10077": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 8,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 1.25"
+ },
+ "10078": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 9,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -1.25"
+ },
+ "10079": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 76,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 1.75"
+ },
+ "10080": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 12,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -1.75"
+ },
+ "10081": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 74,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 0.75"
+ },
+ "10082": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 10,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -0.75"
+ },
+ "10083": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 76,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 1.75"
+ },
+ "10084": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 76,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 1.75"
+ },
+ "10085": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 8,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 1.25"
+ },
+ "10086": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 8,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 1.25"
+ },
+ "10087": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 52,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -3.25"
+ },
+ "10088": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 280,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 3.25"
+ },
+ "10089": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 53,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -3.75"
+ },
+ "10090": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 281,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 3.75"
+ },
+ "10091": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 37,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -2.75"
+ },
+ "10092": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 258,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 2.75"
+ },
+ "10093": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 300,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 4.25"
+ },
+ "10094": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 300,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 4.25"
+ },
+ "10095": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 12,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -1.75"
+ },
+ "10096": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 76,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 1.75"
+ },
+ "10097": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 9,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -1.25"
+ },
+ "10098": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 8,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 1.25"
+ },
+ "10099": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 257,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 2.25"
+ },
+ "10100": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 257,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 2.25"
+ },
+ "10101": {
+ "selectionId": 41,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H1 -4"
+ },
+ "10102": {
+ "selectionId": 42,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal HX -4"
+ },
+ "10103": {
+ "selectionId": 43,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H2 4"
+ },
+ "10104": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 35,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -2.25"
+ },
+ "10105": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 257,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 2.25"
+ },
+ "10106": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 12,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -1.75"
+ },
+ "10107": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 76,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 1.75"
+ },
+ "10108": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Run Team 1 H1 0"
+ },
+ "10109": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Run Team 2 H2 0"
+ },
+ "10110": {
+ "selectionId": 41,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H1 3"
+ },
+ "10111": {
+ "selectionId": 42,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal HX 3"
+ },
+ "10112": {
+ "selectionId": 43,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H2 -3"
+ },
+ "10113": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 301,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 4.75"
+ },
+ "10114": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 301,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 4.75"
+ },
+ "10115": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 693,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -4.25"
+ },
+ "10116": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 300,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 4.25"
+ },
+ "10117": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 321,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 5.25"
+ },
+ "10118": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 321,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 5.25"
+ },
+ "10119": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 35,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -2.25"
+ },
+ "10120": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 257,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 2.25"
+ },
+ "10121": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 51,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 1,
+ "_comment": "1st Inning Handicap Run Team 1 H1 0"
+ },
+ "10122": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 51,
+ "gameTypeId": 83,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 2,
+ "_comment": "1st Inning Handicap Run Team 2 H2 0"
+ },
+ "10123": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 694,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -4.75"
+ },
+ "10124": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 301,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 4.75"
+ },
+ "10125": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 257,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 2.25"
+ },
+ "10126": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 35,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -2.25"
+ },
+ "10127": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 258,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 2.75"
+ },
+ "10128": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 37,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -2.75"
+ },
+ "10129": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 280,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 3.25"
+ },
+ "10130": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 52,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -3.25"
+ },
+ "10131": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 8,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 1.25"
+ },
+ "10132": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 9,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -1.25"
+ },
+ "10133": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 258,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 2.75"
+ },
+ "10134": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 258,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 2.75"
+ },
+ "10135": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 0"
+ },
+ "10136": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 0"
+ },
+ "10137": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Bookings Team 1 H1 0"
+ },
+ "10138": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Bookings Team 2 H2 0"
+ },
+ "10139": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Over 4"
+ },
+ "10140": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Under 4"
+ },
+ "10141": {
+ "selectionId": 41,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H1 -5"
+ },
+ "10142": {
+ "selectionId": 42,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal HX -5"
+ },
+ "10143": {
+ "selectionId": 43,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H2 5"
+ },
+ "10144": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Over 25"
+ },
+ "10145": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 102,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "Game Total Hits + Runs + Errors Under 25"
+ },
+ "10146": {
+ "selectionId": 41,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H1 4"
+ },
+ "10147": {
+ "selectionId": 42,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal HX 4"
+ },
+ "10148": {
+ "selectionId": 43,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H2 -4"
+ },
+ "10149": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Over 16.5"
+ },
+ "10150": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Under 16.5"
+ },
+ "10151": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 323,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 5.75"
+ },
+ "10152": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 323,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 5.75"
+ },
+ "10153": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Set Team 1 H1 0"
+ },
+ "10154": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Set Team 2 H2 0"
+ },
+ "10155": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 695,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -5.25"
+ },
+ "10156": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 321,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 5.25"
+ },
+ "10157": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Over 6"
+ },
+ "10158": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Under 6"
+ },
+ "10159": {
+ "selectionId": 41,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H1 -6"
+ },
+ "10160": {
+ "selectionId": 42,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal HX -6"
+ },
+ "10161": {
+ "selectionId": 43,
+ "marketId": 18,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": None,
+ "_comment": "Whole game European handicap (3 way) Goal H2 6"
+ },
+ "10162": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 281,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 3.75"
+ },
+ "10163": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 53,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -3.75"
+ },
+ "10164": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 300,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 4.25"
+ },
+ "10165": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 693,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -4.25"
+ },
+ "10166": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 76,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 1.75"
+ },
+ "10167": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 12,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -1.75"
+ },
+ "10168": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 257,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 2.25"
+ },
+ "10169": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 35,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 -2.25"
+ },
+ "10170": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Bookings Team 1 H1 1"
+ },
+ "10171": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Bookings Team 2 H2 -1"
+ },
+ "10172": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Over 3"
+ },
+ "10173": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Under 3"
+ },
+ "10174": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 301,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 4.75"
+ },
+ "10175": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 694,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -4.75"
+ },
+ "10176": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 0"
+ },
+ "10177": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 0"
+ },
+ "10178": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 37,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Goal Team 1 H1 -2.75"
+ },
+ "10179": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 258,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Goal Team 2 H2 2.75"
+ },
+ "10180": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 696,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -5.75"
+ },
+ "10181": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 323,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 5.75"
+ },
+ "10182": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 345,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 6.25"
+ },
+ "10183": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 345,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 6.25"
+ },
+ "10184": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 26"
+ },
+ "10185": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 26"
+ },
+ "10186": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 4"
+ },
+ "10187": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -4"
+ },
+ "10188": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Over 7"
+ },
+ "10189": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Under 7"
+ },
+ "10190": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 697,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -66"
+ },
+ "10191": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 66"
+ },
+ "10192": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 7"
+ },
+ "10193": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -7"
+ },
+ "10194": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 22"
+ },
+ "10195": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 22"
+ },
+ "10196": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 23"
+ },
+ "10197": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 23"
+ },
+ "10198": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 280,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 3.25"
+ },
+ "10199": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 280,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 3.25"
+ },
+ "10200": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 698,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 -6.25"
+ },
+ "10201": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 345,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 6.25"
+ },
+ "10202": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 699,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 6.75"
+ },
+ "10203": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 699,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 6.75"
+ },
+ "10204": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 496,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -46"
+ },
+ "10205": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 46"
+ },
+ "10206": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -10"
+ },
+ "10207": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 10"
+ },
+ "10208": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 40"
+ },
+ "10209": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 40"
+ },
+ "10210": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 16"
+ },
+ "10211": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 16"
+ },
+ "10212": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 33.5"
+ },
+ "10213": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 33.5"
+ },
+ "10214": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 522,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -47"
+ },
+ "10215": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 47"
+ },
+ "10216": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 423,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -37"
+ },
+ "10217": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 37"
+ },
+ "10218": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 437,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -38"
+ },
+ "10219": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 38"
+ },
+ "10220": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 443,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -36"
+ },
+ "10221": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 36"
+ },
+ "10222": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 475,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -35"
+ },
+ "10223": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 35"
+ },
+ "10224": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 494,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -49"
+ },
+ "10225": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 49"
+ },
+ "10226": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 509,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -50"
+ },
+ "10227": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 50"
+ },
+ "10228": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 510,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -48"
+ },
+ "10229": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 48"
+ },
+ "10230": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 59,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Winner of match Set 1"
+ },
+ "10231": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 59,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Winner of match Set 2"
+ },
+ "10232": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 520,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 13 Winner of match Game 1"
+ },
+ "10233": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 520,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 13 Winner of match Game 2"
+ },
+ "10234": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Winner of match Point 1"
+ },
+ "10235": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Winner of match Point 2"
+ },
+ "10236": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 0"
+ },
+ "10237": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 0"
+ },
+ "10238": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 29.5"
+ },
+ "10239": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 29.5"
+ },
+ "10240": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 60"
+ },
+ "10241": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 60"
+ },
+ "10242": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 29.5"
+ },
+ "10243": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 29.5"
+ },
+ "10244": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 1"
+ },
+ "10245": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -1"
+ },
+ "10246": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Winner of match Point 1"
+ },
+ "10247": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Winner of match Point 2"
+ },
+ "10248": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 0.5"
+ },
+ "10249": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -0.5"
+ },
+ "10250": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -0.5"
+ },
+ "10251": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 0.5"
+ },
+ "10252": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 58"
+ },
+ "10253": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 58"
+ },
+ "10254": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 58.5"
+ },
+ "10255": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 58.5"
+ },
+ "10256": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 59"
+ },
+ "10257": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 59"
+ },
+ "10258": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -1"
+ },
+ "10259": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 1"
+ },
+ "10260": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 59.5"
+ },
+ "10261": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 59.5"
+ },
+ "10262": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 1.5"
+ },
+ "10263": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -1.5"
+ },
+ "10264": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 535,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 3 Winner of match Game 1"
+ },
+ "10265": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 535,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 3 Winner of match Game 2"
+ },
+ "10266": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 536,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 4 Winner of match Game 1"
+ },
+ "10267": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 536,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 4 Winner of match Game 2"
+ },
+ "10268": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 534,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 2 Winner of match Game 1"
+ },
+ "10269": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 534,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 2 Winner of match Game 2"
+ },
+ "10270": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 31.5"
+ },
+ "10271": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 31.5"
+ },
+ "10272": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 4"
+ },
+ "10273": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -4"
+ },
+ "10274": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 3"
+ },
+ "10275": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -3"
+ },
+ "10276": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 3.5"
+ },
+ "10277": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -3.5"
+ },
+ "10278": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 4.5"
+ },
+ "10279": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -4.5"
+ },
+ "10280": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 5"
+ },
+ "10281": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -5"
+ },
+ "10282": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 27.5"
+ },
+ "10283": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 27.5"
+ },
+ "10284": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 22.5"
+ },
+ "10285": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 22.5"
+ },
+ "10286": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 22"
+ },
+ "10287": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 22"
+ },
+ "10288": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 138,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 126.5"
+ },
+ "10289": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 2.5"
+ },
+ "10290": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -2.5"
+ },
+ "10291": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 5"
+ },
+ "10292": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -5"
+ },
+ "10293": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 58"
+ },
+ "10294": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 58"
+ },
+ "10295": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 26.5"
+ },
+ "10296": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 26.5"
+ },
+ "10297": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 31.5"
+ },
+ "10298": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 31.5"
+ },
+ "10299": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Winner of match Point 1"
+ },
+ "10300": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Winner of match Point 2"
+ },
+ "10301": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 4"
+ },
+ "10302": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -4"
+ },
+ "10303": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 57"
+ },
+ "10304": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 57"
+ },
+ "10305": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 4.5"
+ },
+ "10306": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -4.5"
+ },
+ "10307": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 57.5"
+ },
+ "10308": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 57.5"
+ },
+ "10309": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 5.5"
+ },
+ "10310": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -5.5"
+ },
+ "10311": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 58.5"
+ },
+ "10312": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 58.5"
+ },
+ "10313": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 6"
+ },
+ "10314": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -6"
+ },
+ "10315": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 59"
+ },
+ "10316": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 59"
+ },
+ "10317": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 35.5"
+ },
+ "10318": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 35.5"
+ },
+ "10319": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 34"
+ },
+ "10320": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 34"
+ },
+ "10321": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 34.5"
+ },
+ "10322": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 34.5"
+ },
+ "10323": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 35"
+ },
+ "10324": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 35"
+ },
+ "10325": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 36"
+ },
+ "10326": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 36"
+ },
+ "10327": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 36.5"
+ },
+ "10328": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 36.5"
+ },
+ "10329": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 35.5"
+ },
+ "10330": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 35.5"
+ },
+ "10331": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 34"
+ },
+ "10332": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 34"
+ },
+ "10333": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 34.5"
+ },
+ "10334": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 34.5"
+ },
+ "10335": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 35"
+ },
+ "10336": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 35"
+ },
+ "10337": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 36"
+ },
+ "10338": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 36"
+ },
+ "10339": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 36.5"
+ },
+ "10340": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 36.5"
+ },
+ "10341": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 18.5"
+ },
+ "10342": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 18.5"
+ },
+ "10343": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 37"
+ },
+ "10344": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 37"
+ },
+ "10345": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 37"
+ },
+ "10346": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 37"
+ },
+ "10347": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 17.5"
+ },
+ "10348": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 17.5"
+ },
+ "10349": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -2.5"
+ },
+ "10350": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 2.5"
+ },
+ "10351": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 18.5"
+ },
+ "10352": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 18.5"
+ },
+ "10353": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -4"
+ },
+ "10354": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 4"
+ },
+ "10355": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -3.5"
+ },
+ "10356": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 3.5"
+ },
+ "10357": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -3"
+ },
+ "10358": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 3"
+ },
+ "10359": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 16.5"
+ },
+ "10360": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 16.5"
+ },
+ "10361": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -2"
+ },
+ "10362": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 2"
+ },
+ "10363": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -1.5"
+ },
+ "10364": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 1.5"
+ },
+ "10365": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 6.5"
+ },
+ "10366": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -6.5"
+ },
+ "10367": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -1"
+ },
+ "10368": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 1"
+ },
+ "10369": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -2.5"
+ },
+ "10370": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 2.5"
+ },
+ "10371": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -2"
+ },
+ "10372": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 2"
+ },
+ "10373": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -1.5"
+ },
+ "10374": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 1.5"
+ },
+ "10375": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -0.5"
+ },
+ "10376": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 0.5"
+ },
+ "10377": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 0"
+ },
+ "10378": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 0"
+ },
+ "10379": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 0.5"
+ },
+ "10380": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -0.5"
+ },
+ "10381": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 33.5"
+ },
+ "10382": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 33.5"
+ },
+ "10383": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -5"
+ },
+ "10384": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 5"
+ },
+ "10385": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -4.5"
+ },
+ "10386": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 4.5"
+ },
+ "10387": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 37.5"
+ },
+ "10388": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 37.5"
+ },
+ "10389": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 38"
+ },
+ "10390": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 38"
+ },
+ "10391": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 38.5"
+ },
+ "10392": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 38.5"
+ },
+ "10393": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 20.5"
+ },
+ "10394": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 20.5"
+ },
+ "10395": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 25"
+ },
+ "10396": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 25"
+ },
+ "10397": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Game Team 1 Over 6"
+ },
+ "10398": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Game Team 1 Under 6"
+ },
+ "10399": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 39"
+ },
+ "10400": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 39"
+ },
+ "10401": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 39.5"
+ },
+ "10402": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 39.5"
+ },
+ "10403": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 17.5"
+ },
+ "10404": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 17.5"
+ },
+ "10405": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 2.5"
+ },
+ "10406": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -2.5"
+ },
+ "10407": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 26.5"
+ },
+ "10408": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 26.5"
+ },
+ "10409": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "5th Set Winner of match Point 1"
+ },
+ "10410": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "5th Set Winner of match Point 2"
+ },
+ "10411": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Over 12.5"
+ },
+ "10412": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Under 12.5"
+ },
+ "10413": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Over 14.5"
+ },
+ "10414": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Under 14.5"
+ },
+ "10415": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -1"
+ },
+ "10416": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 1"
+ },
+ "10417": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -2.5"
+ },
+ "10418": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 2.5"
+ },
+ "10419": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -2"
+ },
+ "10420": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 2"
+ },
+ "10421": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -1.5"
+ },
+ "10422": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 1.5"
+ },
+ "10423": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -0.5"
+ },
+ "10424": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 0.5"
+ },
+ "10425": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 0.5"
+ },
+ "10426": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -0.5"
+ },
+ "10427": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 1"
+ },
+ "10428": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -1"
+ },
+ "10429": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 57.5"
+ },
+ "10430": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 57.5"
+ },
+ "10431": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 19.5"
+ },
+ "10432": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 19.5"
+ },
+ "10433": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "2nd Period Handicap Goal Team 1 H1 -1"
+ },
+ "10434": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "2nd Period Handicap Goal Team 2 H2 1"
+ },
+ "10435": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "2nd Period Total Goal Over 2"
+ },
+ "10436": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "2nd Period Total Goal Under 2"
+ },
+ "10437": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "3rd Period Handicap Goal Team 1 H1 -1"
+ },
+ "10438": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "3rd Period Handicap Goal Team 2 H2 1"
+ },
+ "10439": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 27.5"
+ },
+ "10440": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 27.5"
+ },
+ "10441": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 31"
+ },
+ "10442": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 31"
+ },
+ "10443": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "3rd Period Total Goal Over 2"
+ },
+ "10444": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "3rd Period Total Goal Under 2"
+ },
+ "10445": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 537,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 5 Winner of match Game 1"
+ },
+ "10446": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 537,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 5 Winner of match Game 2"
+ },
+ "10447": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 16.5"
+ },
+ "10448": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 16.5"
+ },
+ "10449": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 33"
+ },
+ "10450": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 33"
+ },
+ "10451": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 33.5"
+ },
+ "10452": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 33.5"
+ },
+ "10453": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 32.5"
+ },
+ "10454": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 32.5"
+ },
+ "10455": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 17.5"
+ },
+ "10456": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 17.5"
+ },
+ "10457": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 3"
+ },
+ "10458": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -3"
+ },
+ "10459": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -3"
+ },
+ "10460": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 3"
+ },
+ "10461": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 2"
+ },
+ "10462": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -2"
+ },
+ "10463": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 60.5"
+ },
+ "10464": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 60.5"
+ },
+ "10465": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 30.5"
+ },
+ "10466": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 30.5"
+ },
+ "10467": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 18.5"
+ },
+ "10468": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 18.5"
+ },
+ "10469": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 3.5"
+ },
+ "10470": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -3.5"
+ },
+ "10471": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 26"
+ },
+ "10472": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 26"
+ },
+ "10473": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Over 11.5"
+ },
+ "10474": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Under 11.5"
+ },
+ "10475": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 1.5"
+ },
+ "10476": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -1.5"
+ },
+ "10477": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 2"
+ },
+ "10478": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -2"
+ },
+ "10479": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 2.5"
+ },
+ "10480": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -2.5"
+ },
+ "10481": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 56"
+ },
+ "10482": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 56"
+ },
+ "10483": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 54.5"
+ },
+ "10484": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 54.5"
+ },
+ "10485": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 55"
+ },
+ "10486": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 55"
+ },
+ "10487": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 55.5"
+ },
+ "10488": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 55.5"
+ },
+ "10489": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 56.5"
+ },
+ "10490": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 56.5"
+ },
+ "10491": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 57"
+ },
+ "10492": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 57"
+ },
+ "10493": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 57.5"
+ },
+ "10494": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 57.5"
+ },
+ "10495": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 27.5"
+ },
+ "10496": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 27.5"
+ },
+ "10497": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 28.5"
+ },
+ "10498": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 28.5"
+ },
+ "10499": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 4.5"
+ },
+ "10500": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -4.5"
+ },
+ "10501": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 25.5"
+ },
+ "10502": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 25.5"
+ },
+ "10503": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Over 10.5"
+ },
+ "10504": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Under 10.5"
+ },
+ "10505": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 58"
+ },
+ "10506": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 58"
+ },
+ "10507": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 58.5"
+ },
+ "10508": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 58.5"
+ },
+ "10509": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 29.5"
+ },
+ "10510": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 29.5"
+ },
+ "10511": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 5.5"
+ },
+ "10512": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -5.5"
+ },
+ "10513": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 24.5"
+ },
+ "10514": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 24.5"
+ },
+ "10515": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Over 9.5"
+ },
+ "10516": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Under 9.5"
+ },
+ "10517": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 15.5"
+ },
+ "10518": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 15.5"
+ },
+ "10519": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -5.5"
+ },
+ "10520": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 5.5"
+ },
+ "10521": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 28.5"
+ },
+ "10522": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 28.5"
+ },
+ "10523": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 5"
+ },
+ "10524": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -5"
+ },
+ "10525": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 25"
+ },
+ "10526": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 25"
+ },
+ "10527": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 529,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 1 Winner of match Game 1"
+ },
+ "10528": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 529,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 1 Winner of match Game 2"
+ },
+ "10529": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 32"
+ },
+ "10530": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 32"
+ },
+ "10531": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Over 15.5"
+ },
+ "10532": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Under 15.5"
+ },
+ "10533": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 30.5"
+ },
+ "10534": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 30.5"
+ },
+ "10535": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 31"
+ },
+ "10536": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 31"
+ },
+ "10537": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 31.5"
+ },
+ "10538": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 31.5"
+ },
+ "10539": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 14.5"
+ },
+ "10540": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 14.5"
+ },
+ "10541": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 30"
+ },
+ "10542": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 30"
+ },
+ "10543": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 13.5"
+ },
+ "10544": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 13.5"
+ },
+ "10545": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 28.5"
+ },
+ "10546": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 28.5"
+ },
+ "10547": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 17.5"
+ },
+ "10548": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 17.5"
+ },
+ "10549": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -6"
+ },
+ "10550": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 6"
+ },
+ "10551": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 538,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 6 Winner of match Game 1"
+ },
+ "10552": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 538,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 6 Winner of match Game 2"
+ },
+ "10553": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -7"
+ },
+ "10554": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 7"
+ },
+ "10555": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -6.5"
+ },
+ "10556": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 6.5"
+ },
+ "10557": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 1"
+ },
+ "10558": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -1"
+ },
+ "10559": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -8.5"
+ },
+ "10560": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 8.5"
+ },
+ "10561": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -8"
+ },
+ "10562": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 8"
+ },
+ "10563": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -7.5"
+ },
+ "10564": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 7.5"
+ },
+ "10565": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 28.5"
+ },
+ "10566": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 28.5"
+ },
+ "10567": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 29.5"
+ },
+ "10568": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 29.5"
+ },
+ "10569": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 1.5"
+ },
+ "10570": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -1.5"
+ },
+ "10571": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 6.5"
+ },
+ "10572": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -6.5"
+ },
+ "10573": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 23.5"
+ },
+ "10574": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 23.5"
+ },
+ "10575": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Over 8.5"
+ },
+ "10576": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Under 8.5"
+ },
+ "10577": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 6"
+ },
+ "10578": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -6"
+ },
+ "10579": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 24"
+ },
+ "10580": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 24"
+ },
+ "10581": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 59.5"
+ },
+ "10582": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 59.5"
+ },
+ "10583": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 59"
+ },
+ "10584": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 59"
+ },
+ "10585": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 60"
+ },
+ "10586": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 60"
+ },
+ "10587": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 60.5"
+ },
+ "10588": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 60.5"
+ },
+ "10589": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 61"
+ },
+ "10590": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 61"
+ },
+ "10591": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 30.5"
+ },
+ "10592": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 30.5"
+ },
+ "10593": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 29.5"
+ },
+ "10594": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 29.5"
+ },
+ "10595": {
+ "selectionId": 35,
+ "marketId": 29,
+ "gamePeriodId": 76,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match & Total Multiple 1 & Over 5.5"
+ },
+ "10596": {
+ "selectionId": 39,
+ "marketId": 29,
+ "gamePeriodId": 76,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match & Total Multiple 2 & Over 5.5"
+ },
+ "10597": {
+ "selectionId": 36,
+ "marketId": 29,
+ "gamePeriodId": 76,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match & Total Multiple 1 & Under 5.5"
+ },
+ "10598": {
+ "selectionId": 40,
+ "marketId": 29,
+ "gamePeriodId": 76,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match & Total Multiple 2 & Under 5.5"
+ },
+ "10599": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 12.5"
+ },
+ "10600": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 12.5"
+ },
+ "10601": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -9"
+ },
+ "10602": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 9"
+ },
+ "10603": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 21.5"
+ },
+ "10604": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 21.5"
+ },
+ "10605": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 3"
+ },
+ "10606": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -3"
+ },
+ "10607": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -9.5"
+ },
+ "10608": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 9.5"
+ },
+ "10609": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 27.5"
+ },
+ "10610": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 27.5"
+ },
+ "10611": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 30.5"
+ },
+ "10612": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 30.5"
+ },
+ "10613": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 7"
+ },
+ "10614": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -7"
+ },
+ "10615": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 23"
+ },
+ "10616": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 23"
+ },
+ "10617": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Over 7.5"
+ },
+ "10618": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Under 7.5"
+ },
+ "10619": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Game Over 7.5"
+ },
+ "10620": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Game Under 7.5"
+ },
+ "10621": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 521,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 2 Winner of match Game 1"
+ },
+ "10622": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 521,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 2 Winner of match Game 2"
+ },
+ "10623": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 522,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 3 Winner of match Game 1"
+ },
+ "10624": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 522,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 3 Winner of match Game 2"
+ },
+ "10625": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 516,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 1 Winner of match Game 1"
+ },
+ "10626": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 516,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 1 Winner of match Game 2"
+ },
+ "10627": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Game Over 9.5"
+ },
+ "10628": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Game Under 9.5"
+ },
+ "10629": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 61"
+ },
+ "10630": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 61"
+ },
+ "10631": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 8"
+ },
+ "10632": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -8"
+ },
+ "10633": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 22"
+ },
+ "10634": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 22"
+ },
+ "10635": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 8.5"
+ },
+ "10636": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -8.5"
+ },
+ "10637": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 21.5"
+ },
+ "10638": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 21.5"
+ },
+ "10639": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Over 6.5"
+ },
+ "10640": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Under 6.5"
+ },
+ "10641": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 523,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 4 Winner of match Game 1"
+ },
+ "10642": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 523,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 4 Winner of match Game 2"
+ },
+ "10643": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 539,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 7 Winner of match Game 1"
+ },
+ "10644": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 539,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 7 Winner of match Game 2"
+ },
+ "10645": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 7.5"
+ },
+ "10646": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -7.5"
+ },
+ "10647": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 22.5"
+ },
+ "10648": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 22.5"
+ },
+ "10649": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 5.5"
+ },
+ "10650": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -5.5"
+ },
+ "10651": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 56.5"
+ },
+ "10652": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 56.5"
+ },
+ "10653": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 57"
+ },
+ "10654": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 57"
+ },
+ "10655": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 26.5"
+ },
+ "10656": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 26.5"
+ },
+ "10657": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 6"
+ },
+ "10658": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -6"
+ },
+ "10659": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 3.5"
+ },
+ "10660": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -3.5"
+ },
+ "10661": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 32.5"
+ },
+ "10662": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 32.5"
+ },
+ "10663": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 6.5"
+ },
+ "10664": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -6.5"
+ },
+ "10665": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 7"
+ },
+ "10666": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -7"
+ },
+ "10667": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 7.5"
+ },
+ "10668": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -7.5"
+ },
+ "10669": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 56"
+ },
+ "10670": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 56"
+ },
+ "10671": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 25.5"
+ },
+ "10672": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 25.5"
+ },
+ "10673": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 55"
+ },
+ "10674": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 55"
+ },
+ "10675": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 55.5"
+ },
+ "10676": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 55.5"
+ },
+ "10677": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 54.5"
+ },
+ "10678": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 54.5"
+ },
+ "10679": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 24.5"
+ },
+ "10680": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 24.5"
+ },
+ "10681": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 54"
+ },
+ "10682": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 54"
+ },
+ "10683": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 56.5"
+ },
+ "10684": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 56.5"
+ },
+ "10685": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 28.5"
+ },
+ "10686": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 28.5"
+ },
+ "10687": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 5"
+ },
+ "10688": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -5"
+ },
+ "10689": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 3.5"
+ },
+ "10690": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -3.5"
+ },
+ "10691": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 4"
+ },
+ "10692": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -4"
+ },
+ "10693": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 4.5"
+ },
+ "10694": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -4.5"
+ },
+ "10695": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 5.5"
+ },
+ "10696": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -5.5"
+ },
+ "10697": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 6"
+ },
+ "10698": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -6"
+ },
+ "10699": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 6.5"
+ },
+ "10700": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -6.5"
+ },
+ "10701": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 26.5"
+ },
+ "10702": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 26.5"
+ },
+ "10703": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 31.5"
+ },
+ "10704": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 31.5"
+ },
+ "10705": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 53.5"
+ },
+ "10706": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 53.5"
+ },
+ "10707": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 52.5"
+ },
+ "10708": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 52.5"
+ },
+ "10709": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 53"
+ },
+ "10710": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 53"
+ },
+ "10711": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 23.5"
+ },
+ "10712": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 23.5"
+ },
+ "10713": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 51.5"
+ },
+ "10714": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 51.5"
+ },
+ "10715": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 52"
+ },
+ "10716": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 52"
+ },
+ "10717": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 28.5"
+ },
+ "10718": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 28.5"
+ },
+ "10719": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 540,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 8 Winner of match Game 1"
+ },
+ "10720": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 540,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 8 Winner of match Game 2"
+ },
+ "10721": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 524,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 5 Winner of match Game 1"
+ },
+ "10722": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 524,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 5 Winner of match Game 2"
+ },
+ "10723": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 27.5"
+ },
+ "10724": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 27.5"
+ },
+ "10725": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 50.5"
+ },
+ "10726": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 50.5"
+ },
+ "10727": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 51"
+ },
+ "10728": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 51"
+ },
+ "10729": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 525,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 6 Winner of match Game 1"
+ },
+ "10730": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 525,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 6 Winner of match Game 2"
+ },
+ "10731": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 49.5"
+ },
+ "10732": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 49.5"
+ },
+ "10733": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 50"
+ },
+ "10734": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 50"
+ },
+ "10735": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 26.5"
+ },
+ "10736": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 26.5"
+ },
+ "10737": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -3"
+ },
+ "10738": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 3"
+ },
+ "10739": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 25.5"
+ },
+ "10740": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 25.5"
+ },
+ "10741": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 61.5"
+ },
+ "10742": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 61.5"
+ },
+ "10743": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 62"
+ },
+ "10744": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 62"
+ },
+ "10745": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 62.5"
+ },
+ "10746": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 62.5"
+ },
+ "10747": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 29.5"
+ },
+ "10748": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 29.5"
+ },
+ "10749": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 63"
+ },
+ "10750": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 63"
+ },
+ "10751": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 541,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 9 Winner of match Game 1"
+ },
+ "10752": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 541,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 9 Winner of match Game 2"
+ },
+ "10753": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 63.5"
+ },
+ "10754": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 63.5"
+ },
+ "10755": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 64"
+ },
+ "10756": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 64"
+ },
+ "10757": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 64.5"
+ },
+ "10758": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 64.5"
+ },
+ "10759": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 34.5"
+ },
+ "10760": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 34.5"
+ },
+ "10761": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 65"
+ },
+ "10762": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 65"
+ },
+ "10763": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 65.5"
+ },
+ "10764": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 65.5"
+ },
+ "10765": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 35.5"
+ },
+ "10766": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 35.5"
+ },
+ "10767": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 8"
+ },
+ "10768": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -8"
+ },
+ "10769": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Game Team 1 Over 4.5"
+ },
+ "10770": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Game Team 1 Under 4.5"
+ },
+ "10771": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 526,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 7 Winner of match Game 1"
+ },
+ "10772": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 526,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 7 Winner of match Game 2"
+ },
+ "10773": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Game Team 2 Over 6"
+ },
+ "10774": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Game Team 2 Under 6"
+ },
+ "10775": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 8.5"
+ },
+ "10776": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -8.5"
+ },
+ "10777": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 530,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 10 Winner of match Game 1"
+ },
+ "10778": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 530,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 10 Winner of match Game 2"
+ },
+ "10779": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 66"
+ },
+ "10780": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 66"
+ },
+ "10781": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 30.5"
+ },
+ "10782": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 30.5"
+ },
+ "10783": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 33.5"
+ },
+ "10784": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 33.5"
+ },
+ "10785": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 25.5"
+ },
+ "10786": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 25.5"
+ },
+ "10787": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 23.5"
+ },
+ "10788": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 23.5"
+ },
+ "10789": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 48.5"
+ },
+ "10790": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 48.5"
+ },
+ "10791": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 49"
+ },
+ "10792": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 49"
+ },
+ "10793": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 24.5"
+ },
+ "10794": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 24.5"
+ },
+ "10795": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 9"
+ },
+ "10796": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -9"
+ },
+ "10797": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 22.5"
+ },
+ "10798": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 22.5"
+ },
+ "10799": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 7"
+ },
+ "10800": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -7"
+ },
+ "10801": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 527,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 8 Winner of match Game 1"
+ },
+ "10802": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 527,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 8 Winner of match Game 2"
+ },
+ "10803": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 21.5"
+ },
+ "10804": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 21.5"
+ },
+ "10805": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 48"
+ },
+ "10806": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 48"
+ },
+ "10807": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 20.5"
+ },
+ "10808": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 20.5"
+ },
+ "10809": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 7.5"
+ },
+ "10810": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -7.5"
+ },
+ "10811": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 531,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 11 Winner of match Game 1"
+ },
+ "10812": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 531,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 11 Winner of match Game 2"
+ },
+ "10813": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Game Team 1 Over 2.5"
+ },
+ "10814": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Game Team 1 Under 2.5"
+ },
+ "10815": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 9.5"
+ },
+ "10816": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -9.5"
+ },
+ "10817": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 10"
+ },
+ "10818": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -10"
+ },
+ "10819": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 10.5"
+ },
+ "10820": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -10.5"
+ },
+ "10821": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 11"
+ },
+ "10822": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -11"
+ },
+ "10823": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 37.5"
+ },
+ "10824": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 37.5"
+ },
+ "10825": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 528,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 9 Winner of match Game 1"
+ },
+ "10826": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 528,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 9 Winner of match Game 2"
+ },
+ "10827": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 36.5"
+ },
+ "10828": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 36.5"
+ },
+ "10829": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 11.5"
+ },
+ "10830": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -11.5"
+ },
+ "10831": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 12"
+ },
+ "10832": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -12"
+ },
+ "10833": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 532,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 12 Winner of match Game 1"
+ },
+ "10834": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 532,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 12 Winner of match Game 2"
+ },
+ "10835": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 508,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 127.5"
+ },
+ "10836": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 12.5"
+ },
+ "10837": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -12.5"
+ },
+ "10838": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 13"
+ },
+ "10839": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -13"
+ },
+ "10840": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 13.5"
+ },
+ "10841": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -13.5"
+ },
+ "10842": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 14"
+ },
+ "10843": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -14"
+ },
+ "10844": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 517,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 10 Winner of match Game 1"
+ },
+ "10845": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 517,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 10 Winner of match Game 2"
+ },
+ "10846": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 505,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 128.5"
+ },
+ "10847": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 700,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 244"
+ },
+ "10848": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 700,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 244"
+ },
+ "10849": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 701,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 245"
+ },
+ "10850": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 701,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 245"
+ },
+ "10851": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 702,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 246"
+ },
+ "10852": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 702,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 246"
+ },
+ "10853": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 31.5"
+ },
+ "10854": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 31.5"
+ },
+ "10855": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 703,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 247"
+ },
+ "10856": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 703,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 247"
+ },
+ "10857": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 533,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 13 Winner of match Game 1"
+ },
+ "10858": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 533,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 2 Game 13 Winner of match Game 2"
+ },
+ "10859": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 22.5"
+ },
+ "10860": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 22.5"
+ },
+ "10861": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 14.5"
+ },
+ "10862": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -14.5"
+ },
+ "10863": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 27.5"
+ },
+ "10864": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 27.5"
+ },
+ "10865": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 518,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 11 Winner of match Game 1"
+ },
+ "10866": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 518,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 11 Winner of match Game 2"
+ },
+ "10867": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 0"
+ },
+ "10868": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 0"
+ },
+ "10869": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 0"
+ },
+ "10870": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 0"
+ },
+ "10871": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 500,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 130.5"
+ },
+ "10872": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 500,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 130.5"
+ },
+ "10873": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 507,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 129.5"
+ },
+ "10874": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 519,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 12 Winner of match Game 1"
+ },
+ "10875": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 519,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 1 Game 12 Winner of match Game 2"
+ },
+ "10876": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 65"
+ },
+ "10877": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 65"
+ },
+ "10878": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 137,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 126"
+ },
+ "10879": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 137,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 126"
+ },
+ "10880": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 66"
+ },
+ "10881": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 66"
+ },
+ "10882": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 34.5"
+ },
+ "10883": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 139,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 127"
+ },
+ "10884": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 139,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 127"
+ },
+ "10885": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 361,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 67"
+ },
+ "10886": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 361,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 67"
+ },
+ "10887": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 504,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 128"
+ },
+ "10888": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 504,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 128"
+ },
+ "10889": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 54"
+ },
+ "10890": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 54"
+ },
+ "10891": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 61.5"
+ },
+ "10892": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 61.5"
+ },
+ "10893": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 62"
+ },
+ "10894": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 62"
+ },
+ "10895": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 30.5"
+ },
+ "10896": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 30.5"
+ },
+ "10897": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 62.5"
+ },
+ "10898": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 62.5"
+ },
+ "10899": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 63"
+ },
+ "10900": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 63"
+ },
+ "10901": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 63.5"
+ },
+ "10902": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 63.5"
+ },
+ "10903": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 32.5"
+ },
+ "10904": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 32.5"
+ },
+ "10905": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 8"
+ },
+ "10906": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -8"
+ },
+ "10907": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 9"
+ },
+ "10908": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -9"
+ },
+ "10909": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 11"
+ },
+ "10910": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -11"
+ },
+ "10911": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 64"
+ },
+ "10912": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 64"
+ },
+ "10913": {
+ "selectionId": 35,
+ "marketId": 29,
+ "gamePeriodId": 76,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match & Total Multiple 1 & Over"
+ },
+ "10914": {
+ "selectionId": 39,
+ "marketId": 29,
+ "gamePeriodId": 76,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match & Total Multiple 2 & Over"
+ },
+ "10915": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -5"
+ },
+ "10916": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 5"
+ },
+ "10917": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 377,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 74"
+ },
+ "10918": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 377,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 74"
+ },
+ "10919": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 39.5"
+ },
+ "10920": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 39.5"
+ },
+ "10921": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 34.5"
+ },
+ "10922": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 34.5"
+ },
+ "10923": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 53.5"
+ },
+ "10924": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 53.5"
+ },
+ "10925": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 26.5"
+ },
+ "10926": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 26.5"
+ },
+ "10927": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 53"
+ },
+ "10928": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 53"
+ },
+ "10929": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 52"
+ },
+ "10930": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 52"
+ },
+ "10931": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 52.5"
+ },
+ "10932": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 52.5"
+ },
+ "10933": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 33.5"
+ },
+ "10934": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 55.5"
+ },
+ "10935": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 55.5"
+ },
+ "10936": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 56"
+ },
+ "10937": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 56"
+ },
+ "10938": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -3.5"
+ },
+ "10939": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 3.5"
+ },
+ "10940": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -4.5"
+ },
+ "10941": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 4.5"
+ },
+ "10942": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -4"
+ },
+ "10943": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 4"
+ },
+ "10944": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -5"
+ },
+ "10945": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 5"
+ },
+ "10946": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -6"
+ },
+ "10947": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 6"
+ },
+ "10948": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -5.5"
+ },
+ "10949": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 5.5"
+ },
+ "10950": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 31.5"
+ },
+ "10951": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 31.5"
+ },
+ "10952": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 32.5"
+ },
+ "10953": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 32.5"
+ },
+ "10954": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 34.5"
+ },
+ "10955": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "3rd Period Handicap Goal Team 1 H1 1"
+ },
+ "10956": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "3rd Period Handicap Goal Team 2 H2 -1"
+ },
+ "10957": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 35.5"
+ },
+ "10958": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 35.5"
+ },
+ "10959": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -6.5"
+ },
+ "10960": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 6.5"
+ },
+ "10961": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 33.5"
+ },
+ "10962": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 33.5"
+ },
+ "10963": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -7"
+ },
+ "10964": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 7"
+ },
+ "10965": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -8"
+ },
+ "10966": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 8"
+ },
+ "10967": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -7.5"
+ },
+ "10968": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 7.5"
+ },
+ "10969": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -11"
+ },
+ "10970": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 11"
+ },
+ "10971": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -10.5"
+ },
+ "10972": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 10.5"
+ },
+ "10973": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 36.5"
+ },
+ "10974": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 36.5"
+ },
+ "10975": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 25.5"
+ },
+ "10976": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 25.5"
+ },
+ "10977": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 37.5"
+ },
+ "10978": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 37.5"
+ },
+ "10979": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 24.5"
+ },
+ "10980": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 24.5"
+ },
+ "10981": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -9"
+ },
+ "10982": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 9"
+ },
+ "10983": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -10"
+ },
+ "10984": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 10"
+ },
+ "10985": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -9.5"
+ },
+ "10986": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 9.5"
+ },
+ "10987": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -8.5"
+ },
+ "10988": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 8.5"
+ },
+ "10989": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 704,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 248"
+ },
+ "10990": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 704,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 248"
+ },
+ "10991": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 38.5"
+ },
+ "10992": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 38.5"
+ },
+ "10993": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 67.5"
+ },
+ "10994": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 67.5"
+ },
+ "10995": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 363,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 68"
+ },
+ "10996": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 363,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 68"
+ },
+ "10997": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 65.5"
+ },
+ "10998": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 66.5"
+ },
+ "10999": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 68.5"
+ },
+ "11000": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 68.5"
+ },
+ "11001": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "2nd Period Handicap Goal Team 1 H1 1"
+ },
+ "11002": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "2nd Period Handicap Goal Team 2 H2 -1"
+ },
+ "11003": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 365,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 69"
+ },
+ "11004": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 365,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 69"
+ },
+ "11005": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 705,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 249"
+ },
+ "11006": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 705,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 249"
+ },
+ "11007": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 69.5"
+ },
+ "11008": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 69.5"
+ },
+ "11009": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 39.5"
+ },
+ "11010": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 39.5"
+ },
+ "11011": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -11.5"
+ },
+ "11012": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 11.5"
+ },
+ "11013": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -12.5"
+ },
+ "11014": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 12.5"
+ },
+ "11015": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -12"
+ },
+ "11016": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 12"
+ },
+ "11017": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -13"
+ },
+ "11018": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 13"
+ },
+ "11019": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 67.5"
+ },
+ "11020": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 67.5"
+ },
+ "11021": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 369,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 70"
+ },
+ "11022": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 369,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 70"
+ },
+ "11023": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 706,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 250"
+ },
+ "11024": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 706,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 250"
+ },
+ "11025": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 68.5"
+ },
+ "11026": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 68.5"
+ },
+ "11027": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -13.5"
+ },
+ "11028": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 13.5"
+ },
+ "11029": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 70.5"
+ },
+ "11030": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 70.5"
+ },
+ "11031": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 371,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 71"
+ },
+ "11032": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 371,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 71"
+ },
+ "11033": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 71.5"
+ },
+ "11034": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 71.5"
+ },
+ "11035": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 41.5"
+ },
+ "11036": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 41.5"
+ },
+ "11037": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 55"
+ },
+ "11038": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 55"
+ },
+ "11039": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 40.5"
+ },
+ "11040": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 40.5"
+ },
+ "11041": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 54.5"
+ },
+ "11042": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 54.5"
+ },
+ "11043": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 31.5"
+ },
+ "11044": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 31.5"
+ },
+ "11045": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 3"
+ },
+ "11046": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -3"
+ },
+ "11047": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 2"
+ },
+ "11048": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -2"
+ },
+ "11049": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 2.5"
+ },
+ "11050": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -2.5"
+ },
+ "11051": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 59.5"
+ },
+ "11052": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 59.5"
+ },
+ "11053": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 60"
+ },
+ "11054": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 60"
+ },
+ "11055": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 60.5"
+ },
+ "11056": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 60.5"
+ },
+ "11057": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 27.5"
+ },
+ "11058": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 27.5"
+ },
+ "11059": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 33.5"
+ },
+ "11060": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 33.5"
+ },
+ "11061": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 32.5"
+ },
+ "11062": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 32.5"
+ },
+ "11063": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Game Over 9.5"
+ },
+ "11064": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Game Under 9.5"
+ },
+ "11065": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Game Over 8.5"
+ },
+ "11066": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Game Under 8.5"
+ },
+ "11067": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Game Over 10.5"
+ },
+ "11068": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Game Under 10.5"
+ },
+ "11069": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Game Over 12.5"
+ },
+ "11070": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Game Under 12.5"
+ },
+ "11071": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 554,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 2 Winner of match Game 1"
+ },
+ "11072": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 554,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 2 Winner of match Game 2"
+ },
+ "11073": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 565,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 3 Winner of match Game 1"
+ },
+ "11074": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 565,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 3 Winner of match Game 2"
+ },
+ "11075": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 576,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 4 Winner of match Game 1"
+ },
+ "11076": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 576,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 4 Winner of match Game 2"
+ },
+ "11077": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 542,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 1 Winner of match Game 1"
+ },
+ "11078": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 542,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 1 Winner of match Game 2"
+ },
+ "11079": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 69.5"
+ },
+ "11080": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 69.5"
+ },
+ "11081": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 34.5"
+ },
+ "11082": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 34.5"
+ },
+ "11083": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 70.5"
+ },
+ "11084": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 70.5"
+ },
+ "11085": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 64.5"
+ },
+ "11086": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 64.5"
+ },
+ "11087": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 71.5"
+ },
+ "11088": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 71.5"
+ },
+ "11089": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 35.5"
+ },
+ "11090": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 35.5"
+ },
+ "11091": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 30.5"
+ },
+ "11092": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 30.5"
+ },
+ "11093": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 707,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 251"
+ },
+ "11094": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 707,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 251"
+ },
+ "11095": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 506,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 129"
+ },
+ "11096": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 506,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 129"
+ },
+ "11097": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 65"
+ },
+ "11098": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 65"
+ },
+ "11099": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 708,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 252"
+ },
+ "11100": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 708,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 252"
+ },
+ "11101": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 709,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 252.5"
+ },
+ "11102": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 709,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 252.5"
+ },
+ "11103": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 710,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 253"
+ },
+ "11104": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 710,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 253"
+ },
+ "11105": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 502,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 131.5"
+ },
+ "11106": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 502,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 131.5"
+ },
+ "11107": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 499,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 130"
+ },
+ "11108": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 499,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 130"
+ },
+ "11109": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 507,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 129.5"
+ },
+ "11110": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 507,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 129.5"
+ },
+ "11111": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 500,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 130.5"
+ },
+ "11112": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 500,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 130.5"
+ },
+ "11113": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 501,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 131"
+ },
+ "11114": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 501,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 131"
+ },
+ "11115": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 72.5"
+ },
+ "11116": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 72.5"
+ },
+ "11117": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 66"
+ },
+ "11118": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 66"
+ },
+ "11119": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 65.5"
+ },
+ "11120": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 65.5"
+ },
+ "11121": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 66.5"
+ },
+ "11122": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 66.5"
+ },
+ "11123": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 361,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 67"
+ },
+ "11124": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 361,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 67"
+ },
+ "11125": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 36.5"
+ },
+ "11126": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 36.5"
+ },
+ "11127": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 587,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 5 Winner of match Game 1"
+ },
+ "11128": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 587,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 5 Winner of match Game 2"
+ },
+ "11129": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 502,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 131.5"
+ },
+ "11130": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 502,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 131.5"
+ },
+ "11131": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 67.5"
+ },
+ "11132": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 67.5"
+ },
+ "11133": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 66.5"
+ },
+ "11134": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 66.5"
+ },
+ "11135": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 361,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 67"
+ },
+ "11136": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 361,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 67"
+ },
+ "11137": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 363,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 68"
+ },
+ "11138": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 363,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 68"
+ },
+ "11139": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 68.5"
+ },
+ "11140": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 68.5"
+ },
+ "11141": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 365,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 69"
+ },
+ "11142": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 365,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 69"
+ },
+ "11143": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 144,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 133.5"
+ },
+ "11144": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 144,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 133.5"
+ },
+ "11145": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 142,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 132.5"
+ },
+ "11146": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 142,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 132.5"
+ },
+ "11147": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 61"
+ },
+ "11148": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 61"
+ },
+ "11149": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 32.5"
+ },
+ "11150": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 32.5"
+ },
+ "11151": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 69.5"
+ },
+ "11152": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 69.5"
+ },
+ "11153": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 369,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 70"
+ },
+ "11154": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 369,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 70"
+ },
+ "11155": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 70.5"
+ },
+ "11156": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 70.5"
+ },
+ "11157": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 371,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 71"
+ },
+ "11158": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 371,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 71"
+ },
+ "11159": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 373,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 72"
+ },
+ "11160": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 373,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 72"
+ },
+ "11161": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 71.5"
+ },
+ "11162": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 71.5"
+ },
+ "11163": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 72.5"
+ },
+ "11164": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 72.5"
+ },
+ "11165": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 375,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 73"
+ },
+ "11166": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 375,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 73"
+ },
+ "11167": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 35.5"
+ },
+ "11168": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 35.5"
+ },
+ "11169": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 34.5"
+ },
+ "11170": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 34.5"
+ },
+ "11171": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 36.5"
+ },
+ "11172": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 36.5"
+ },
+ "11173": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 37.5"
+ },
+ "11174": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 37.5"
+ },
+ "11175": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 598,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 6 Winner of match Game 1"
+ },
+ "11176": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 598,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 6 Winner of match Game 2"
+ },
+ "11177": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 609,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 7 Winner of match Game 1"
+ },
+ "11178": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 609,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 7 Winner of match Game 2"
+ },
+ "11179": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 620,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 8 Winner of match Game 1"
+ },
+ "11180": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 620,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 8 Winner of match Game 2"
+ },
+ "11181": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 142,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 132.5"
+ },
+ "11182": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 142,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 132.5"
+ },
+ "11183": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 144,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 133.5"
+ },
+ "11184": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 144,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 133.5"
+ },
+ "11185": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 631,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 9 Winner of match Game 1"
+ },
+ "11186": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 631,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 9 Winner of match Game 2"
+ },
+ "11187": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 146,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 134.5"
+ },
+ "11188": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 146,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 134.5"
+ },
+ "11189": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 148,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 135.5"
+ },
+ "11190": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 148,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 135.5"
+ },
+ "11191": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 150,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 136.5"
+ },
+ "11192": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 150,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 136.5"
+ },
+ "11193": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 543,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 10 Winner of match Game 1"
+ },
+ "11194": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 543,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 10 Winner of match Game 2"
+ },
+ "11195": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 152,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 137.5"
+ },
+ "11196": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 152,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 137.5"
+ },
+ "11197": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 38.5"
+ },
+ "11198": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 38.5"
+ },
+ "11199": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 711,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 253.5"
+ },
+ "11200": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 711,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 253.5"
+ },
+ "11201": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 39.5"
+ },
+ "11202": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 39.5"
+ },
+ "11203": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 712,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 254"
+ },
+ "11204": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 712,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 254"
+ },
+ "11205": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 713,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 254.5"
+ },
+ "11206": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 713,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 254.5"
+ },
+ "11207": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 714,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 255"
+ },
+ "11208": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 714,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 255"
+ },
+ "11209": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 655,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 255.5"
+ },
+ "11210": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 655,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 255.5"
+ },
+ "11211": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 715,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 256"
+ },
+ "11212": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 715,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 256"
+ },
+ "11213": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 40.5"
+ },
+ "11214": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 40.5"
+ },
+ "11215": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 545,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 11 Winner of match Game 1"
+ },
+ "11216": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 545,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 11 Winner of match Game 2"
+ },
+ "11217": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 546,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 12 Winner of match Game 1"
+ },
+ "11218": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 546,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 12 Winner of match Game 2"
+ },
+ "11219": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 547,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 13 Winner of match Game 1"
+ },
+ "11220": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 547,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 3 Game 13 Winner of match Game 2"
+ },
+ "11221": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 67.5"
+ },
+ "11222": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 362,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 67.5"
+ },
+ "11223": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 363,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 68"
+ },
+ "11224": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 363,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 68"
+ },
+ "11225": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 34.5"
+ },
+ "11226": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 34.5"
+ },
+ "11227": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 33.5"
+ },
+ "11228": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 33.5"
+ },
+ "11229": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 68.5"
+ },
+ "11230": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 68.5"
+ },
+ "11231": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Game Over 7.5"
+ },
+ "11232": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Game Under 7.5"
+ },
+ "11233": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 146,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 134.5"
+ },
+ "11234": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 146,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 134.5"
+ },
+ "11235": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 148,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 135.5"
+ },
+ "11236": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 148,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 135.5"
+ },
+ "11237": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 150,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 136.5"
+ },
+ "11238": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 150,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 136.5"
+ },
+ "11239": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 152,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 137.5"
+ },
+ "11240": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 152,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 137.5"
+ },
+ "11241": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 154,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 138.5"
+ },
+ "11242": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 154,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 138.5"
+ },
+ "11243": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Game Over 6.5"
+ },
+ "11244": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Game Under 6.5"
+ },
+ "11245": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 40.5"
+ },
+ "11246": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 40.5"
+ },
+ "11247": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 20.5"
+ },
+ "11248": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 20.5"
+ },
+ "11249": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 20.5"
+ },
+ "11250": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 20.5"
+ },
+ "11251": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 39"
+ },
+ "11252": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 39"
+ },
+ "11253": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 39.5"
+ },
+ "11254": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 39.5"
+ },
+ "11255": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 40"
+ },
+ "11256": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 40"
+ },
+ "11257": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 41"
+ },
+ "11258": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 41"
+ },
+ "11259": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 41.5"
+ },
+ "11260": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 41.5"
+ },
+ "11261": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 42"
+ },
+ "11262": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 42"
+ },
+ "11263": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 42.5"
+ },
+ "11264": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 42.5"
+ },
+ "11265": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 19.5"
+ },
+ "11266": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 19.5"
+ },
+ "11267": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 38.5"
+ },
+ "11268": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 38.5"
+ },
+ "11269": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 15.5"
+ },
+ "11270": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 15.5"
+ },
+ "11271": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 14.5"
+ },
+ "11272": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 14.5"
+ },
+ "11273": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 38"
+ },
+ "11274": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 38"
+ },
+ "11275": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 19.5"
+ },
+ "11276": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 19.5"
+ },
+ "11277": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 19.5"
+ },
+ "11278": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 19.5"
+ },
+ "11279": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 40"
+ },
+ "11280": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 40"
+ },
+ "11281": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 40.5"
+ },
+ "11282": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 40.5"
+ },
+ "11283": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 41"
+ },
+ "11284": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 41"
+ },
+ "11285": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 37.5"
+ },
+ "11286": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 37.5"
+ },
+ "11287": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 36"
+ },
+ "11288": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 36"
+ },
+ "11289": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 36.5"
+ },
+ "11290": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 36.5"
+ },
+ "11291": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 37"
+ },
+ "11292": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 37"
+ },
+ "11293": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 18.5"
+ },
+ "11294": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 18.5"
+ },
+ "11295": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 18.5"
+ },
+ "11296": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 18.5"
+ },
+ "11297": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 35.5"
+ },
+ "11298": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 35.5"
+ },
+ "11299": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 35"
+ },
+ "11300": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 35"
+ },
+ "11301": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 34"
+ },
+ "11302": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 34"
+ },
+ "11303": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 34.5"
+ },
+ "11304": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 34.5"
+ },
+ "11305": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 17.5"
+ },
+ "11306": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 17.5"
+ },
+ "11307": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 17.5"
+ },
+ "11308": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 17.5"
+ },
+ "11309": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 16.5"
+ },
+ "11310": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 16.5"
+ },
+ "11311": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 33"
+ },
+ "11312": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 33"
+ },
+ "11313": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 33.5"
+ },
+ "11314": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 33.5"
+ },
+ "11315": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 15.5"
+ },
+ "11316": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 15.5"
+ },
+ "11317": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 32"
+ },
+ "11318": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 32"
+ },
+ "11319": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 32.5"
+ },
+ "11320": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 32.5"
+ },
+ "11321": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 31.5"
+ },
+ "11322": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 31.5"
+ },
+ "11323": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 14.5"
+ },
+ "11324": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 14.5"
+ },
+ "11325": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 31"
+ },
+ "11326": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 31"
+ },
+ "11327": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 16.5"
+ },
+ "11328": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 16.5"
+ },
+ "11329": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 30.5"
+ },
+ "11330": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 30.5"
+ },
+ "11331": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 29.5"
+ },
+ "11332": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 29.5"
+ },
+ "11333": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 30"
+ },
+ "11334": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 30"
+ },
+ "11335": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 28.5"
+ },
+ "11336": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 28.5"
+ },
+ "11337": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 29"
+ },
+ "11338": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 29"
+ },
+ "11339": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 15.5"
+ },
+ "11340": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 15.5"
+ },
+ "11341": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 14.5"
+ },
+ "11342": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 14.5"
+ },
+ "11343": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 13.5"
+ },
+ "11344": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 13.5"
+ },
+ "11345": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 20.5"
+ },
+ "11346": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 20.5"
+ },
+ "11347": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 39"
+ },
+ "11348": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 39"
+ },
+ "11349": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 19.5"
+ },
+ "11350": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 19.5"
+ },
+ "11351": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 37.5"
+ },
+ "11352": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 37.5"
+ },
+ "11353": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 38"
+ },
+ "11354": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 38"
+ },
+ "11355": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 38.5"
+ },
+ "11356": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 38.5"
+ },
+ "11357": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 39.5"
+ },
+ "11358": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 39.5"
+ },
+ "11359": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 40"
+ },
+ "11360": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 40"
+ },
+ "11361": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 40.5"
+ },
+ "11362": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 40.5"
+ },
+ "11363": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 41"
+ },
+ "11364": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 41"
+ },
+ "11365": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 34"
+ },
+ "11366": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 34"
+ },
+ "11367": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 34.5"
+ },
+ "11368": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 34.5"
+ },
+ "11369": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 33"
+ },
+ "11370": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 33"
+ },
+ "11371": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 33.5"
+ },
+ "11372": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 33.5"
+ },
+ "11373": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 32.5"
+ },
+ "11374": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 32.5"
+ },
+ "11375": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 31"
+ },
+ "11376": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 31"
+ },
+ "11377": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 31.5"
+ },
+ "11378": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 31.5"
+ },
+ "11379": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 32"
+ },
+ "11380": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 32"
+ },
+ "11381": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 30.5"
+ },
+ "11382": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 30.5"
+ },
+ "11383": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 29.5"
+ },
+ "11384": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 29.5"
+ },
+ "11385": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 30"
+ },
+ "11386": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 30"
+ },
+ "11387": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 16.5"
+ },
+ "11388": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 16.5"
+ },
+ "11389": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 29"
+ },
+ "11390": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 29"
+ },
+ "11391": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 19.5"
+ },
+ "11392": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 19.5"
+ },
+ "11393": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 41.5"
+ },
+ "11394": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 41.5"
+ },
+ "11395": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 21.5"
+ },
+ "11396": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 21.5"
+ },
+ "11397": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 22.5"
+ },
+ "11398": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 22.5"
+ },
+ "11399": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 42"
+ },
+ "11400": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 42"
+ },
+ "11401": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 42.5"
+ },
+ "11402": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 42.5"
+ },
+ "11403": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 43"
+ },
+ "11404": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 43"
+ },
+ "11405": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 43.5"
+ },
+ "11406": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 43.5"
+ },
+ "11407": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 23.5"
+ },
+ "11408": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 23.5"
+ },
+ "11409": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 44"
+ },
+ "11410": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 44"
+ },
+ "11411": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 44.5"
+ },
+ "11412": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 44.5"
+ },
+ "11413": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 21.5"
+ },
+ "11414": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 21.5"
+ },
+ "11415": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 22.5"
+ },
+ "11416": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 22.5"
+ },
+ "11417": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 43"
+ },
+ "11418": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 43"
+ },
+ "11419": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 43.5"
+ },
+ "11420": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 43.5"
+ },
+ "11421": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 16.5"
+ },
+ "11422": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 16.5"
+ },
+ "11423": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 23.5"
+ },
+ "11424": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 23.5"
+ },
+ "11425": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 44"
+ },
+ "11426": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 44"
+ },
+ "11427": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 15.5"
+ },
+ "11428": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 15.5"
+ },
+ "11429": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 14.5"
+ },
+ "11430": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 14.5"
+ },
+ "11431": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 44.5"
+ },
+ "11432": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 44.5"
+ },
+ "11433": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 45"
+ },
+ "11434": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 45"
+ },
+ "11435": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 45.5"
+ },
+ "11436": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 45.5"
+ },
+ "11437": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 46"
+ },
+ "11438": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 46"
+ },
+ "11439": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 46.5"
+ },
+ "11440": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 46.5"
+ },
+ "11441": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 47"
+ },
+ "11442": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 47"
+ },
+ "11443": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 47.5"
+ },
+ "11444": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 47.5"
+ },
+ "11445": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 48"
+ },
+ "11446": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 48"
+ },
+ "11447": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 48.5"
+ },
+ "11448": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 48.5"
+ },
+ "11449": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 21.5"
+ },
+ "11450": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 21.5"
+ },
+ "11451": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 18.5"
+ },
+ "11452": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 18.5"
+ },
+ "11453": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -4.5"
+ },
+ "11454": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 4.5"
+ },
+ "11455": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -4"
+ },
+ "11456": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 4"
+ },
+ "11457": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -3.5"
+ },
+ "11458": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 3.5"
+ },
+ "11459": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 20.5"
+ },
+ "11460": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 20.5"
+ },
+ "11461": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 45"
+ },
+ "11462": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 45"
+ },
+ "11463": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 45.5"
+ },
+ "11464": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 45.5"
+ },
+ "11465": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 46"
+ },
+ "11466": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 46"
+ },
+ "11467": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -5"
+ },
+ "11468": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 5"
+ },
+ "11469": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 46.5"
+ },
+ "11470": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 46.5"
+ },
+ "11471": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 47"
+ },
+ "11472": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 47"
+ },
+ "11473": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 47.5"
+ },
+ "11474": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 47.5"
+ },
+ "11475": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Game Team 1 Over 5"
+ },
+ "11476": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Game Team 1 Under 5"
+ },
+ "11477": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -5.5"
+ },
+ "11478": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 5.5"
+ },
+ "11479": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 36.5"
+ },
+ "11480": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 442,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -36.5"
+ },
+ "11481": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 1.5"
+ },
+ "11482": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 -1.5"
+ },
+ "11483": {
+ "selectionId": 1,
+ "marketId": 1,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 - 1st Half Full time result Round 1"
+ },
+ "11484": {
+ "selectionId": 3,
+ "marketId": 1,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 - 1st Half Full time result Round 2"
+ },
+ "11485": {
+ "selectionId": 2,
+ "marketId": 1,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 - 1st Half Full time result Round X"
+ },
+ "11486": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 -1.5"
+ },
+ "11487": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 1.5"
+ },
+ "11488": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 2.5"
+ },
+ "11489": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 -2.5"
+ },
+ "11490": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 -2.5"
+ },
+ "11491": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 2.5"
+ },
+ "11492": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 1 Over 4.5"
+ },
+ "11493": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 1 Under 4.5"
+ },
+ "11494": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 2 Over 7.5"
+ },
+ "11495": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 2 Under 7.5"
+ },
+ "11496": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 1 Over 3.5"
+ },
+ "11497": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 1 Under 3.5"
+ },
+ "11498": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 2 Over 8.5"
+ },
+ "11499": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 2 Under 8.5"
+ },
+ "11500": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 1.5"
+ },
+ "11501": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 -1.5"
+ },
+ "11502": {
+ "selectionId": 1,
+ "marketId": 1,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 - 1st Half Full time result Round 1"
+ },
+ "11503": {
+ "selectionId": 3,
+ "marketId": 1,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 - 1st Half Full time result Round 2"
+ },
+ "11504": {
+ "selectionId": 2,
+ "marketId": 1,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 - 1st Half Full time result Round X"
+ },
+ "11505": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 -1.5"
+ },
+ "11506": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 1.5"
+ },
+ "11507": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 2.5"
+ },
+ "11508": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 -2.5"
+ },
+ "11509": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 -2.5"
+ },
+ "11510": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 2.5"
+ },
+ "11511": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 -3.5"
+ },
+ "11512": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 3.5"
+ },
+ "11513": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 -4.5"
+ },
+ "11514": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 4.5"
+ },
+ "11515": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 1 Over 7.5"
+ },
+ "11516": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 1 Under 7.5"
+ },
+ "11517": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 2 Over 4.5"
+ },
+ "11518": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 2 Under 4.5"
+ },
+ "11519": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 1 Over 8.5"
+ },
+ "11520": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 1 Under 8.5"
+ },
+ "11521": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 2 Over 3.5"
+ },
+ "11522": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 2 Under 3.5"
+ },
+ "11523": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 1 Over 9.5"
+ },
+ "11524": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 1 Under 9.5"
+ },
+ "11525": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 2 Over 2.5"
+ },
+ "11526": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 2 Under 2.5"
+ },
+ "11527": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 15.5"
+ },
+ "11528": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 15.5"
+ },
+ "11529": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 716,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 15960.5"
+ },
+ "11530": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 716,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 15960.5"
+ },
+ "11531": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 28.5"
+ },
+ "11532": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 28.5"
+ },
+ "11533": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 28"
+ },
+ "11534": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 28"
+ },
+ "11535": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 14.5"
+ },
+ "11536": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 14.5"
+ },
+ "11537": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 27.5"
+ },
+ "11538": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 27.5"
+ },
+ "11539": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 26"
+ },
+ "11540": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 26"
+ },
+ "11541": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 26.5"
+ },
+ "11542": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 26.5"
+ },
+ "11543": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 27"
+ },
+ "11544": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 27"
+ },
+ "11545": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 13.5"
+ },
+ "11546": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 13.5"
+ },
+ "11547": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 24.5"
+ },
+ "11548": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 24.5"
+ },
+ "11549": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 13.5"
+ },
+ "11550": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 13.5"
+ },
+ "11551": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 25.5"
+ },
+ "11552": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 25.5"
+ },
+ "11553": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 1.5"
+ },
+ "11554": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 -1.5"
+ },
+ "11555": {
+ "selectionId": 1,
+ "marketId": 1,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 - 1st Half Full time result Round 1"
+ },
+ "11556": {
+ "selectionId": 3,
+ "marketId": 1,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 - 1st Half Full time result Round 2"
+ },
+ "11557": {
+ "selectionId": 2,
+ "marketId": 1,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 - 1st Half Full time result Round X"
+ },
+ "11558": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 -1.5"
+ },
+ "11559": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 1.5"
+ },
+ "11560": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 2.5"
+ },
+ "11561": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 -2.5"
+ },
+ "11562": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 49"
+ },
+ "11563": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 49"
+ },
+ "11564": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 49.5"
+ },
+ "11565": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 49.5"
+ },
+ "11566": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 50"
+ },
+ "11567": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 50"
+ },
+ "11568": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 50.5"
+ },
+ "11569": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 50.5"
+ },
+ "11570": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 3.5"
+ },
+ "11571": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 -3.5"
+ },
+ "11572": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 4.5"
+ },
+ "11573": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 -4.5"
+ },
+ "11574": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Over 4.5"
+ },
+ "11575": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Under 4.5"
+ },
+ "11576": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 2 Over 7.5"
+ },
+ "11577": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 2 Under 7.5"
+ },
+ "11578": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -10.5"
+ },
+ "11579": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 10.5"
+ },
+ "11580": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 51"
+ },
+ "11581": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 51"
+ },
+ "11582": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 -2.5"
+ },
+ "11583": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 2.5"
+ },
+ "11584": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 21.5"
+ },
+ "11585": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 21.5"
+ },
+ "11586": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 41.5"
+ },
+ "11587": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 41.5"
+ },
+ "11588": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 2 Over 8.5"
+ },
+ "11589": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 2 Under 8.5"
+ },
+ "11590": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 42"
+ },
+ "11591": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 42"
+ },
+ "11592": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 42.5"
+ },
+ "11593": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 42.5"
+ },
+ "11594": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 43"
+ },
+ "11595": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 43"
+ },
+ "11596": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Over 5.5"
+ },
+ "11597": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Under 5.5"
+ },
+ "11598": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 25.5"
+ },
+ "11599": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 25.5"
+ },
+ "11600": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 25"
+ },
+ "11601": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 25"
+ },
+ "11602": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 24"
+ },
+ "11603": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 24"
+ },
+ "11604": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 24.5"
+ },
+ "11605": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 24.5"
+ },
+ "11606": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 23.5"
+ },
+ "11607": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 23.5"
+ },
+ "11608": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 23"
+ },
+ "11609": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 23"
+ },
+ "11610": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 22"
+ },
+ "11611": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 22"
+ },
+ "11612": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 22.5"
+ },
+ "11613": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 22.5"
+ },
+ "11614": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 21.5"
+ },
+ "11615": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 21.5"
+ },
+ "11616": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 20.5"
+ },
+ "11617": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 20.5"
+ },
+ "11618": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 21"
+ },
+ "11619": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 21"
+ },
+ "11620": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 20"
+ },
+ "11621": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 20"
+ },
+ "11622": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 19"
+ },
+ "11623": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 19"
+ },
+ "11624": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 19.5"
+ },
+ "11625": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 19.5"
+ },
+ "11626": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 11.5"
+ },
+ "11627": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 11.5"
+ },
+ "11628": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 18.5"
+ },
+ "11629": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 18.5"
+ },
+ "11630": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 51.5"
+ },
+ "11631": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 51.5"
+ },
+ "11632": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 29.5"
+ },
+ "11633": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 29.5"
+ },
+ "11634": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 28"
+ },
+ "11635": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 28"
+ },
+ "11636": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 45"
+ },
+ "11637": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 45"
+ },
+ "11638": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 29"
+ },
+ "11639": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 29"
+ },
+ "11640": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 27"
+ },
+ "11641": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 27"
+ },
+ "11642": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 27.5"
+ },
+ "11643": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 27.5"
+ },
+ "11644": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 12.5"
+ },
+ "11645": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 12.5"
+ },
+ "11646": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 44.5"
+ },
+ "11647": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 44.5"
+ },
+ "11648": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 26.5"
+ },
+ "11649": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 26.5"
+ },
+ "11650": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 26"
+ },
+ "11651": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 26"
+ },
+ "11652": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 43.5"
+ },
+ "11653": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 43.5"
+ },
+ "11654": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 44"
+ },
+ "11655": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 44"
+ },
+ "11656": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 25"
+ },
+ "11657": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 25"
+ },
+ "11658": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 25.5"
+ },
+ "11659": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 25.5"
+ },
+ "11660": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 42"
+ },
+ "11661": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 42"
+ },
+ "11662": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 42.5"
+ },
+ "11663": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 42.5"
+ },
+ "11664": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 43"
+ },
+ "11665": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 43"
+ },
+ "11666": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 23.5"
+ },
+ "11667": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 23.5"
+ },
+ "11668": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 24"
+ },
+ "11669": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 24"
+ },
+ "11670": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 24.5"
+ },
+ "11671": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 24.5"
+ },
+ "11672": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 11.5"
+ },
+ "11673": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 11.5"
+ },
+ "11674": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 41.5"
+ },
+ "11675": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 41.5"
+ },
+ "11676": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 23"
+ },
+ "11677": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 23"
+ },
+ "11678": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 10.5"
+ },
+ "11679": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 10.5"
+ },
+ "11680": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 9.5"
+ },
+ "11681": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 9.5"
+ },
+ "11682": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 40.5"
+ },
+ "11683": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 40.5"
+ },
+ "11684": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 41"
+ },
+ "11685": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 41"
+ },
+ "11686": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 8.5"
+ },
+ "11687": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 8.5"
+ },
+ "11688": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 22.5"
+ },
+ "11689": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 22.5"
+ },
+ "11690": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 28.5"
+ },
+ "11691": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 28.5"
+ },
+ "11692": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 21.5"
+ },
+ "11693": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 21.5"
+ },
+ "11694": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 22"
+ },
+ "11695": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 22"
+ },
+ "11696": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 39"
+ },
+ "11697": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 39"
+ },
+ "11698": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 21"
+ },
+ "11699": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 21"
+ },
+ "11700": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 12.5"
+ },
+ "11701": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 12.5"
+ },
+ "11702": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 11.5"
+ },
+ "11703": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 11.5"
+ },
+ "11704": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 10.5"
+ },
+ "11705": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 10.5"
+ },
+ "11706": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 30.5"
+ },
+ "11707": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 30.5"
+ },
+ "11708": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 15.5"
+ },
+ "11709": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 15.5"
+ },
+ "11710": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 14.5"
+ },
+ "11711": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 14.5"
+ },
+ "11712": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 29"
+ },
+ "11713": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 29"
+ },
+ "11714": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 29.5"
+ },
+ "11715": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 29.5"
+ },
+ "11716": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 30"
+ },
+ "11717": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 30"
+ },
+ "11718": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 31"
+ },
+ "11719": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 31"
+ },
+ "11720": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 31.5"
+ },
+ "11721": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 31.5"
+ },
+ "11722": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 32"
+ },
+ "11723": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 32"
+ },
+ "11724": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 22.5"
+ },
+ "11725": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 22.5"
+ },
+ "11726": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 73.5"
+ },
+ "11727": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 73.5"
+ },
+ "11728": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -11"
+ },
+ "11729": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 11"
+ },
+ "11730": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 74.5"
+ },
+ "11731": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 74.5"
+ },
+ "11732": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 502,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 131.5"
+ },
+ "11733": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 502,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 131.5"
+ },
+ "11734": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 503,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 132"
+ },
+ "11735": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 503,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 132"
+ },
+ "11736": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 142,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 132.5"
+ },
+ "11737": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 142,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 132.5"
+ },
+ "11738": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -12"
+ },
+ "11739": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 12"
+ },
+ "11740": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -11.5"
+ },
+ "11741": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 11.5"
+ },
+ "11742": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 75.5"
+ },
+ "11743": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 75.5"
+ },
+ "11744": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -13"
+ },
+ "11745": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 13"
+ },
+ "11746": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -12.5"
+ },
+ "11747": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 12.5"
+ },
+ "11748": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 28.5"
+ },
+ "11749": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 28.5"
+ },
+ "11750": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 143,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 133"
+ },
+ "11751": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 143,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 133"
+ },
+ "11752": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -14"
+ },
+ "11753": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 14"
+ },
+ "11754": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -15"
+ },
+ "11755": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 15"
+ },
+ "11756": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -14.5"
+ },
+ "11757": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 14.5"
+ },
+ "11758": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -13.5"
+ },
+ "11759": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 13.5"
+ },
+ "11760": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 144,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 133.5"
+ },
+ "11761": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 144,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 133.5"
+ },
+ "11762": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 145,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 134"
+ },
+ "11763": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 145,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 134"
+ },
+ "11764": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 146,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 134.5"
+ },
+ "11765": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 146,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 134.5"
+ },
+ "11766": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 147,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 135"
+ },
+ "11767": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 147,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 135"
+ },
+ "11768": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 148,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 135.5"
+ },
+ "11769": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 148,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 135.5"
+ },
+ "11770": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 149,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 136"
+ },
+ "11771": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 149,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 136"
+ },
+ "11772": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 365,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 69"
+ },
+ "11773": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 365,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 69"
+ },
+ "11774": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 69.5"
+ },
+ "11775": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 69.5"
+ },
+ "11776": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 369,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 70"
+ },
+ "11777": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 369,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 70"
+ },
+ "11778": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 37.5"
+ },
+ "11779": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 37.5"
+ },
+ "11780": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 150,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 136.5"
+ },
+ "11781": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 150,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 136.5"
+ },
+ "11782": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 70.5"
+ },
+ "11783": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 70.5"
+ },
+ "11784": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 151,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 137"
+ },
+ "11785": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 151,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 137"
+ },
+ "11786": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 53.5"
+ },
+ "11787": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 53.5"
+ },
+ "11788": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 52.5"
+ },
+ "11789": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 52.5"
+ },
+ "11790": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 25.5"
+ },
+ "11791": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 25.5"
+ },
+ "11792": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 53"
+ },
+ "11793": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 53"
+ },
+ "11794": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 54"
+ },
+ "11795": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 54"
+ },
+ "11796": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 152,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 137.5"
+ },
+ "11797": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 152,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 137.5"
+ },
+ "11798": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 153,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 138"
+ },
+ "11799": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 153,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 138"
+ },
+ "11800": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 76.5"
+ },
+ "11801": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 76.5"
+ },
+ "11802": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 371,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 71"
+ },
+ "11803": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 371,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 71"
+ },
+ "11804": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 71.5"
+ },
+ "11805": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 71.5"
+ },
+ "11806": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 373,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 72"
+ },
+ "11807": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 373,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 72"
+ },
+ "11808": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 154,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 138.5"
+ },
+ "11809": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 154,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 138.5"
+ },
+ "11810": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 38.5"
+ },
+ "11811": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 38.5"
+ },
+ "11812": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 72.5"
+ },
+ "11813": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 72.5"
+ },
+ "11814": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 49"
+ },
+ "11815": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 49"
+ },
+ "11816": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 48"
+ },
+ "11817": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 48"
+ },
+ "11818": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 23.5"
+ },
+ "11819": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 23.5"
+ },
+ "11820": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 48.5"
+ },
+ "11821": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 48.5"
+ },
+ "11822": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 49.5"
+ },
+ "11823": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 49.5"
+ },
+ "11824": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 50"
+ },
+ "11825": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 50"
+ },
+ "11826": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 22.5"
+ },
+ "11827": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 22.5"
+ },
+ "11828": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 7"
+ },
+ "11829": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -7"
+ },
+ "11830": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 7.5"
+ },
+ "11831": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -7.5"
+ },
+ "11832": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 8"
+ },
+ "11833": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -8"
+ },
+ "11834": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 16.5"
+ },
+ "11835": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 16.5"
+ },
+ "11836": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 8.5"
+ },
+ "11837": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -8.5"
+ },
+ "11838": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 47.5"
+ },
+ "11839": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 47.5"
+ },
+ "11840": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 24.5"
+ },
+ "11841": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 24.5"
+ },
+ "11842": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 23.5"
+ },
+ "11843": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 23.5"
+ },
+ "11844": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 47"
+ },
+ "11845": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 47"
+ },
+ "11846": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 9"
+ },
+ "11847": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -9"
+ },
+ "11848": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 9.5"
+ },
+ "11849": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -9.5"
+ },
+ "11850": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 10"
+ },
+ "11851": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -10"
+ },
+ "11852": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 10.5"
+ },
+ "11853": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -10.5"
+ },
+ "11854": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Game Team 2 Over 5"
+ },
+ "11855": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Game Team 2 Under 5"
+ },
+ "11856": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 52"
+ },
+ "11857": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 52"
+ },
+ "11858": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -6.5"
+ },
+ "11859": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 6.5"
+ },
+ "11860": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -6"
+ },
+ "11861": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 6"
+ },
+ "11862": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -7"
+ },
+ "11863": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 7"
+ },
+ "11864": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 51.5"
+ },
+ "11865": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 51.5"
+ },
+ "11866": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 24.5"
+ },
+ "11867": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 24.5"
+ },
+ "11868": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 46.5"
+ },
+ "11869": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 46.5"
+ },
+ "11870": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 717,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 256.5"
+ },
+ "11871": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 717,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 256.5"
+ },
+ "11872": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 46"
+ },
+ "11873": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 46"
+ },
+ "11874": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 718,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 258"
+ },
+ "11875": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 718,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 258"
+ },
+ "11876": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 719,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 257"
+ },
+ "11877": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 719,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 257"
+ },
+ "11878": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 720,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 257.5"
+ },
+ "11879": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 720,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 257.5"
+ },
+ "11880": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 721,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 258.5"
+ },
+ "11881": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 721,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 258.5"
+ },
+ "11882": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 722,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 259"
+ },
+ "11883": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 722,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 259"
+ },
+ "11884": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 723,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 259.5"
+ },
+ "11885": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 723,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 259.5"
+ },
+ "11886": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 724,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 260"
+ },
+ "11887": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 724,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 260"
+ },
+ "11888": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 725,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 260.5"
+ },
+ "11889": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 725,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 260.5"
+ },
+ "11890": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 726,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 261"
+ },
+ "11891": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 726,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 261"
+ },
+ "11892": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 727,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 261.5"
+ },
+ "11893": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 727,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 261.5"
+ },
+ "11894": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 728,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 263"
+ },
+ "11895": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 728,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 263"
+ },
+ "11896": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 729,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 262"
+ },
+ "11897": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 729,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 262"
+ },
+ "11898": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 730,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 262.5"
+ },
+ "11899": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 730,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 262.5"
+ },
+ "11900": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 731,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 263.5"
+ },
+ "11901": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 731,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 263.5"
+ },
+ "11902": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 732,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 264"
+ },
+ "11903": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 732,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 264"
+ },
+ "11904": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -7.5"
+ },
+ "11905": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 7.5"
+ },
+ "11906": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 733,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 264.5"
+ },
+ "11907": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 733,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 264.5"
+ },
+ "11908": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -11"
+ },
+ "11909": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 11"
+ },
+ "11910": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -10.5"
+ },
+ "11911": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 10.5"
+ },
+ "11912": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -10"
+ },
+ "11913": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 10"
+ },
+ "11914": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -11.5"
+ },
+ "11915": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 11.5"
+ },
+ "11916": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 8"
+ },
+ "11917": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 8"
+ },
+ "11918": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 734,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 265"
+ },
+ "11919": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 734,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 265"
+ },
+ "11920": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 8.5"
+ },
+ "11921": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 8.5"
+ },
+ "11922": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 9"
+ },
+ "11923": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 9"
+ },
+ "11924": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 735,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 265.5"
+ },
+ "11925": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 735,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 265.5"
+ },
+ "11926": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 736,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 266"
+ },
+ "11927": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 736,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 266"
+ },
+ "11928": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -9.5"
+ },
+ "11929": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 9.5"
+ },
+ "11930": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -9"
+ },
+ "11931": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 9"
+ },
+ "11932": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -8.5"
+ },
+ "11933": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 8.5"
+ },
+ "11934": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -8"
+ },
+ "11935": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 8"
+ },
+ "11936": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 11"
+ },
+ "11937": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -11"
+ },
+ "11938": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 11.5"
+ },
+ "11939": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -11.5"
+ },
+ "11940": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 12"
+ },
+ "11941": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -12"
+ },
+ "11942": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 12.5"
+ },
+ "11943": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -12.5"
+ },
+ "11944": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 13"
+ },
+ "11945": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -13"
+ },
+ "11946": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 9.5"
+ },
+ "11947": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 9.5"
+ },
+ "11948": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 13.5"
+ },
+ "11949": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -13.5"
+ },
+ "11950": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 14"
+ },
+ "11951": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -14"
+ },
+ "11952": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 14.5"
+ },
+ "11953": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -14.5"
+ },
+ "11954": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 15"
+ },
+ "11955": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -15"
+ },
+ "11956": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 15.5"
+ },
+ "11957": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -15.5"
+ },
+ "11958": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 16"
+ },
+ "11959": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -16"
+ },
+ "11960": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 16.5"
+ },
+ "11961": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -16.5"
+ },
+ "11962": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 17"
+ },
+ "11963": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 27,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -17"
+ },
+ "11964": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 17.5"
+ },
+ "11965": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -17.5"
+ },
+ "11966": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 18"
+ },
+ "11967": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 29,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -18"
+ },
+ "11968": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 8.5"
+ },
+ "11969": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 8.5"
+ },
+ "11970": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 18.5"
+ },
+ "11971": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -18.5"
+ },
+ "11972": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 19"
+ },
+ "11973": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 31,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -19"
+ },
+ "11974": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 19.5"
+ },
+ "11975": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -19.5"
+ },
+ "11976": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 20"
+ },
+ "11977": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 38,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -20"
+ },
+ "11978": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 20.5"
+ },
+ "11979": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -20.5"
+ },
+ "11980": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 7.5"
+ },
+ "11981": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 7.5"
+ },
+ "11982": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 21"
+ },
+ "11983": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 40,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -21"
+ },
+ "11984": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 21.5"
+ },
+ "11985": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -21.5"
+ },
+ "11986": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 6.5"
+ },
+ "11987": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 6.5"
+ },
+ "11988": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 22"
+ },
+ "11989": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 430,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -22"
+ },
+ "11990": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 22.5"
+ },
+ "11991": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -22.5"
+ },
+ "11992": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 5.5"
+ },
+ "11993": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 5.5"
+ },
+ "11994": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 23"
+ },
+ "11995": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 427,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -23"
+ },
+ "11996": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 23.5"
+ },
+ "11997": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -23.5"
+ },
+ "11998": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 24"
+ },
+ "11999": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 432,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -24"
+ },
+ "12000": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 24.5"
+ },
+ "12001": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -24.5"
+ },
+ "12002": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 25"
+ },
+ "12003": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 41,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -25"
+ },
+ "12004": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 25.5"
+ },
+ "12005": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 -25.5"
+ },
+ "12006": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 16"
+ },
+ "12007": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 16"
+ },
+ "12008": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 33"
+ },
+ "12009": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 33"
+ },
+ "12010": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 16.5"
+ },
+ "12011": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 16.5"
+ },
+ "12012": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 17"
+ },
+ "12013": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 17"
+ },
+ "12014": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 17.5"
+ },
+ "12015": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 17.5"
+ },
+ "12016": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 18"
+ },
+ "12017": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 18"
+ },
+ "12018": {
+ "selectionId": 35,
+ "marketId": 29,
+ "gamePeriodId": 76,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 544,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match & Total Multiple 1 & Over 219.5"
+ },
+ "12019": {
+ "selectionId": 39,
+ "marketId": 29,
+ "gamePeriodId": 76,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 544,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match & Total Multiple 2 & Over 219.5"
+ },
+ "12020": {
+ "selectionId": 36,
+ "marketId": 29,
+ "gamePeriodId": 76,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 544,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match & Total Multiple 1 & Under 219.5"
+ },
+ "12021": {
+ "selectionId": 40,
+ "marketId": 29,
+ "gamePeriodId": 76,
+ "gameTypeId": 70,
+ "gameVarietyId": 1,
+ "pointsId": 544,
+ "teamPlayerId": None,
+ "_comment": "Game Winner of match & Total Multiple 2 & Under 219.5"
+ },
+ "12022": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -14"
+ },
+ "12023": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 14"
+ },
+ "12024": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -15"
+ },
+ "12025": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 15"
+ },
+ "12026": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -14.5"
+ },
+ "12027": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 14.5"
+ },
+ "12028": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -16"
+ },
+ "12029": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 16"
+ },
+ "12030": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -15.5"
+ },
+ "12031": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 15.5"
+ },
+ "12032": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 27,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -17"
+ },
+ "12033": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 17"
+ },
+ "12034": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -16.5"
+ },
+ "12035": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 16.5"
+ },
+ "12036": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 2.5"
+ },
+ "12037": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -2.5"
+ },
+ "12038": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 45.5"
+ },
+ "12039": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 45.5"
+ },
+ "12040": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Over 23.5"
+ },
+ "12041": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Under 23.5"
+ },
+ "12042": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 24.5"
+ },
+ "12043": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 24.5"
+ },
+ "12044": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Winner of match Point 1"
+ },
+ "12045": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Winner of match Point 2"
+ },
+ "12046": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 2.5"
+ },
+ "12047": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -2.5"
+ },
+ "12048": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 45.5"
+ },
+ "12049": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 45.5"
+ },
+ "12050": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Over 23.5"
+ },
+ "12051": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Under 23.5"
+ },
+ "12052": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Over 24.5"
+ },
+ "12053": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Under 24.5"
+ },
+ "12054": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Winner of match Point 1"
+ },
+ "12055": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Winner of match Point 2"
+ },
+ "12056": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 2.5"
+ },
+ "12057": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -2.5"
+ },
+ "12058": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 45.5"
+ },
+ "12059": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 45.5"
+ },
+ "12060": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Over 24.5"
+ },
+ "12061": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Under 24.5"
+ },
+ "12062": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Over 24.5"
+ },
+ "12063": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Under 24.5"
+ },
+ "12064": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "4th Set Winner of match Point 1"
+ },
+ "12065": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "4th Set Winner of match Point 2"
+ },
+ "12066": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Map Team 1 H1 1.5"
+ },
+ "12067": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Map Team 2 H2 -1.5"
+ },
+ "12068": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 61.5"
+ },
+ "12069": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 61.5"
+ },
+ "12070": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 30.5"
+ },
+ "12071": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 30.5"
+ },
+ "12072": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 58.5"
+ },
+ "12073": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 58.5"
+ },
+ "12074": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 26.5"
+ },
+ "12075": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 26.5"
+ },
+ "12076": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 31.5"
+ },
+ "12077": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 31.5"
+ },
+ "12078": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 60"
+ },
+ "12079": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 60"
+ },
+ "12080": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 28.5"
+ },
+ "12081": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 28.5"
+ },
+ "12082": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 27.5"
+ },
+ "12083": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 27.5"
+ },
+ "12084": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 42.5"
+ },
+ "12085": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 42.5"
+ },
+ "12086": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Over 24.5"
+ },
+ "12087": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Under 24.5"
+ },
+ "12088": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 17.5"
+ },
+ "12089": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 17.5"
+ },
+ "12090": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -7.5"
+ },
+ "12091": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 7.5"
+ },
+ "12092": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 25.5"
+ },
+ "12093": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 25.5"
+ },
+ "12094": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -7"
+ },
+ "12095": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 7"
+ },
+ "12096": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 43"
+ },
+ "12097": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 43"
+ },
+ "12098": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -6"
+ },
+ "12099": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 6"
+ },
+ "12100": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 43.5"
+ },
+ "12101": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 43.5"
+ },
+ "12102": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 19.5"
+ },
+ "12103": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 19.5"
+ },
+ "12104": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -5"
+ },
+ "12105": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 5"
+ },
+ "12106": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 44.5"
+ },
+ "12107": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 44.5"
+ },
+ "12108": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 20.5"
+ },
+ "12109": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 20.5"
+ },
+ "12110": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -3.5"
+ },
+ "12111": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 3.5"
+ },
+ "12112": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 45"
+ },
+ "12113": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 45"
+ },
+ "12114": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 21.5"
+ },
+ "12115": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 21.5"
+ },
+ "12116": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -2.5"
+ },
+ "12117": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 2.5"
+ },
+ "12118": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 22.5"
+ },
+ "12119": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 22.5"
+ },
+ "12120": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -3"
+ },
+ "12121": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 3"
+ },
+ "12122": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -4"
+ },
+ "12123": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 4"
+ },
+ "12124": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -4.5"
+ },
+ "12125": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 4.5"
+ },
+ "12126": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 21.5"
+ },
+ "12127": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -21.5"
+ },
+ "12128": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Map Team 1 H1 1.5"
+ },
+ "12129": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Map Team 2 H2 -1.5"
+ },
+ "12130": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 25.5"
+ },
+ "12131": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -25.5"
+ },
+ "12132": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Map Team 1 H1 1.5"
+ },
+ "12133": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Map Team 2 H2 -1.5"
+ },
+ "12134": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 62"
+ },
+ "12135": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 62"
+ },
+ "12136": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 31"
+ },
+ "12137": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 31"
+ },
+ "12138": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 44"
+ },
+ "12139": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 44"
+ },
+ "12140": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -5.5"
+ },
+ "12141": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 5.5"
+ },
+ "12142": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -6.5"
+ },
+ "12143": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 6.5"
+ },
+ "12144": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 18.5"
+ },
+ "12145": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 18.5"
+ },
+ "12146": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 23.5"
+ },
+ "12147": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 23.5"
+ },
+ "12148": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -8"
+ },
+ "12149": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 8"
+ },
+ "12150": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 42"
+ },
+ "12151": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 42"
+ },
+ "12152": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -8.5"
+ },
+ "12153": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 8.5"
+ },
+ "12154": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 41.5"
+ },
+ "12155": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 41.5"
+ },
+ "12156": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 16.5"
+ },
+ "12157": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 16.5"
+ },
+ "12158": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 46"
+ },
+ "12159": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 46"
+ },
+ "12160": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Over 22.5"
+ },
+ "12161": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Under 22.5"
+ },
+ "12162": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 4"
+ },
+ "12163": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -4"
+ },
+ "12164": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Over 21.5"
+ },
+ "12165": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Under 21.5"
+ },
+ "12166": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Over 20.5"
+ },
+ "12167": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Under 20.5"
+ },
+ "12168": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 3.5"
+ },
+ "12169": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -3.5"
+ },
+ "12170": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 5"
+ },
+ "12171": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -5"
+ },
+ "12172": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Over 19.5"
+ },
+ "12173": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Under 19.5"
+ },
+ "12174": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 1.5"
+ },
+ "12175": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -1.5"
+ },
+ "12176": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 11.5"
+ },
+ "12177": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -11.5"
+ },
+ "12178": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 5.5"
+ },
+ "12179": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -5.5"
+ },
+ "12180": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 4.5"
+ },
+ "12181": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -4.5"
+ },
+ "12182": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 9.5"
+ },
+ "12183": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 9.5"
+ },
+ "12184": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 10"
+ },
+ "12185": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 10"
+ },
+ "12186": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 2.5"
+ },
+ "12187": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -2.5"
+ },
+ "12188": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 10.5"
+ },
+ "12189": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 10.5"
+ },
+ "12190": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 46.5"
+ },
+ "12191": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 46.5"
+ },
+ "12192": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -9"
+ },
+ "12193": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 9"
+ },
+ "12194": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 41"
+ },
+ "12195": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 41"
+ },
+ "12196": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 15.5"
+ },
+ "12197": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 15.5"
+ },
+ "12198": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -10"
+ },
+ "12199": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 10"
+ },
+ "12200": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 40"
+ },
+ "12201": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 40"
+ },
+ "12202": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -10.5"
+ },
+ "12203": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 10.5"
+ },
+ "12204": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 39.5"
+ },
+ "12205": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 39.5"
+ },
+ "12206": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 14.5"
+ },
+ "12207": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 14.5"
+ },
+ "12208": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 47"
+ },
+ "12209": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 47"
+ },
+ "12210": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -11"
+ },
+ "12211": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 11"
+ },
+ "12212": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 39"
+ },
+ "12213": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 39"
+ },
+ "12214": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 13.5"
+ },
+ "12215": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 13.5"
+ },
+ "12216": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 62.5"
+ },
+ "12217": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 62.5"
+ },
+ "12218": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -7.5"
+ },
+ "12219": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 7.5"
+ },
+ "12220": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 42.5"
+ },
+ "12221": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 42.5"
+ },
+ "12222": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Over 24.5"
+ },
+ "12223": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Under 24.5"
+ },
+ "12224": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Over 17.5"
+ },
+ "12225": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Under 17.5"
+ },
+ "12226": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 32"
+ },
+ "12227": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 32"
+ },
+ "12228": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 63"
+ },
+ "12229": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 63"
+ },
+ "12230": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 63.5"
+ },
+ "12231": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 63.5"
+ },
+ "12232": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 47.5"
+ },
+ "12233": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 47.5"
+ },
+ "12234": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 59.5"
+ },
+ "12235": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 343,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 59.5"
+ },
+ "12236": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 30"
+ },
+ "12237": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 30"
+ },
+ "12238": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 25.5"
+ },
+ "12239": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 25.5"
+ },
+ "12240": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 3"
+ },
+ "12241": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -3"
+ },
+ "12242": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -6.5"
+ },
+ "12243": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 6.5"
+ },
+ "12244": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 43.5"
+ },
+ "12245": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 43.5"
+ },
+ "12246": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Over 18.5"
+ },
+ "12247": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Under 18.5"
+ },
+ "12248": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -7"
+ },
+ "12249": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 7"
+ },
+ "12250": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 43"
+ },
+ "12251": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 43"
+ },
+ "12252": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -8"
+ },
+ "12253": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 8"
+ },
+ "12254": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 42"
+ },
+ "12255": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 42"
+ },
+ "12256": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -8.5"
+ },
+ "12257": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 8.5"
+ },
+ "12258": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 41.5"
+ },
+ "12259": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 41.5"
+ },
+ "12260": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Over 16.5"
+ },
+ "12261": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Under 16.5"
+ },
+ "12262": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -9.5"
+ },
+ "12263": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 9.5"
+ },
+ "12264": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 40.5"
+ },
+ "12265": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 40.5"
+ },
+ "12266": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Over 15.5"
+ },
+ "12267": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Under 15.5"
+ },
+ "12268": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -9"
+ },
+ "12269": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 9"
+ },
+ "12270": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 41"
+ },
+ "12271": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 41"
+ },
+ "12272": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Over 22.5"
+ },
+ "12273": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Under 22.5"
+ },
+ "12274": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -5.5"
+ },
+ "12275": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 5.5"
+ },
+ "12276": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 44"
+ },
+ "12277": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 44"
+ },
+ "12278": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Over 19.5"
+ },
+ "12279": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Under 19.5"
+ },
+ "12280": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -6"
+ },
+ "12281": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 6"
+ },
+ "12282": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 44.5"
+ },
+ "12283": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 44.5"
+ },
+ "12284": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -4"
+ },
+ "12285": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 4"
+ },
+ "12286": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 45"
+ },
+ "12287": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 45"
+ },
+ "12288": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Over 20.5"
+ },
+ "12289": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Under 20.5"
+ },
+ "12290": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -4.5"
+ },
+ "12291": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 4.5"
+ },
+ "12292": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -5"
+ },
+ "12293": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 5"
+ },
+ "12294": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 3"
+ },
+ "12295": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -3"
+ },
+ "12296": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 4"
+ },
+ "12297": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -4"
+ },
+ "12298": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Over 20.5"
+ },
+ "12299": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Under 20.5"
+ },
+ "12300": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 3.5"
+ },
+ "12301": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -3.5"
+ },
+ "12302": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Over 21.5"
+ },
+ "12303": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Under 21.5"
+ },
+ "12304": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 46"
+ },
+ "12305": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 46"
+ },
+ "12306": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 4.5"
+ },
+ "12307": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -4.5"
+ },
+ "12308": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 5.5"
+ },
+ "12309": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -5.5"
+ },
+ "12310": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Over 19.5"
+ },
+ "12311": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Under 19.5"
+ },
+ "12312": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 6.5"
+ },
+ "12313": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -6.5"
+ },
+ "12314": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Over 18.5"
+ },
+ "12315": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Under 18.5"
+ },
+ "12316": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -10.5"
+ },
+ "12317": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 10.5"
+ },
+ "12318": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 39.5"
+ },
+ "12319": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 39.5"
+ },
+ "12320": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Over 14.5"
+ },
+ "12321": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Under 14.5"
+ },
+ "12322": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 6"
+ },
+ "12323": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -6"
+ },
+ "12324": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -11"
+ },
+ "12325": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 11"
+ },
+ "12326": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 39"
+ },
+ "12327": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 39"
+ },
+ "12328": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Over 13.5"
+ },
+ "12329": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Under 13.5"
+ },
+ "12330": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 7"
+ },
+ "12331": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -7"
+ },
+ "12332": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Over 17.5"
+ },
+ "12333": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Under 17.5"
+ },
+ "12334": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -12"
+ },
+ "12335": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 12"
+ },
+ "12336": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 38"
+ },
+ "12337": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 38"
+ },
+ "12338": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -13"
+ },
+ "12339": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 13"
+ },
+ "12340": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -12.5"
+ },
+ "12341": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 12.5"
+ },
+ "12342": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -12"
+ },
+ "12343": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 12"
+ },
+ "12344": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -10"
+ },
+ "12345": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 10"
+ },
+ "12346": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 40"
+ },
+ "12347": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 40"
+ },
+ "12348": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 7.5"
+ },
+ "12349": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -7.5"
+ },
+ "12350": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -14"
+ },
+ "12351": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 14"
+ },
+ "12352": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -13.5"
+ },
+ "12353": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 13.5"
+ },
+ "12354": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -14.5"
+ },
+ "12355": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 14.5"
+ },
+ "12356": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -11.5"
+ },
+ "12357": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 11.5"
+ },
+ "12358": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 38.5"
+ },
+ "12359": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 38.5"
+ },
+ "12360": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 5"
+ },
+ "12361": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -5"
+ },
+ "12362": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Over 25.5"
+ },
+ "12363": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Under 25.5"
+ },
+ "12364": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 46.5"
+ },
+ "12365": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 46.5"
+ },
+ "12366": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 47"
+ },
+ "12367": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 47"
+ },
+ "12368": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 47.5"
+ },
+ "12369": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 47.5"
+ },
+ "12370": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 48"
+ },
+ "12371": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 48"
+ },
+ "12372": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 18.5"
+ },
+ "12373": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 18.5"
+ },
+ "12374": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 19"
+ },
+ "12375": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 19"
+ },
+ "12376": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 19.5"
+ },
+ "12377": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 19.5"
+ },
+ "12378": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -2.5"
+ },
+ "12379": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 2.5"
+ },
+ "12380": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Over 22.5"
+ },
+ "12381": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Under 22.5"
+ },
+ "12382": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Over 23.5"
+ },
+ "12383": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Under 23.5"
+ },
+ "12384": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 3"
+ },
+ "12385": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -3"
+ },
+ "12386": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 46"
+ },
+ "12387": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 46"
+ },
+ "12388": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -2.5"
+ },
+ "12389": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 2.5"
+ },
+ "12390": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Over 23.5"
+ },
+ "12391": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Under 23.5"
+ },
+ "12392": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Over 23.5"
+ },
+ "12393": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Under 23.5"
+ },
+ "12394": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 46.5"
+ },
+ "12395": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 46.5"
+ },
+ "12396": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 47"
+ },
+ "12397": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 314,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 47"
+ },
+ "12398": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 45"
+ },
+ "12399": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 45"
+ },
+ "12400": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 43.5"
+ },
+ "12401": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 43.5"
+ },
+ "12402": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 44"
+ },
+ "12403": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 44"
+ },
+ "12404": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 44.5"
+ },
+ "12405": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 44.5"
+ },
+ "12406": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 45.5"
+ },
+ "12407": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 45.5"
+ },
+ "12408": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 25.5"
+ },
+ "12409": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 25.5"
+ },
+ "12410": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 48"
+ },
+ "12411": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 48"
+ },
+ "12412": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 48.5"
+ },
+ "12413": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 48.5"
+ },
+ "12414": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Over 25.5"
+ },
+ "12415": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Under 25.5"
+ },
+ "12416": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 50"
+ },
+ "12417": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 50"
+ },
+ "12418": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Over 25.5"
+ },
+ "12419": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Under 25.5"
+ },
+ "12420": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Over 13.5"
+ },
+ "12421": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Under 13.5"
+ },
+ "12422": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 13.5"
+ },
+ "12423": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -13.5"
+ },
+ "12424": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -15.5"
+ },
+ "12425": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 15.5"
+ },
+ "12426": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Over 14.5"
+ },
+ "12427": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Under 14.5"
+ },
+ "12428": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 27"
+ },
+ "12429": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 27"
+ },
+ "12430": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -2.5"
+ },
+ "12431": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 2.5"
+ },
+ "12432": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 27.5"
+ },
+ "12433": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 27.5"
+ },
+ "12434": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Over 13.5"
+ },
+ "12435": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Under 13.5"
+ },
+ "12436": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -3"
+ },
+ "12437": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 3"
+ },
+ "12438": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Over 12.5"
+ },
+ "12439": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Under 12.5"
+ },
+ "12440": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -4"
+ },
+ "12441": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 4"
+ },
+ "12442": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Over 10.5"
+ },
+ "12443": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Under 10.5"
+ },
+ "12444": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -5.5"
+ },
+ "12445": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 5.5"
+ },
+ "12446": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Over 9.5"
+ },
+ "12447": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Under 9.5"
+ },
+ "12448": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -6.5"
+ },
+ "12449": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 6.5"
+ },
+ "12450": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Over 8.5"
+ },
+ "12451": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Under 8.5"
+ },
+ "12452": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -6"
+ },
+ "12453": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 6"
+ },
+ "12454": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -7.5"
+ },
+ "12455": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 7.5"
+ },
+ "12456": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Over 7.5"
+ },
+ "12457": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Under 7.5"
+ },
+ "12458": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 13.5"
+ },
+ "12459": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 13.5"
+ },
+ "12460": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Over 25.5"
+ },
+ "12461": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Under 25.5"
+ },
+ "12462": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 11.5"
+ },
+ "12463": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 11.5"
+ },
+ "12464": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 48.5"
+ },
+ "12465": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 48.5"
+ },
+ "12466": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 50"
+ },
+ "12467": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 50"
+ },
+ "12468": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 12.5"
+ },
+ "12469": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 12.5"
+ },
+ "12470": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 45"
+ },
+ "12471": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 310,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 45"
+ },
+ "12472": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 32.5"
+ },
+ "12473": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 32.5"
+ },
+ "12474": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 13.5"
+ },
+ "12475": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 13.5"
+ },
+ "12476": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 15.5"
+ },
+ "12477": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 15.5"
+ },
+ "12478": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Over 22.5"
+ },
+ "12479": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Under 22.5"
+ },
+ "12480": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Over 21.5"
+ },
+ "12481": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Under 21.5"
+ },
+ "12482": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 4"
+ },
+ "12483": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -4"
+ },
+ "12484": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Over 20.5"
+ },
+ "12485": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Under 20.5"
+ },
+ "12486": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 3.5"
+ },
+ "12487": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -3.5"
+ },
+ "12488": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -3.5"
+ },
+ "12489": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 3.5"
+ },
+ "12490": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Over 21.5"
+ },
+ "12491": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Under 21.5"
+ },
+ "12492": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 5"
+ },
+ "12493": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -5"
+ },
+ "12494": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 44.5"
+ },
+ "12495": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 44.5"
+ },
+ "12496": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -3"
+ },
+ "12497": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 3"
+ },
+ "12498": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 4.5"
+ },
+ "12499": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -4.5"
+ },
+ "12500": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 14.5"
+ },
+ "12501": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 14.5"
+ },
+ "12502": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 11.5"
+ },
+ "12503": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 11.5"
+ },
+ "12504": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 10.5"
+ },
+ "12505": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 10.5"
+ },
+ "12506": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 28"
+ },
+ "12507": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 28"
+ },
+ "12508": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 5.5"
+ },
+ "12509": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -5.5"
+ },
+ "12510": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Over 19.5"
+ },
+ "12511": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Under 19.5"
+ },
+ "12512": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 9.5"
+ },
+ "12513": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 9.5"
+ },
+ "12514": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 27.5"
+ },
+ "12515": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 27.5"
+ },
+ "12516": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 27"
+ },
+ "12517": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 27"
+ },
+ "12518": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 26.5"
+ },
+ "12519": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 26.5"
+ },
+ "12520": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 15"
+ },
+ "12521": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -15"
+ },
+ "12522": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 8.5"
+ },
+ "12523": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 8.5"
+ },
+ "12524": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Over 25.5"
+ },
+ "12525": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Under 25.5"
+ },
+ "12526": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 47.5"
+ },
+ "12527": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 47.5"
+ },
+ "12528": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Over 22.5"
+ },
+ "12529": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Under 22.5"
+ },
+ "12530": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 48"
+ },
+ "12531": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 48"
+ },
+ "12532": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -3.5"
+ },
+ "12533": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 3.5"
+ },
+ "12534": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Over 21.5"
+ },
+ "12535": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Under 21.5"
+ },
+ "12536": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 14"
+ },
+ "12537": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -14"
+ },
+ "12538": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 14.5"
+ },
+ "12539": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -14.5"
+ },
+ "12540": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 60.5"
+ },
+ "12541": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 348,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 60.5"
+ },
+ "12542": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 29"
+ },
+ "12543": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 29"
+ },
+ "12544": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 0.5"
+ },
+ "12545": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 0.5"
+ },
+ "12546": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "3rd Period Total Goal Over 3"
+ },
+ "12547": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 759,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "3rd Period Total Goal Under 3"
+ },
+ "12548": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 25.5"
+ },
+ "12549": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 25.5"
+ },
+ "12550": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 26"
+ },
+ "12551": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 26"
+ },
+ "12552": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 25"
+ },
+ "12553": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 25"
+ },
+ "12554": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 10.5"
+ },
+ "12555": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 10.5"
+ },
+ "12556": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 24.5"
+ },
+ "12557": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 24.5"
+ },
+ "12558": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 0"
+ },
+ "12559": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 0"
+ },
+ "12560": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -15.5"
+ },
+ "12561": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 15.5"
+ },
+ "12562": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -15"
+ },
+ "12563": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 15"
+ },
+ "12564": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -16.5"
+ },
+ "12565": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 16.5"
+ },
+ "12566": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -16"
+ },
+ "12567": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 16"
+ },
+ "12568": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 20.5"
+ },
+ "12569": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 20.5"
+ },
+ "12570": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 20"
+ },
+ "12571": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 20"
+ },
+ "12572": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 27"
+ },
+ "12573": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 27"
+ },
+ "12574": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 32.5"
+ },
+ "12575": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 32.5"
+ },
+ "12576": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 6"
+ },
+ "12577": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -6"
+ },
+ "12578": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Over 18.5"
+ },
+ "12579": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Under 18.5"
+ },
+ "12580": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 7"
+ },
+ "12581": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -7"
+ },
+ "12582": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Over 17.5"
+ },
+ "12583": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Under 17.5"
+ },
+ "12584": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 8"
+ },
+ "12585": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -8"
+ },
+ "12586": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -17.5"
+ },
+ "12587": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 17.5"
+ },
+ "12588": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 7.5"
+ },
+ "12589": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -7.5"
+ },
+ "12590": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 31,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -19"
+ },
+ "12591": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 19"
+ },
+ "12592": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -18.5"
+ },
+ "12593": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 18.5"
+ },
+ "12594": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 29,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -18"
+ },
+ "12595": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 18"
+ },
+ "12596": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 9"
+ },
+ "12597": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -9"
+ },
+ "12598": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Over 16.5"
+ },
+ "12599": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Under 16.5"
+ },
+ "12600": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -20.5"
+ },
+ "12601": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 20.5"
+ },
+ "12602": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 38,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -20"
+ },
+ "12603": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 20"
+ },
+ "12604": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -19.5"
+ },
+ "12605": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 19.5"
+ },
+ "12606": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 8.5"
+ },
+ "12607": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -8.5"
+ },
+ "12608": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 40,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -21"
+ },
+ "12609": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 21"
+ },
+ "12610": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 9.5"
+ },
+ "12611": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -9.5"
+ },
+ "12612": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 40.5"
+ },
+ "12613": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 40.5"
+ },
+ "12614": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Over 15.5"
+ },
+ "12615": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Under 15.5"
+ },
+ "12616": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 6.5"
+ },
+ "12617": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -6.5"
+ },
+ "12618": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 54,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -30"
+ },
+ "12619": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 30"
+ },
+ "12620": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 56,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -31"
+ },
+ "12621": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 31"
+ },
+ "12622": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 58,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -32"
+ },
+ "12623": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 32"
+ },
+ "12624": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 60,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -33"
+ },
+ "12625": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 33"
+ },
+ "12626": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 477,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -34"
+ },
+ "12627": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 34"
+ },
+ "12628": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -6.5"
+ },
+ "12629": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 6.5"
+ },
+ "12630": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -10.5"
+ },
+ "12631": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 10.5"
+ },
+ "12632": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -9.5"
+ },
+ "12633": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 9.5"
+ },
+ "12634": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -8.5"
+ },
+ "12635": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 8.5"
+ },
+ "12636": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -7.5"
+ },
+ "12637": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 7.5"
+ },
+ "12638": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -5.5"
+ },
+ "12639": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 5.5"
+ },
+ "12640": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -4.5"
+ },
+ "12641": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 4.5"
+ },
+ "12642": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -3.5"
+ },
+ "12643": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 3.5"
+ },
+ "12644": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -2.5"
+ },
+ "12645": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 2.5"
+ },
+ "12646": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Map Team 1 H1 -1.5"
+ },
+ "12647": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Map Team 2 H2 1.5"
+ },
+ "12648": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Map Team 1 H1 -1.5"
+ },
+ "12649": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Map Team 2 H2 1.5"
+ },
+ "12650": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -15.5"
+ },
+ "12651": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 15.5"
+ },
+ "12652": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Map Team 1 H1 -1.5"
+ },
+ "12653": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Map Team 2 H2 1.5"
+ },
+ "12654": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 373,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 72"
+ },
+ "12655": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 373,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 72"
+ },
+ "12656": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 72.5"
+ },
+ "12657": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 72.5"
+ },
+ "12658": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 360,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 66.5"
+ },
+ "12659": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 38.5"
+ },
+ "12660": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 38.5"
+ },
+ "12661": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 36.5"
+ },
+ "12662": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 36.5"
+ },
+ "12663": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -2"
+ },
+ "12664": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 2"
+ },
+ "12665": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -1"
+ },
+ "12666": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 1"
+ },
+ "12667": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 26.5"
+ },
+ "12668": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 26.5"
+ },
+ "12669": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 30.5"
+ },
+ "12670": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 30.5"
+ },
+ "12671": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 31.5"
+ },
+ "12672": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 31.5"
+ },
+ "12673": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 61.5"
+ },
+ "12674": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 350,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 61.5"
+ },
+ "12675": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 62"
+ },
+ "12676": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 62"
+ },
+ "12677": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 62.5"
+ },
+ "12678": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 352,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 62.5"
+ },
+ "12679": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 9.5"
+ },
+ "12680": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 9.5"
+ },
+ "12681": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 8.5"
+ },
+ "12682": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 8.5"
+ },
+ "12683": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 28"
+ },
+ "12684": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 28"
+ },
+ "12685": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 73.5"
+ },
+ "12686": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 73.5"
+ },
+ "12687": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 377,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 74"
+ },
+ "12688": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 377,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 74"
+ },
+ "12689": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 74.5"
+ },
+ "12690": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 74.5"
+ },
+ "12691": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 737,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 266.5"
+ },
+ "12692": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 737,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 266.5"
+ },
+ "12693": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 75.5"
+ },
+ "12694": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 75.5"
+ },
+ "12695": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 379,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 75"
+ },
+ "12696": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 379,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 75"
+ },
+ "12697": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 381,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 76"
+ },
+ "12698": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 381,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 76"
+ },
+ "12699": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 76.5"
+ },
+ "12700": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 76.5"
+ },
+ "12701": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 41.5"
+ },
+ "12702": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 41.5"
+ },
+ "12703": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 738,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 267"
+ },
+ "12704": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 738,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 267"
+ },
+ "12705": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 383,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 77"
+ },
+ "12706": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 383,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 77"
+ },
+ "12707": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 739,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 267.5"
+ },
+ "12708": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 739,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 267.5"
+ },
+ "12709": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 77.5"
+ },
+ "12710": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 77.5"
+ },
+ "12711": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 38.5"
+ },
+ "12712": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 38.5"
+ },
+ "12713": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 740,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 268"
+ },
+ "12714": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 740,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 268"
+ },
+ "12715": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 385,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 78"
+ },
+ "12716": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 385,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 78"
+ },
+ "12717": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 78.5"
+ },
+ "12718": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 78.5"
+ },
+ "12719": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 42.5"
+ },
+ "12720": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 42.5"
+ },
+ "12721": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 741,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 268.5"
+ },
+ "12722": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 741,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 268.5"
+ },
+ "12723": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 387,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 79"
+ },
+ "12724": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 387,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 79"
+ },
+ "12725": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 79.5"
+ },
+ "12726": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 79.5"
+ },
+ "12727": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 43.5"
+ },
+ "12728": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 43.5"
+ },
+ "12729": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 44.5"
+ },
+ "12730": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 44.5"
+ },
+ "12731": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 39.5"
+ },
+ "12732": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 39.5"
+ },
+ "12733": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 742,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 269"
+ },
+ "12734": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 742,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 269"
+ },
+ "12735": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 743,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 269.5"
+ },
+ "12736": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 743,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 269.5"
+ },
+ "12737": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 391,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 80"
+ },
+ "12738": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 391,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 80"
+ },
+ "12739": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 744,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 270"
+ },
+ "12740": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 744,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 270"
+ },
+ "12741": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 745,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 270.5"
+ },
+ "12742": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 745,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 270.5"
+ },
+ "12743": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 746,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 271"
+ },
+ "12744": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 746,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 271"
+ },
+ "12745": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 80.5"
+ },
+ "12746": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 80.5"
+ },
+ "12747": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 393,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 81"
+ },
+ "12748": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 393,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 81"
+ },
+ "12749": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 81.5"
+ },
+ "12750": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 81.5"
+ },
+ "12751": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 45.5"
+ },
+ "12752": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 45.5"
+ },
+ "12753": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 -4.5"
+ },
+ "12754": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 4.5"
+ },
+ "12755": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 4.5"
+ },
+ "12756": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 4.5"
+ },
+ "12757": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 5.5"
+ },
+ "12758": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 5.5"
+ },
+ "12759": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 33.5"
+ },
+ "12760": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 33.5"
+ },
+ "12761": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 8"
+ },
+ "12762": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -8"
+ },
+ "12763": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 12.5"
+ },
+ "12764": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 12.5"
+ },
+ "12765": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 15.5"
+ },
+ "12766": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -15.5"
+ },
+ "12767": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 16"
+ },
+ "12768": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -16"
+ },
+ "12769": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 16.5"
+ },
+ "12770": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -16.5"
+ },
+ "12771": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 17"
+ },
+ "12772": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 27,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -17"
+ },
+ "12773": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 17.5"
+ },
+ "12774": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -17.5"
+ },
+ "12775": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 18"
+ },
+ "12776": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 29,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -18"
+ },
+ "12777": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 18.5"
+ },
+ "12778": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -18.5"
+ },
+ "12779": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 19"
+ },
+ "12780": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 31,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -19"
+ },
+ "12781": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Over 0.5"
+ },
+ "12782": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Under 0.5"
+ },
+ "12783": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 28"
+ },
+ "12784": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 28"
+ },
+ "12785": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 28.5"
+ },
+ "12786": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 28.5"
+ },
+ "12787": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 30"
+ },
+ "12788": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 30"
+ },
+ "12789": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -16.5"
+ },
+ "12790": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 16.5"
+ },
+ "12791": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 3.5"
+ },
+ "12792": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 -3.5"
+ },
+ "12793": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 4.5"
+ },
+ "12794": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 -4.5"
+ },
+ "12795": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 1 Over 4.5"
+ },
+ "12796": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 1 Under 4.5"
+ },
+ "12797": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 2 Over 7.5"
+ },
+ "12798": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 2 Under 7.5"
+ },
+ "12799": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 2 Over 8.5"
+ },
+ "12800": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 2 Under 8.5"
+ },
+ "12801": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 1 Over 3.5"
+ },
+ "12802": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 1 Under 3.5"
+ },
+ "12803": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 1 Over 2.5"
+ },
+ "12804": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 1 Under 2.5"
+ },
+ "12805": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 2 Over 9.5"
+ },
+ "12806": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 2 Under 9.5"
+ },
+ "12807": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 6.5"
+ },
+ "12808": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 -6.5"
+ },
+ "12809": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 5.5"
+ },
+ "12810": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 -5.5"
+ },
+ "12811": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 8.5"
+ },
+ "12812": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 -8.5"
+ },
+ "12813": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -11"
+ },
+ "12814": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 11"
+ },
+ "12815": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 39"
+ },
+ "12816": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 39"
+ },
+ "12817": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 13.5"
+ },
+ "12818": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 13.5"
+ },
+ "12819": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Over 5.5"
+ },
+ "12820": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Under 5.5"
+ },
+ "12821": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 50"
+ },
+ "12822": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 50"
+ },
+ "12823": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 49.5"
+ },
+ "12824": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 49.5"
+ },
+ "12825": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 50.5"
+ },
+ "12826": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 50.5"
+ },
+ "12827": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Over 4.5"
+ },
+ "12828": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Under 4.5"
+ },
+ "12829": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 8"
+ },
+ "12830": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -8"
+ },
+ "12831": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 8.5"
+ },
+ "12832": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -8.5"
+ },
+ "12833": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Over 16.5"
+ },
+ "12834": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Under 16.5"
+ },
+ "12835": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 9"
+ },
+ "12836": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -9"
+ },
+ "12837": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 9.5"
+ },
+ "12838": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -9.5"
+ },
+ "12839": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Over 15.5"
+ },
+ "12840": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Under 15.5"
+ },
+ "12841": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -3"
+ },
+ "12842": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 3"
+ },
+ "12843": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 10"
+ },
+ "12844": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -10"
+ },
+ "12845": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 10.5"
+ },
+ "12846": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -10.5"
+ },
+ "12847": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 11"
+ },
+ "12848": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -11"
+ },
+ "12849": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Over 14.5"
+ },
+ "12850": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Under 14.5"
+ },
+ "12851": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 44"
+ },
+ "12852": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 44"
+ },
+ "12853": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 6"
+ },
+ "12854": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -6"
+ },
+ "12855": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 6.5"
+ },
+ "12856": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -6.5"
+ },
+ "12857": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 43.5"
+ },
+ "12858": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 43.5"
+ },
+ "12859": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 7"
+ },
+ "12860": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -7"
+ },
+ "12861": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 43"
+ },
+ "12862": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 43"
+ },
+ "12863": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 42.5"
+ },
+ "12864": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 42.5"
+ },
+ "12865": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Over 18.5"
+ },
+ "12866": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Under 18.5"
+ },
+ "12867": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 7.5"
+ },
+ "12868": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -7.5"
+ },
+ "12869": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Over 17.5"
+ },
+ "12870": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Under 17.5"
+ },
+ "12871": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -4"
+ },
+ "12872": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 4"
+ },
+ "12873": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 8"
+ },
+ "12874": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -8"
+ },
+ "12875": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 8.5"
+ },
+ "12876": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -8.5"
+ },
+ "12877": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 42"
+ },
+ "12878": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 42"
+ },
+ "12879": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 41.5"
+ },
+ "12880": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 41.5"
+ },
+ "12881": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Over 16.5"
+ },
+ "12882": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Under 16.5"
+ },
+ "12883": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -4.5"
+ },
+ "12884": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 4.5"
+ },
+ "12885": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 9"
+ },
+ "12886": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -9"
+ },
+ "12887": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 9.5"
+ },
+ "12888": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -9.5"
+ },
+ "12889": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 41"
+ },
+ "12890": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 41"
+ },
+ "12891": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 40.5"
+ },
+ "12892": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 40.5"
+ },
+ "12893": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Over 15.5"
+ },
+ "12894": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Under 15.5"
+ },
+ "12895": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 64"
+ },
+ "12896": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 64"
+ },
+ "12897": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 29"
+ },
+ "12898": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 29"
+ },
+ "12899": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 32"
+ },
+ "12900": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 32"
+ },
+ "12901": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 3"
+ },
+ "12902": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 3"
+ },
+ "12903": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -10"
+ },
+ "12904": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 10"
+ },
+ "12905": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 14"
+ },
+ "12906": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 14"
+ },
+ "12907": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 28"
+ },
+ "12908": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 28"
+ },
+ "12909": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 27"
+ },
+ "12910": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 27"
+ },
+ "12911": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 31"
+ },
+ "12912": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 31"
+ },
+ "12913": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 55"
+ },
+ "12914": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 55"
+ },
+ "12915": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 60"
+ },
+ "12916": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 60"
+ },
+ "12917": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 30"
+ },
+ "12918": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 30"
+ },
+ "12919": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 59"
+ },
+ "12920": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 59"
+ },
+ "12921": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 15"
+ },
+ "12922": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -15"
+ },
+ "12923": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 15.5"
+ },
+ "12924": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -15.5"
+ },
+ "12925": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 16"
+ },
+ "12926": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -16"
+ },
+ "12927": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 16.5"
+ },
+ "12928": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -16.5"
+ },
+ "12929": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 17"
+ },
+ "12930": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 27,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -17"
+ },
+ "12931": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 17.5"
+ },
+ "12932": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -17.5"
+ },
+ "12933": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 18"
+ },
+ "12934": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 29,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -18"
+ },
+ "12935": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 18.5"
+ },
+ "12936": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -18.5"
+ },
+ "12937": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 19"
+ },
+ "12938": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 31,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -19"
+ },
+ "12939": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 19.5"
+ },
+ "12940": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -19.5"
+ },
+ "12941": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 111,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 114"
+ },
+ "12942": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 111,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 114"
+ },
+ "12943": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 5"
+ },
+ "12944": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 5"
+ },
+ "12945": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 29.5"
+ },
+ "12946": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 29.5"
+ },
+ "12947": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 25.5"
+ },
+ "12948": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 25.5"
+ },
+ "12949": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 35.5"
+ },
+ "12950": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 35.5"
+ },
+ "12951": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 29.5"
+ },
+ "12952": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 29.5"
+ },
+ "12953": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 34.5"
+ },
+ "12954": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 34.5"
+ },
+ "12955": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 33.5"
+ },
+ "12956": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 33.5"
+ },
+ "12957": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 61"
+ },
+ "12958": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 61"
+ },
+ "12959": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 35.5"
+ },
+ "12960": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 35.5"
+ },
+ "12961": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 24.5"
+ },
+ "12962": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 24.5"
+ },
+ "12963": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 59"
+ },
+ "12964": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 59"
+ },
+ "12965": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 33"
+ },
+ "12966": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 33"
+ },
+ "12967": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 64"
+ },
+ "12968": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 64"
+ },
+ "12969": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 25.5"
+ },
+ "12970": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -25.5"
+ },
+ "12971": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 26.5"
+ },
+ "12972": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -26.5"
+ },
+ "12973": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Kill Team 1 H1 27.5"
+ },
+ "12974": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Kill Team 2 H2 -27.5"
+ },
+ "12975": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 36"
+ },
+ "12976": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 36"
+ },
+ "12977": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 32"
+ },
+ "12978": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 32"
+ },
+ "12979": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 29"
+ },
+ "12980": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 29"
+ },
+ "12981": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 34"
+ },
+ "12982": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 34"
+ },
+ "12983": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 33.5"
+ },
+ "12984": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 33.5"
+ },
+ "12985": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 27,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -17"
+ },
+ "12986": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 17"
+ },
+ "12987": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -16.5"
+ },
+ "12988": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 16.5"
+ },
+ "12989": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -16"
+ },
+ "12990": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 16"
+ },
+ "12991": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 29,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -18"
+ },
+ "12992": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 18"
+ },
+ "12993": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -17.5"
+ },
+ "12994": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 17.5"
+ },
+ "12995": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -18.5"
+ },
+ "12996": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 18.5"
+ },
+ "12997": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 38,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -20"
+ },
+ "12998": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 20"
+ },
+ "12999": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -19.5"
+ },
+ "13000": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 19.5"
+ },
+ "13001": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 31,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -19"
+ },
+ "13002": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 19"
+ },
+ "13003": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 48.5"
+ },
+ "13004": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 48.5"
+ },
+ "13005": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -3.5"
+ },
+ "13006": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 3.5"
+ },
+ "13007": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Over 11.5"
+ },
+ "13008": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Under 11.5"
+ },
+ "13009": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Over 15.5"
+ },
+ "13010": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Under 15.5"
+ },
+ "13011": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -4.5"
+ },
+ "13012": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 4.5"
+ },
+ "13013": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -17.5"
+ },
+ "13014": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 17.5"
+ },
+ "13015": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 27,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -17"
+ },
+ "13016": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 17"
+ },
+ "13017": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 29,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -18"
+ },
+ "13018": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 18"
+ },
+ "13019": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -8"
+ },
+ "13020": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 8"
+ },
+ "13021": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -18.5"
+ },
+ "13022": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 18.5"
+ },
+ "13023": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -19.5"
+ },
+ "13024": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 19.5"
+ },
+ "13025": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 31,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -19"
+ },
+ "13026": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 19"
+ },
+ "13027": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 38,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -20"
+ },
+ "13028": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 20"
+ },
+ "13029": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 24"
+ },
+ "13030": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 24"
+ },
+ "13031": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -20.5"
+ },
+ "13032": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 20.5"
+ },
+ "13033": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -21.5"
+ },
+ "13034": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 21.5"
+ },
+ "13035": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 40,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -21"
+ },
+ "13036": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 21"
+ },
+ "13037": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 427,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -23"
+ },
+ "13038": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 23"
+ },
+ "13039": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -22.5"
+ },
+ "13040": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 22.5"
+ },
+ "13041": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 430,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -22"
+ },
+ "13042": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 22"
+ },
+ "13043": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -23.5"
+ },
+ "13044": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 23.5"
+ },
+ "13045": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 30"
+ },
+ "13046": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 30"
+ },
+ "13047": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 23.5"
+ },
+ "13048": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 23.5"
+ },
+ "13049": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 32.5"
+ },
+ "13050": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 32.5"
+ },
+ "13051": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 9.5"
+ },
+ "13052": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 9.5"
+ },
+ "13053": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 10.5"
+ },
+ "13054": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 10.5"
+ },
+ "13055": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 8.5"
+ },
+ "13056": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -8.5"
+ },
+ "13057": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 58"
+ },
+ "13058": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 58"
+ },
+ "13059": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 7.5"
+ },
+ "13060": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 7.5"
+ },
+ "13061": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -11.5"
+ },
+ "13062": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 11.5"
+ },
+ "13063": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 25"
+ },
+ "13064": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 25"
+ },
+ "13065": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 28"
+ },
+ "13066": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 28"
+ },
+ "13067": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 64.5"
+ },
+ "13068": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 64.5"
+ },
+ "13069": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 844,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Penalty Shootout Winner of match Goal 1"
+ },
+ "13070": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 844,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Penalty Shootout Winner of match Goal 2"
+ },
+ "13071": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 34"
+ },
+ "13072": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 34"
+ },
+ "13073": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Over 20.5"
+ },
+ "13074": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Under 20.5"
+ },
+ "13075": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -5"
+ },
+ "13076": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 5"
+ },
+ "13077": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Over 19.5"
+ },
+ "13078": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Under 19.5"
+ },
+ "13079": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -6"
+ },
+ "13080": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 6"
+ },
+ "13081": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Over 18.5"
+ },
+ "13082": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Under 18.5"
+ },
+ "13083": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -5.5"
+ },
+ "13084": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 5.5"
+ },
+ "13085": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 42.5"
+ },
+ "13086": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 42.5"
+ },
+ "13087": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 47.5"
+ },
+ "13088": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 47.5"
+ },
+ "13089": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 5"
+ },
+ "13090": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -5"
+ },
+ "13091": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 6"
+ },
+ "13092": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -6"
+ },
+ "13093": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 413,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 90"
+ },
+ "13094": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 413,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 90"
+ },
+ "13095": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 409,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 89"
+ },
+ "13096": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 409,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 89"
+ },
+ "13097": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 41.5"
+ },
+ "13098": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 41.5"
+ },
+ "13099": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 46.5"
+ },
+ "13100": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 46.5"
+ },
+ "13101": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 407,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 88"
+ },
+ "13102": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 407,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 88"
+ },
+ "13103": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "2nd Period Total Goal Over 1"
+ },
+ "13104": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 758,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "2nd Period Total Goal Under 1"
+ },
+ "13105": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 35.5"
+ },
+ "13106": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 35.5"
+ },
+ "13107": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 36.5"
+ },
+ "13108": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 36.5"
+ },
+ "13109": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 35.5"
+ },
+ "13110": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 35.5"
+ },
+ "13111": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 0"
+ },
+ "13112": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 0"
+ },
+ "13113": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 36.5"
+ },
+ "13114": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 36.5"
+ },
+ "13115": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 39.5"
+ },
+ "13116": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 39.5"
+ },
+ "13117": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 69.5"
+ },
+ "13118": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 366,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 69.5"
+ },
+ "13119": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 41.5"
+ },
+ "13120": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 41.5"
+ },
+ "13121": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 375,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 73"
+ },
+ "13122": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 375,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 73"
+ },
+ "13123": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 37.5"
+ },
+ "13124": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 37.5"
+ },
+ "13125": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 70.5"
+ },
+ "13126": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 370,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 70.5"
+ },
+ "13127": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 375,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 73"
+ },
+ "13128": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 375,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 73"
+ },
+ "13129": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 73.5"
+ },
+ "13130": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 73.5"
+ },
+ "13131": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 42.5"
+ },
+ "13132": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 42.5"
+ },
+ "13133": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 377,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 74"
+ },
+ "13134": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 377,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 74"
+ },
+ "13135": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 71.5"
+ },
+ "13136": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 372,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 71.5"
+ },
+ "13137": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 72.5"
+ },
+ "13138": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 374,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 72.5"
+ },
+ "13139": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 155,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 139"
+ },
+ "13140": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 155,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 139"
+ },
+ "13141": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 73.5"
+ },
+ "13142": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 73.5"
+ },
+ "13143": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 156,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 139.5"
+ },
+ "13144": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 156,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 139.5"
+ },
+ "13145": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 159,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 140"
+ },
+ "13146": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 159,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 140"
+ },
+ "13147": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 160,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 140.5"
+ },
+ "13148": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 160,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 140.5"
+ },
+ "13149": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 161,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 141"
+ },
+ "13150": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 161,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 141"
+ },
+ "13151": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 163,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 142"
+ },
+ "13152": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 163,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 142"
+ },
+ "13153": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 162,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 141.5"
+ },
+ "13154": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 162,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 141.5"
+ },
+ "13155": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 164,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 142.5"
+ },
+ "13156": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 164,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 142.5"
+ },
+ "13157": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 165,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 143"
+ },
+ "13158": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 165,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 143"
+ },
+ "13159": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 75.5"
+ },
+ "13160": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 75.5"
+ },
+ "13161": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 166,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 143.5"
+ },
+ "13162": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 166,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 143.5"
+ },
+ "13163": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 167,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 144"
+ },
+ "13164": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 167,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 144"
+ },
+ "13165": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 74.5"
+ },
+ "13166": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 74.5"
+ },
+ "13167": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 76.5"
+ },
+ "13168": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 76.5"
+ },
+ "13169": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 77.5"
+ },
+ "13170": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 77.5"
+ },
+ "13171": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 4.5"
+ },
+ "13172": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 -4.5"
+ },
+ "13173": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 391,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 80"
+ },
+ "13174": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 391,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 80"
+ },
+ "13175": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 40.5"
+ },
+ "13176": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 40.5"
+ },
+ "13177": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 39.5"
+ },
+ "13178": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 39.5"
+ },
+ "13179": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 8"
+ },
+ "13180": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -8"
+ },
+ "13181": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 43.5"
+ },
+ "13182": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 43.5"
+ },
+ "13183": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 35.5"
+ },
+ "13184": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 35.5"
+ },
+ "13185": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 10"
+ },
+ "13186": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -10"
+ },
+ "13187": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 40"
+ },
+ "13188": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 40"
+ },
+ "13189": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Over 14.5"
+ },
+ "13190": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Under 14.5"
+ },
+ "13191": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 38.5"
+ },
+ "13192": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 38.5"
+ },
+ "13193": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 2"
+ },
+ "13194": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 34,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -2"
+ },
+ "13195": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 3"
+ },
+ "13196": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 51,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -3"
+ },
+ "13197": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 34.5"
+ },
+ "13198": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 34.5"
+ },
+ "13199": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 383,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 77"
+ },
+ "13200": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 383,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 77"
+ },
+ "13201": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 11"
+ },
+ "13202": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -11"
+ },
+ "13203": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 39"
+ },
+ "13204": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 39"
+ },
+ "13205": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 373,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 72"
+ },
+ "13206": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 373,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 72"
+ },
+ "13207": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 37.5"
+ },
+ "13208": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 37.5"
+ },
+ "13209": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 10.5"
+ },
+ "13210": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -10.5"
+ },
+ "13211": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 39.5"
+ },
+ "13212": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 39.5"
+ },
+ "13213": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 385,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 78"
+ },
+ "13214": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 385,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 78"
+ },
+ "13215": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 40.5"
+ },
+ "13216": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 40.5"
+ },
+ "13217": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 381,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 76"
+ },
+ "13218": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 381,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 76"
+ },
+ "13219": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 379,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 75"
+ },
+ "13220": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 379,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 75"
+ },
+ "13221": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 41.5"
+ },
+ "13222": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 41.5"
+ },
+ "13223": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 42.5"
+ },
+ "13224": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 42.5"
+ },
+ "13225": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 361,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 67"
+ },
+ "13226": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 361,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 67"
+ },
+ "13227": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 31.5"
+ },
+ "13228": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 31.5"
+ },
+ "13229": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -4"
+ },
+ "13230": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 4"
+ },
+ "13231": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 37.5"
+ },
+ "13232": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 37.5"
+ },
+ "13233": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 78.5"
+ },
+ "13234": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 78.5"
+ },
+ "13235": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 68.5"
+ },
+ "13236": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 364,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 68.5"
+ },
+ "13237": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 401,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 85"
+ },
+ "13238": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 401,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 85"
+ },
+ "13239": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 45.5"
+ },
+ "13240": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 45.5"
+ },
+ "13241": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 38.5"
+ },
+ "13242": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 38.5"
+ },
+ "13243": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 10.5"
+ },
+ "13244": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -10.5"
+ },
+ "13245": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Over 14.5"
+ },
+ "13246": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Under 14.5"
+ },
+ "13247": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 10"
+ },
+ "13248": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -10"
+ },
+ "13249": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 395,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 82"
+ },
+ "13250": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 395,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 82"
+ },
+ "13251": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 403,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 86"
+ },
+ "13252": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 403,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 86"
+ },
+ "13253": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 397,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 83"
+ },
+ "13254": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 397,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 83"
+ },
+ "13255": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 363,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 68"
+ },
+ "13256": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 363,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 68"
+ },
+ "13257": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 51"
+ },
+ "13258": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 51"
+ },
+ "13259": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 2.5"
+ },
+ "13260": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 2.5"
+ },
+ "13261": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 50.5"
+ },
+ "13262": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 50.5"
+ },
+ "13263": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 369,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 70"
+ },
+ "13264": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 369,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 70"
+ },
+ "13265": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 371,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 71"
+ },
+ "13266": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 371,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 71"
+ },
+ "13267": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Over 7.5"
+ },
+ "13268": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Under 7.5"
+ },
+ "13269": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 7"
+ },
+ "13270": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 -7"
+ },
+ "13271": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 2"
+ },
+ "13272": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 2"
+ },
+ "13273": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 43.5"
+ },
+ "13274": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 43.5"
+ },
+ "13275": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 9"
+ },
+ "13276": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -9"
+ },
+ "13277": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 44.5"
+ },
+ "13278": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 44.5"
+ },
+ "13279": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 32.5"
+ },
+ "13280": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 32.5"
+ },
+ "13281": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 11"
+ },
+ "13282": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 11"
+ },
+ "13283": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 30.5"
+ },
+ "13284": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 30.5"
+ },
+ "13285": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 10"
+ },
+ "13286": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -10"
+ },
+ "13287": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 3.5"
+ },
+ "13288": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 -3.5"
+ },
+ "13289": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 4.5"
+ },
+ "13290": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 -4.5"
+ },
+ "13291": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 19.5"
+ },
+ "13292": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -19.5"
+ },
+ "13293": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 23.5"
+ },
+ "13294": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -23.5"
+ },
+ "13295": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -10.5"
+ },
+ "13296": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 10.5"
+ },
+ "13297": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -9.5"
+ },
+ "13298": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 9.5"
+ },
+ "13299": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -8.5"
+ },
+ "13300": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 8.5"
+ },
+ "13301": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -7.5"
+ },
+ "13302": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 7.5"
+ },
+ "13303": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -6.5"
+ },
+ "13304": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 6.5"
+ },
+ "13305": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -5.5"
+ },
+ "13306": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 5.5"
+ },
+ "13307": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -4.5"
+ },
+ "13308": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 4.5"
+ },
+ "13309": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -21.5"
+ },
+ "13310": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 21.5"
+ },
+ "13311": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -22.5"
+ },
+ "13312": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 22.5"
+ },
+ "13313": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 430,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -22"
+ },
+ "13314": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 22"
+ },
+ "13315": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 427,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -23"
+ },
+ "13316": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 23"
+ },
+ "13317": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 26.5"
+ },
+ "13318": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -26.5"
+ },
+ "13319": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 29.5"
+ },
+ "13320": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 29.5"
+ },
+ "13321": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 30.5"
+ },
+ "13322": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 30.5"
+ },
+ "13323": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 30"
+ },
+ "13324": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 30"
+ },
+ "13325": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 61"
+ },
+ "13326": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 61"
+ },
+ "13327": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 57"
+ },
+ "13328": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 57"
+ },
+ "13329": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 31"
+ },
+ "13330": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 31"
+ },
+ "13331": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 19.5"
+ },
+ "13332": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -19.5"
+ },
+ "13333": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 20.5"
+ },
+ "13334": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -20.5"
+ },
+ "13335": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 18.5"
+ },
+ "13336": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 -18.5"
+ },
+ "13337": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 62"
+ },
+ "13338": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 351,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 62"
+ },
+ "13339": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 31"
+ },
+ "13340": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 31"
+ },
+ "13341": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 31"
+ },
+ "13342": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 31"
+ },
+ "13343": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 26"
+ },
+ "13344": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 26"
+ },
+ "13345": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 29"
+ },
+ "13346": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 29"
+ },
+ "13347": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 11.5"
+ },
+ "13348": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -11.5"
+ },
+ "13349": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Over 13.5"
+ },
+ "13350": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Under 13.5"
+ },
+ "13351": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 12"
+ },
+ "13352": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -12"
+ },
+ "13353": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -7"
+ },
+ "13354": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 7"
+ },
+ "13355": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -6.5"
+ },
+ "13356": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 6.5"
+ },
+ "13357": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 61"
+ },
+ "13358": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 61"
+ },
+ "13359": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 30"
+ },
+ "13360": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 30"
+ },
+ "13361": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -7.5"
+ },
+ "13362": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 7.5"
+ },
+ "13363": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Over 17.5"
+ },
+ "13364": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Under 17.5"
+ },
+ "13365": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -9.5"
+ },
+ "13366": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 9.5"
+ },
+ "13367": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 19"
+ },
+ "13368": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 19"
+ },
+ "13369": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 19.5"
+ },
+ "13370": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 19.5"
+ },
+ "13371": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 18.5"
+ },
+ "13372": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 18.5"
+ },
+ "13373": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 17.5"
+ },
+ "13374": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 17.5"
+ },
+ "13375": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 18"
+ },
+ "13376": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 18"
+ },
+ "13377": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 33.5"
+ },
+ "13378": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 33.5"
+ },
+ "13379": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 23"
+ },
+ "13380": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 23"
+ },
+ "13381": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 22"
+ },
+ "13382": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 22"
+ },
+ "13383": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 22.5"
+ },
+ "13384": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 22.5"
+ },
+ "13385": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 21"
+ },
+ "13386": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 21"
+ },
+ "13387": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 21.5"
+ },
+ "13388": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 21.5"
+ },
+ "13389": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 491,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 96.5"
+ },
+ "13390": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 491,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 96.5"
+ },
+ "13391": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 20.5"
+ },
+ "13392": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 20.5"
+ },
+ "13393": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 28"
+ },
+ "13394": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 28"
+ },
+ "13395": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 417,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 95.5"
+ },
+ "13396": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 417,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 95.5"
+ },
+ "13397": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 531,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 96"
+ },
+ "13398": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 531,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 96"
+ },
+ "13399": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 520,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 95"
+ },
+ "13400": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 520,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 95"
+ },
+ "13401": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 474,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 94"
+ },
+ "13402": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 474,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 94"
+ },
+ "13403": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 473,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 93"
+ },
+ "13404": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 473,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 93"
+ },
+ "13405": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 471,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 92"
+ },
+ "13406": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 471,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 92"
+ },
+ "13407": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 472,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 91"
+ },
+ "13408": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 472,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 91"
+ },
+ "13409": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 414,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 90.5"
+ },
+ "13410": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 414,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 90.5"
+ },
+ "13411": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 6"
+ },
+ "13412": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 6"
+ },
+ "13413": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 9"
+ },
+ "13414": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -9"
+ },
+ "13415": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 9.5"
+ },
+ "13416": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -9.5"
+ },
+ "13417": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 10"
+ },
+ "13418": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -10"
+ },
+ "13419": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 28.5"
+ },
+ "13420": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 28.5"
+ },
+ "13421": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 68,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -8"
+ },
+ "13422": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 8"
+ },
+ "13423": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -8.5"
+ },
+ "13424": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 8.5"
+ },
+ "13425": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Over 16.5"
+ },
+ "13426": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Under 16.5"
+ },
+ "13427": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -9.5"
+ },
+ "13428": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 9.5"
+ },
+ "13429": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Over 15.5"
+ },
+ "13430": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Under 15.5"
+ },
+ "13431": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -10.5"
+ },
+ "13432": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 10.5"
+ },
+ "13433": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Over 14.5"
+ },
+ "13434": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Under 14.5"
+ },
+ "13435": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 62,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -5"
+ },
+ "13436": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 5"
+ },
+ "13437": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 20"
+ },
+ "13438": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 20"
+ },
+ "13439": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 6.5"
+ },
+ "13440": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 6.5"
+ },
+ "13441": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 19"
+ },
+ "13442": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 19"
+ },
+ "13443": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 19.5"
+ },
+ "13444": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 19.5"
+ },
+ "13445": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 18"
+ },
+ "13446": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 18"
+ },
+ "13447": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 18.5"
+ },
+ "13448": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 18.5"
+ },
+ "13449": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "Extra Time Total Goal Over 1"
+ },
+ "13450": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "Extra Time Total Goal Under 1"
+ },
+ "13451": {
+ "selectionId": 1,
+ "marketId": 1,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Extra Time Full time result Goal 1"
+ },
+ "13452": {
+ "selectionId": 3,
+ "marketId": 1,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Extra Time Full time result Goal 2"
+ },
+ "13453": {
+ "selectionId": 2,
+ "marketId": 1,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Extra Time Full time result Goal X"
+ },
+ "13454": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 1,
+ "_comment": "Extra Time Handicap Goal Team 1 H1 -0.5"
+ },
+ "13455": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Extra Time Handicap Goal Team 2 H2 0.5"
+ },
+ "13456": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 1,
+ "_comment": "Extra Time Handicap Goal Team 1 H1 0"
+ },
+ "13457": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 2,
+ "_comment": "Extra Time Handicap Goal Team 2 H2 0"
+ },
+ "13458": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "Extra Time Total Goal Over 0.5"
+ },
+ "13459": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "Extra Time Total Goal Under 0.5"
+ },
+ "13460": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "Extra Time Handicap Goal Team 1 H1 -1"
+ },
+ "13461": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "Extra Time Handicap Goal Team 2 H2 1"
+ },
+ "13462": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -9"
+ },
+ "13463": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 9"
+ },
+ "13464": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Extra Time Total Goal Over 1.5"
+ },
+ "13465": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Extra Time Total Goal Under 1.5"
+ },
+ "13466": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 9.5"
+ },
+ "13467": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 9.5"
+ },
+ "13468": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 77.5"
+ },
+ "13469": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 77.5"
+ },
+ "13470": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 387,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 79"
+ },
+ "13471": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 387,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 79"
+ },
+ "13472": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 10"
+ },
+ "13473": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -10"
+ },
+ "13474": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 29.5"
+ },
+ "13475": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 29.5"
+ },
+ "13476": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 393,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 81"
+ },
+ "13477": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 393,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 81"
+ },
+ "13478": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 39.5"
+ },
+ "13479": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 39.5"
+ },
+ "13480": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 63"
+ },
+ "13481": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 63"
+ },
+ "13482": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 63.5"
+ },
+ "13483": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 354,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 63.5"
+ },
+ "13484": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 64"
+ },
+ "13485": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 64"
+ },
+ "13486": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 35.5"
+ },
+ "13487": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 35.5"
+ },
+ "13488": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 64.5"
+ },
+ "13489": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 356,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 64.5"
+ },
+ "13490": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 33.5"
+ },
+ "13491": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 33.5"
+ },
+ "13492": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 11"
+ },
+ "13493": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -11"
+ },
+ "13494": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 12"
+ },
+ "13495": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -12"
+ },
+ "13496": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 78.5"
+ },
+ "13497": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 78.5"
+ },
+ "13498": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 399,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 84"
+ },
+ "13499": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 399,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 84"
+ },
+ "13500": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 747,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 277"
+ },
+ "13501": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 747,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 277"
+ },
+ "13502": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 154,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 138.5"
+ },
+ "13503": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 154,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 138.5"
+ },
+ "13504": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 748,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 275.5"
+ },
+ "13505": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 748,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 275.5"
+ },
+ "13506": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 156,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 139.5"
+ },
+ "13507": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 156,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 139.5"
+ },
+ "13508": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 749,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 276"
+ },
+ "13509": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 749,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 276"
+ },
+ "13510": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 750,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 276.5"
+ },
+ "13511": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 750,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 276.5"
+ },
+ "13512": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 751,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 275"
+ },
+ "13513": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 751,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 275"
+ },
+ "13514": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 752,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 274.5"
+ },
+ "13515": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 752,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 274.5"
+ },
+ "13516": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 753,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 273.5"
+ },
+ "13517": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 753,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 273.5"
+ },
+ "13518": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 754,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 274"
+ },
+ "13519": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 754,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 274"
+ },
+ "13520": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 156,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 139.5"
+ },
+ "13521": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 156,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 139.5"
+ },
+ "13522": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 160,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 140.5"
+ },
+ "13523": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 160,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 140.5"
+ },
+ "13524": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 162,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 141.5"
+ },
+ "13525": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 162,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 141.5"
+ },
+ "13526": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 19"
+ },
+ "13527": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 19"
+ },
+ "13528": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 40"
+ },
+ "13529": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 425,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 40"
+ },
+ "13530": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 31"
+ },
+ "13531": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 31"
+ },
+ "13532": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 32"
+ },
+ "13533": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 32"
+ },
+ "13534": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 33"
+ },
+ "13535": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 33"
+ },
+ "13536": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 34"
+ },
+ "13537": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 34"
+ },
+ "13538": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 20"
+ },
+ "13539": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 20"
+ },
+ "13540": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 16"
+ },
+ "13541": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 16"
+ },
+ "13542": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 35"
+ },
+ "13543": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 35"
+ },
+ "13544": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 17"
+ },
+ "13545": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 17"
+ },
+ "13546": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 41"
+ },
+ "13547": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 426,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 41"
+ },
+ "13548": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 14"
+ },
+ "13549": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 14"
+ },
+ "13550": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 30"
+ },
+ "13551": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 30"
+ },
+ "13552": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 13.5"
+ },
+ "13553": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 13.5"
+ },
+ "13554": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -10"
+ },
+ "13555": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 10"
+ },
+ "13556": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 38.5"
+ },
+ "13557": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 38.5"
+ },
+ "13558": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -11"
+ },
+ "13559": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 11"
+ },
+ "13560": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -11.5"
+ },
+ "13561": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 11.5"
+ },
+ "13562": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -12"
+ },
+ "13563": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 12"
+ },
+ "13564": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 38"
+ },
+ "13565": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 38"
+ },
+ "13566": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Over 13.5"
+ },
+ "13567": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Under 13.5"
+ },
+ "13568": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -12.5"
+ },
+ "13569": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 12.5"
+ },
+ "13570": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -13"
+ },
+ "13571": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 13"
+ },
+ "13572": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 37.5"
+ },
+ "13573": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 37.5"
+ },
+ "13574": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 37"
+ },
+ "13575": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 37"
+ },
+ "13576": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Over 12.5"
+ },
+ "13577": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Under 12.5"
+ },
+ "13578": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 29"
+ },
+ "13579": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 29"
+ },
+ "13580": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 7.5"
+ },
+ "13581": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 7.5"
+ },
+ "13582": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 42"
+ },
+ "13583": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 304,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 42"
+ },
+ "13584": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 21"
+ },
+ "13585": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 21"
+ },
+ "13586": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 43"
+ },
+ "13587": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 306,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 43"
+ },
+ "13588": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 21"
+ },
+ "13589": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 21"
+ },
+ "13590": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 28"
+ },
+ "13591": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 28"
+ },
+ "13592": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 18"
+ },
+ "13593": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 18"
+ },
+ "13594": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 54"
+ },
+ "13595": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 54"
+ },
+ "13596": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 56"
+ },
+ "13597": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 56"
+ },
+ "13598": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 27"
+ },
+ "13599": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 27"
+ },
+ "13600": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 28"
+ },
+ "13601": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 28"
+ },
+ "13602": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 27"
+ },
+ "13603": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 27"
+ },
+ "13604": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 23.5"
+ },
+ "13605": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 23.5"
+ },
+ "13606": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 29"
+ },
+ "13607": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 29"
+ },
+ "13608": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 24"
+ },
+ "13609": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 24"
+ },
+ "13610": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 65"
+ },
+ "13611": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 65"
+ },
+ "13612": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 56"
+ },
+ "13613": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 56"
+ },
+ "13614": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 64"
+ },
+ "13615": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 64"
+ },
+ "13616": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 28"
+ },
+ "13617": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 28"
+ },
+ "13618": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 22.5"
+ },
+ "13619": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -22.5"
+ },
+ "13620": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 26.5"
+ },
+ "13621": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -26.5"
+ },
+ "13622": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 23.5"
+ },
+ "13623": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -23.5"
+ },
+ "13624": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 27.5"
+ },
+ "13625": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -27.5"
+ },
+ "13626": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 497,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -48.5"
+ },
+ "13627": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 48.5"
+ },
+ "13628": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 431,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -33.5"
+ },
+ "13629": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 33.5"
+ },
+ "13630": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 39.5"
+ },
+ "13631": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 434,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -39.5"
+ },
+ "13632": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 39.5"
+ },
+ "13633": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 434,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -39.5"
+ },
+ "13634": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 33"
+ },
+ "13635": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 33"
+ },
+ "13636": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 30"
+ },
+ "13637": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 30"
+ },
+ "13638": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 29"
+ },
+ "13639": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 277,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 29"
+ },
+ "13640": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 17"
+ },
+ "13641": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 17"
+ },
+ "13642": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 27"
+ },
+ "13643": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 27"
+ },
+ "13644": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 25"
+ },
+ "13645": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 25"
+ },
+ "13646": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 16"
+ },
+ "13647": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 16"
+ },
+ "13648": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 20"
+ },
+ "13649": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 38,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -20"
+ },
+ "13650": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 20.5"
+ },
+ "13651": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -20.5"
+ },
+ "13652": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 21"
+ },
+ "13653": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 40,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -21"
+ },
+ "13654": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 45.5"
+ },
+ "13655": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 483,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -45.5"
+ },
+ "13656": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 42.5"
+ },
+ "13657": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 447,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -42.5"
+ },
+ "13658": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -11.5"
+ },
+ "13659": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 11.5"
+ },
+ "13660": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 38.5"
+ },
+ "13661": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 38.5"
+ },
+ "13662": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 14.5"
+ },
+ "13663": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 14.5"
+ },
+ "13664": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 10"
+ },
+ "13665": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -10"
+ },
+ "13666": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 11"
+ },
+ "13667": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -11"
+ },
+ "13668": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 13.5"
+ },
+ "13669": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 13.5"
+ },
+ "13670": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 42.5"
+ },
+ "13671": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 42.5"
+ },
+ "13672": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 15"
+ },
+ "13673": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 15"
+ },
+ "13674": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 39.5"
+ },
+ "13675": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 39.5"
+ },
+ "13676": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 41.5"
+ },
+ "13677": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 41.5"
+ },
+ "13678": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 35"
+ },
+ "13679": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 35"
+ },
+ "13680": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 44.5"
+ },
+ "13681": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 485,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -44.5"
+ },
+ "13682": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 43.5"
+ },
+ "13683": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 449,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -43.5"
+ },
+ "13684": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 24.5"
+ },
+ "13685": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 24.5"
+ },
+ "13686": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 41.5"
+ },
+ "13687": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 445,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -41.5"
+ },
+ "13688": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 16.5"
+ },
+ "13689": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -16.5"
+ },
+ "13690": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 20.5"
+ },
+ "13691": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -20.5"
+ },
+ "13692": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 11"
+ },
+ "13693": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -11"
+ },
+ "13694": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 40.5"
+ },
+ "13695": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 482,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -40.5"
+ },
+ "13696": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 50.5"
+ },
+ "13697": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 50.5"
+ },
+ "13698": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 44.5"
+ },
+ "13699": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 44.5"
+ },
+ "13700": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 32.5"
+ },
+ "13701": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 32.5"
+ },
+ "13702": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 32.5"
+ },
+ "13703": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 32.5"
+ },
+ "13704": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 1.5"
+ },
+ "13705": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 1.5"
+ },
+ "13706": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 4"
+ },
+ "13707": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 61,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -4"
+ },
+ "13708": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 160,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 140.5"
+ },
+ "13709": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 160,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 140.5"
+ },
+ "13710": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 162,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 141.5"
+ },
+ "13711": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 162,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 141.5"
+ },
+ "13712": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 164,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 142.5"
+ },
+ "13713": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 164,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 142.5"
+ },
+ "13714": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 57"
+ },
+ "13715": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 755,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -57"
+ },
+ "13716": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 58"
+ },
+ "13717": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 756,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -58"
+ },
+ "13718": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 166,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 143.5"
+ },
+ "13719": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 166,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 143.5"
+ },
+ "13720": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 168,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 144.5"
+ },
+ "13721": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 168,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 144.5"
+ },
+ "13722": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 59"
+ },
+ "13723": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 757,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 -59"
+ },
+ "13724": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 40.5"
+ },
+ "13725": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 40.5"
+ },
+ "13726": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 45.5"
+ },
+ "13727": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 45.5"
+ },
+ "13728": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 31.5"
+ },
+ "13729": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 31.5"
+ },
+ "13730": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 44"
+ },
+ "13731": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 44"
+ },
+ "13732": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 44"
+ },
+ "13733": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 308,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 44"
+ },
+ "13734": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 365,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 69"
+ },
+ "13735": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 365,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 69"
+ },
+ "13736": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 78,
+ "gameTypeId": 105,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 To Score Elder Dragon Yes"
+ },
+ "13737": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 78,
+ "gameTypeId": 105,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 1 To Score Elder Dragon No"
+ },
+ "13738": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 14"
+ },
+ "13739": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 14"
+ },
+ "13740": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 50"
+ },
+ "13741": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 324,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 50"
+ },
+ "13742": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 49.5"
+ },
+ "13743": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 49.5"
+ },
+ "13744": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 50.5"
+ },
+ "13745": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 50.5"
+ },
+ "13746": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 -3.5"
+ },
+ "13747": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 3.5"
+ },
+ "13748": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 -4.5"
+ },
+ "13749": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 4.5"
+ },
+ "13750": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Over 7.5"
+ },
+ "13751": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Under 7.5"
+ },
+ "13752": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 2 Over 4.5"
+ },
+ "13753": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 2 Under 4.5"
+ },
+ "13754": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Over 8.5"
+ },
+ "13755": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Under 8.5"
+ },
+ "13756": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 2 Over 3.5"
+ },
+ "13757": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 2 Under 3.5"
+ },
+ "13758": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Over 9.5"
+ },
+ "13759": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Under 9.5"
+ },
+ "13760": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 2 Over 2.5"
+ },
+ "13761": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 2 Under 2.5"
+ },
+ "13762": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 -6.5"
+ },
+ "13763": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 6.5"
+ },
+ "13764": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 -8.5"
+ },
+ "13765": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 8.5"
+ },
+ "13766": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 -5.5"
+ },
+ "13767": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 5.5"
+ },
+ "13768": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 37.5"
+ },
+ "13769": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 37.5"
+ },
+ "13770": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 37"
+ },
+ "13771": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 37"
+ },
+ "13772": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -12.5"
+ },
+ "13773": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 12.5"
+ },
+ "13774": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -13"
+ },
+ "13775": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 13"
+ },
+ "13776": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Over 12.5"
+ },
+ "13777": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Under 12.5"
+ },
+ "13778": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -13.5"
+ },
+ "13779": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 13.5"
+ },
+ "13780": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 36.5"
+ },
+ "13781": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 36.5"
+ },
+ "13782": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Over 11.5"
+ },
+ "13783": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Under 11.5"
+ },
+ "13784": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -11"
+ },
+ "13785": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 11"
+ },
+ "13786": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 27.5"
+ },
+ "13787": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -27.5"
+ },
+ "13788": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 15"
+ },
+ "13789": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 15"
+ },
+ "13790": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 53"
+ },
+ "13791": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 53"
+ },
+ "13792": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 28"
+ },
+ "13793": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 28"
+ },
+ "13794": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 443,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -36"
+ },
+ "13795": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 36"
+ },
+ "13796": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 475,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -35"
+ },
+ "13797": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 35"
+ },
+ "13798": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 423,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -37"
+ },
+ "13799": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 37"
+ },
+ "13800": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 58"
+ },
+ "13801": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 58"
+ },
+ "13802": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 57"
+ },
+ "13803": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 57"
+ },
+ "13804": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 52"
+ },
+ "13805": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 52"
+ },
+ "13806": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 26"
+ },
+ "13807": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 26"
+ },
+ "13808": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -23.5"
+ },
+ "13809": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 23.5"
+ },
+ "13810": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 432,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -24"
+ },
+ "13811": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 24"
+ },
+ "13812": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 11"
+ },
+ "13813": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -11"
+ },
+ "13814": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 10.5"
+ },
+ "13815": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -10.5"
+ },
+ "13816": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 11.5"
+ },
+ "13817": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -11.5"
+ },
+ "13818": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 12"
+ },
+ "13819": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -12"
+ },
+ "13820": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 12.5"
+ },
+ "13821": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -12.5"
+ },
+ "13822": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -26.5"
+ },
+ "13823": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 26.5"
+ },
+ "13824": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -24.5"
+ },
+ "13825": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 24.5"
+ },
+ "13826": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 42.5"
+ },
+ "13827": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 447,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -42.5"
+ },
+ "13828": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 41.5"
+ },
+ "13829": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 445,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -41.5"
+ },
+ "13830": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 28.5"
+ },
+ "13831": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 48,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -28.5"
+ },
+ "13832": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 16.5"
+ },
+ "13833": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -16.5"
+ },
+ "13834": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 17.5"
+ },
+ "13835": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -17.5"
+ },
+ "13836": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 29.5"
+ },
+ "13837": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 50,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -29.5"
+ },
+ "13838": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 5"
+ },
+ "13839": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 320,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 5"
+ },
+ "13840": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 3"
+ },
+ "13841": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 3"
+ },
+ "13842": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 7.5"
+ },
+ "13843": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 7.5"
+ },
+ "13844": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 6.5"
+ },
+ "13845": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 6.5"
+ },
+ "13846": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 5.5"
+ },
+ "13847": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 5.5"
+ },
+ "13848": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 4.5"
+ },
+ "13849": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 4.5"
+ },
+ "13850": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 30.5"
+ },
+ "13851": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 55,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -30.5"
+ },
+ "13852": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 18.5"
+ },
+ "13853": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -18.5"
+ },
+ "13854": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 28.5"
+ },
+ "13855": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 48,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -28.5"
+ },
+ "13856": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 43.5"
+ },
+ "13857": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 449,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -43.5"
+ },
+ "13858": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 19.5"
+ },
+ "13859": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -19.5"
+ },
+ "13860": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 11.5"
+ },
+ "13861": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 11.5"
+ },
+ "13862": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 44.5"
+ },
+ "13863": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 485,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -44.5"
+ },
+ "13864": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 24.5"
+ },
+ "13865": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -24.5"
+ },
+ "13866": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 29.5"
+ },
+ "13867": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 50,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -29.5"
+ },
+ "13868": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 25.5"
+ },
+ "13869": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -25.5"
+ },
+ "13870": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 30.5"
+ },
+ "13871": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 55,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -30.5"
+ },
+ "13872": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 12"
+ },
+ "13873": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 12"
+ },
+ "13874": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 12.5"
+ },
+ "13875": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 12.5"
+ },
+ "13876": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -22.5"
+ },
+ "13877": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 22.5"
+ },
+ "13878": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -20.5"
+ },
+ "13879": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 20.5"
+ },
+ "13880": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 6.5"
+ },
+ "13881": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 6.5"
+ },
+ "13882": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -23.5"
+ },
+ "13883": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 23.5"
+ },
+ "13884": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -21.5"
+ },
+ "13885": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 21.5"
+ },
+ "13886": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 14"
+ },
+ "13887": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 14"
+ },
+ "13888": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 33.5"
+ },
+ "13889": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 431,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -33.5"
+ },
+ "13890": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 40.5"
+ },
+ "13891": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 482,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -40.5"
+ },
+ "13892": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 7.5"
+ },
+ "13893": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -7.5"
+ },
+ "13894": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 4.5"
+ },
+ "13895": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -4.5"
+ },
+ "13896": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 5.5"
+ },
+ "13897": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -5.5"
+ },
+ "13898": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 6.5"
+ },
+ "13899": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -6.5"
+ },
+ "13900": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 8.5"
+ },
+ "13901": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -8.5"
+ },
+ "13902": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 9.5"
+ },
+ "13903": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -9.5"
+ },
+ "13904": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 10.5"
+ },
+ "13905": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -10.5"
+ },
+ "13906": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 40.5"
+ },
+ "13907": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 40.5"
+ },
+ "13908": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 375,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 73"
+ },
+ "13909": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 375,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 73"
+ },
+ "13910": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 73.5"
+ },
+ "13911": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 376,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 73.5"
+ },
+ "13912": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 377,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 74"
+ },
+ "13913": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 377,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 74"
+ },
+ "13914": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 41.5"
+ },
+ "13915": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 41.5"
+ },
+ "13916": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 74.5"
+ },
+ "13917": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 74.5"
+ },
+ "13918": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 21.5"
+ },
+ "13919": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -21.5"
+ },
+ "13920": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 22"
+ },
+ "13921": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 430,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -22"
+ },
+ "13922": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 22.5"
+ },
+ "13923": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -22.5"
+ },
+ "13924": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 23"
+ },
+ "13925": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 427,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -23"
+ },
+ "13926": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 23.5"
+ },
+ "13927": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -23.5"
+ },
+ "13928": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 24"
+ },
+ "13929": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 432,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 -24"
+ },
+ "13930": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 36.5"
+ },
+ "13931": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 36.5"
+ },
+ "13932": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 37.5"
+ },
+ "13933": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 37.5"
+ },
+ "13934": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 3.5"
+ },
+ "13935": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -3.5"
+ },
+ "13936": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 41.5"
+ },
+ "13937": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 41.5"
+ },
+ "13938": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -12"
+ },
+ "13939": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 12"
+ },
+ "13940": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 38"
+ },
+ "13941": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 38"
+ },
+ "13942": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -12.5"
+ },
+ "13943": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 12.5"
+ },
+ "13944": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 37.5"
+ },
+ "13945": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 37.5"
+ },
+ "13946": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 12.5"
+ },
+ "13947": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 12.5"
+ },
+ "13948": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -13"
+ },
+ "13949": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 13"
+ },
+ "13950": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 37"
+ },
+ "13951": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 37"
+ },
+ "13952": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -22.5"
+ },
+ "13953": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 22.5"
+ },
+ "13954": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 11.5"
+ },
+ "13955": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -11.5"
+ },
+ "13956": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 12"
+ },
+ "13957": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -12"
+ },
+ "13958": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 12.5"
+ },
+ "13959": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -12.5"
+ },
+ "13960": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 38"
+ },
+ "13961": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 38"
+ },
+ "13962": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 37.5"
+ },
+ "13963": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 37.5"
+ },
+ "13964": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 12.5"
+ },
+ "13965": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 12.5"
+ },
+ "13966": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 13"
+ },
+ "13967": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -13"
+ },
+ "13968": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 13.5"
+ },
+ "13969": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -13.5"
+ },
+ "13970": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 37"
+ },
+ "13971": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 37"
+ },
+ "13972": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 36.5"
+ },
+ "13973": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 36.5"
+ },
+ "13974": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 11.5"
+ },
+ "13975": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 11.5"
+ },
+ "13976": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 23"
+ },
+ "13977": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 427,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -23"
+ },
+ "13978": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 28"
+ },
+ "13979": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 28"
+ },
+ "13980": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 2.5"
+ },
+ "13981": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -2.5"
+ },
+ "13982": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 3.5"
+ },
+ "13983": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -3.5"
+ },
+ "13984": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 49.5"
+ },
+ "13985": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 49.5"
+ },
+ "13986": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 -3.5"
+ },
+ "13987": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 3.5"
+ },
+ "13988": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 -4.5"
+ },
+ "13989": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 4.5"
+ },
+ "13990": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 1 Over 7.5"
+ },
+ "13991": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 1 Under 7.5"
+ },
+ "13992": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 2 Over 4.5"
+ },
+ "13993": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 2 Under 4.5"
+ },
+ "13994": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 1 Over 8.5"
+ },
+ "13995": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 1 Under 8.5"
+ },
+ "13996": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 2 Over 3.5"
+ },
+ "13997": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 2 Under 3.5"
+ },
+ "13998": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 16.5"
+ },
+ "13999": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 16.5"
+ },
+ "14000": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 7.5"
+ },
+ "14001": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 7.5"
+ },
+ "14002": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 60"
+ },
+ "14003": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 60"
+ },
+ "14004": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 27"
+ },
+ "14005": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 27"
+ },
+ "14006": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 445,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -41.5"
+ },
+ "14007": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 41.5"
+ },
+ "14008": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 40,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -21"
+ },
+ "14009": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 21"
+ },
+ "14010": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -20.5"
+ },
+ "14011": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 20.5"
+ },
+ "14012": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 430,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -22"
+ },
+ "14013": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 22"
+ },
+ "14014": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -21.5"
+ },
+ "14015": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 21.5"
+ },
+ "14016": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -22.5"
+ },
+ "14017": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 22.5"
+ },
+ "14018": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 432,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -24"
+ },
+ "14019": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 24"
+ },
+ "14020": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -23.5"
+ },
+ "14021": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 23.5"
+ },
+ "14022": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 427,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -23"
+ },
+ "14023": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 23"
+ },
+ "14024": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -24.5"
+ },
+ "14025": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 24.5"
+ },
+ "14026": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 25.5"
+ },
+ "14027": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 25.5"
+ },
+ "14028": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 57.5"
+ },
+ "14029": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 57.5"
+ },
+ "14030": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 34.5"
+ },
+ "14031": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 34.5"
+ },
+ "14032": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 19.5"
+ },
+ "14033": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -19.5"
+ },
+ "14034": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 20"
+ },
+ "14035": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 38,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -20"
+ },
+ "14036": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 20.5"
+ },
+ "14037": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -20.5"
+ },
+ "14038": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 21"
+ },
+ "14039": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 40,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -21"
+ },
+ "14040": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 20"
+ },
+ "14041": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 20"
+ },
+ "14042": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 20.5"
+ },
+ "14043": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 20.5"
+ },
+ "14044": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 21"
+ },
+ "14045": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 21"
+ },
+ "14046": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 17.5"
+ },
+ "14047": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 17.5"
+ },
+ "14048": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 17"
+ },
+ "14049": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 17"
+ },
+ "14050": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 16.5"
+ },
+ "14051": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 16.5"
+ },
+ "14052": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 5.5"
+ },
+ "14053": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 5.5"
+ },
+ "14054": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 4.5"
+ },
+ "14055": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 4.5"
+ },
+ "14056": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 12.5"
+ },
+ "14057": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 12.5"
+ },
+ "14058": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 13"
+ },
+ "14059": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -13"
+ },
+ "14060": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 13.5"
+ },
+ "14061": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -13.5"
+ },
+ "14062": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 14"
+ },
+ "14063": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 -14"
+ },
+ "14064": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -12"
+ },
+ "14065": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 12"
+ },
+ "14066": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 65"
+ },
+ "14067": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 65"
+ },
+ "14068": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 66"
+ },
+ "14069": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 66"
+ },
+ "14070": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -25.5"
+ },
+ "14071": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 25.5"
+ },
+ "14072": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -23.5"
+ },
+ "14073": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 23.5"
+ },
+ "14074": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 4.5"
+ },
+ "14075": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -4.5"
+ },
+ "14076": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -21.5"
+ },
+ "14077": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 21.5"
+ },
+ "14078": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 21.5"
+ },
+ "14079": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -21.5"
+ },
+ "14080": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 22"
+ },
+ "14081": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 430,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -22"
+ },
+ "14082": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 22.5"
+ },
+ "14083": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -22.5"
+ },
+ "14084": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 1"
+ },
+ "14085": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 1"
+ },
+ "14086": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 0.5"
+ },
+ "14087": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 0.5"
+ },
+ "14088": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 12.5"
+ },
+ "14089": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 12.5"
+ },
+ "14090": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -14"
+ },
+ "14091": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 14"
+ },
+ "14092": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Over 10.5"
+ },
+ "14093": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Under 10.5"
+ },
+ "14094": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 36"
+ },
+ "14095": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 36"
+ },
+ "14096": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -14.5"
+ },
+ "14097": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 14.5"
+ },
+ "14098": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 35.5"
+ },
+ "14099": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 35.5"
+ },
+ "14100": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 -15"
+ },
+ "14101": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 15"
+ },
+ "14102": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 35"
+ },
+ "14103": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 35"
+ },
+ "14104": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Over 9.5"
+ },
+ "14105": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Individual Total Point Team 2 Under 9.5"
+ },
+ "14106": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -27.5"
+ },
+ "14107": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 27.5"
+ },
+ "14108": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -25.5"
+ },
+ "14109": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 25.5"
+ },
+ "14110": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 46.5"
+ },
+ "14111": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 46.5"
+ },
+ "14112": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 405,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 87"
+ },
+ "14113": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 405,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 87"
+ },
+ "14114": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -18.5"
+ },
+ "14115": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 18.5"
+ },
+ "14116": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -17.5"
+ },
+ "14117": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 17.5"
+ },
+ "14118": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 511,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -49.5"
+ },
+ "14119": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 49.5"
+ },
+ "14120": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 447,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -42.5"
+ },
+ "14121": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 42.5"
+ },
+ "14122": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 449,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -43.5"
+ },
+ "14123": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 43.5"
+ },
+ "14124": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 512,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -50.5"
+ },
+ "14125": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 50.5"
+ },
+ "14126": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 485,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -44.5"
+ },
+ "14127": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 44.5"
+ },
+ "14128": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -24.5"
+ },
+ "14129": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 24.5"
+ },
+ "14130": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -19.5"
+ },
+ "14131": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 19.5"
+ },
+ "14132": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -12.5"
+ },
+ "14133": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 12.5"
+ },
+ "14134": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -19.5"
+ },
+ "14135": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 19.5"
+ },
+ "14136": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 66,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "4th Set Winner of match Set 1"
+ },
+ "14137": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 66,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "4th Set Winner of match Set 2"
+ },
+ "14138": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 63,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Winner of match Set 1"
+ },
+ "14139": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 63,
+ "gameTypeId": 87,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Winner of match Set 2"
+ },
+ "14140": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 660,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 13 Winner of match Game 1"
+ },
+ "14141": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 660,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 13 Winner of match Game 2"
+ },
+ "14142": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 643,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 10 Winner of match Game 1"
+ },
+ "14143": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 643,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 10 Winner of match Game 2"
+ },
+ "14144": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 34.5"
+ },
+ "14145": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 476,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -34.5"
+ },
+ "14146": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 644,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 11 Winner of match Game 1"
+ },
+ "14147": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 644,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 11 Winner of match Game 2"
+ },
+ "14148": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 654,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 9 Winner of match Game 1"
+ },
+ "14149": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 654,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 9 Winner of match Game 2"
+ },
+ "14150": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 645,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 12 Winner of match Game 1"
+ },
+ "14151": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 645,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 12 Winner of match Game 2"
+ },
+ "14152": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 45.5"
+ },
+ "14153": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 45.5"
+ },
+ "14154": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 46.5"
+ },
+ "14155": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 46.5"
+ },
+ "14156": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 47.5"
+ },
+ "14157": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 47.5"
+ },
+ "14158": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 642,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 1 Winner of match Game 1"
+ },
+ "14159": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 642,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 1 Winner of match Game 2"
+ },
+ "14160": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 647,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 2 Winner of match Game 1"
+ },
+ "14161": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 647,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 2 Winner of match Game 2"
+ },
+ "14162": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 648,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 3 Winner of match Game 1"
+ },
+ "14163": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 648,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 3 Winner of match Game 2"
+ },
+ "14164": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 48.5"
+ },
+ "14165": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 48.5"
+ },
+ "14166": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 649,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 4 Winner of match Game 1"
+ },
+ "14167": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 649,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 4 Winner of match Game 2"
+ },
+ "14168": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 650,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 5 Winner of match Game 1"
+ },
+ "14169": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 650,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 5 Winner of match Game 2"
+ },
+ "14170": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 651,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 6 Winner of match Game 1"
+ },
+ "14171": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 651,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 6 Winner of match Game 2"
+ },
+ "14172": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 652,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 7 Winner of match Game 1"
+ },
+ "14173": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 652,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 7 Winner of match Game 2"
+ },
+ "14174": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 49.5"
+ },
+ "14175": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 49.5"
+ },
+ "14176": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 653,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 8 Winner of match Game 1"
+ },
+ "14177": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 653,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 8 Winner of match Game 2"
+ },
+ "14178": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -14.5"
+ },
+ "14179": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 14.5"
+ },
+ "14180": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 12.5"
+ },
+ "14181": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 12.5"
+ },
+ "14182": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -13"
+ },
+ "14183": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 13"
+ },
+ "14184": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 11.5"
+ },
+ "14185": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 11.5"
+ },
+ "14186": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 32"
+ },
+ "14187": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 32"
+ },
+ "14188": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 11.5"
+ },
+ "14189": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -11.5"
+ },
+ "14190": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Over 13.5"
+ },
+ "14191": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Under 13.5"
+ },
+ "14192": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 11"
+ },
+ "14193": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -11"
+ },
+ "14194": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 12"
+ },
+ "14195": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -12"
+ },
+ "14196": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Over 12.5"
+ },
+ "14197": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Individual Total Point Team 1 Under 12.5"
+ },
+ "14198": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 32"
+ },
+ "14199": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 32"
+ },
+ "14200": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 63"
+ },
+ "14201": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 63"
+ },
+ "14202": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 12.5"
+ },
+ "14203": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -12.5"
+ },
+ "14204": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Over 12.5"
+ },
+ "14205": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Under 12.5"
+ },
+ "14206": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 13.5"
+ },
+ "14207": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -13.5"
+ },
+ "14208": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Over 11.5"
+ },
+ "14209": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Under 11.5"
+ },
+ "14210": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 14"
+ },
+ "14211": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -14"
+ },
+ "14212": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Over 10.5"
+ },
+ "14213": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Under 10.5"
+ },
+ "14214": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 15"
+ },
+ "14215": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -15"
+ },
+ "14216": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Over 9.5"
+ },
+ "14217": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Individual Total Point Team 1 Under 9.5"
+ },
+ "14218": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 14.5"
+ },
+ "14219": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -14.5"
+ },
+ "14220": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 13"
+ },
+ "14221": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -13"
+ },
+ "14222": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "3rd Set Handicap Point Team 1 H1 15.5"
+ },
+ "14223": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "3rd Set Handicap Point Team 2 H2 -15.5"
+ },
+ "14224": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 34.5"
+ },
+ "14225": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 34.5"
+ },
+ "14226": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Over 13.5"
+ },
+ "14227": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Under 13.5"
+ },
+ "14228": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 11.5"
+ },
+ "14229": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 11.5"
+ },
+ "14230": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -10.5"
+ },
+ "14231": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 10.5"
+ },
+ "14232": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -10"
+ },
+ "14233": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 10"
+ },
+ "14234": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -11"
+ },
+ "14235": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 11"
+ },
+ "14236": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -11.5"
+ },
+ "14237": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 11.5"
+ },
+ "14238": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -12"
+ },
+ "14239": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 12"
+ },
+ "14240": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -12.5"
+ },
+ "14241": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 12.5"
+ },
+ "14242": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Over 10.5"
+ },
+ "14243": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Individual Total Point Team 2 Under 10.5"
+ },
+ "14244": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 42.5"
+ },
+ "14245": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 42.5"
+ },
+ "14246": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 50.5"
+ },
+ "14247": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 50.5"
+ },
+ "14248": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 27.5"
+ },
+ "14249": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 27.5"
+ },
+ "14250": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 17"
+ },
+ "14251": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 17"
+ },
+ "14252": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 16.5"
+ },
+ "14253": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 16.5"
+ },
+ "14254": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 15.5"
+ },
+ "14255": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 15.5"
+ },
+ "14256": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 16"
+ },
+ "14257": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 16"
+ },
+ "14258": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -20.5"
+ },
+ "14259": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 20.5"
+ },
+ "14260": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 21.5"
+ },
+ "14261": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 21.5"
+ },
+ "14262": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 22"
+ },
+ "14263": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 22"
+ },
+ "14264": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 22.5"
+ },
+ "14265": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 22.5"
+ },
+ "14266": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 27"
+ },
+ "14267": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 27"
+ },
+ "14268": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -13.5"
+ },
+ "14269": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 13.5"
+ },
+ "14270": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Over 45.5"
+ },
+ "14271": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Kill Team 1 Under 45.5"
+ },
+ "14272": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -16.5"
+ },
+ "14273": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 16.5"
+ },
+ "14274": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 410,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 89.5"
+ },
+ "14275": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 410,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 89.5"
+ },
+ "14276": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 413,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 90"
+ },
+ "14277": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 413,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 90"
+ },
+ "14278": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 16"
+ },
+ "14279": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 16"
+ },
+ "14280": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 409,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 89"
+ },
+ "14281": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 409,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 89"
+ },
+ "14282": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 408,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 88.5"
+ },
+ "14283": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 408,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 88.5"
+ },
+ "14284": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 407,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 88"
+ },
+ "14285": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 407,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 88"
+ },
+ "14286": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 406,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 87.5"
+ },
+ "14287": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 406,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 87.5"
+ },
+ "14288": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 405,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 87"
+ },
+ "14289": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 405,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 87"
+ },
+ "14290": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -15.5"
+ },
+ "14291": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 15.5"
+ },
+ "14292": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -18.5"
+ },
+ "14293": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 18.5"
+ },
+ "14294": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -26.5"
+ },
+ "14295": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 26.5"
+ },
+ "14296": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -17.5"
+ },
+ "14297": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 17.5"
+ },
+ "14298": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -3.5"
+ },
+ "14299": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 3.5"
+ },
+ "14300": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -2.5"
+ },
+ "14301": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 2.5"
+ },
+ "14302": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 2.5"
+ },
+ "14303": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 2.5"
+ },
+ "14304": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -1.5"
+ },
+ "14305": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 1.5"
+ },
+ "14306": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 1.5"
+ },
+ "14307": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -1.5"
+ },
+ "14308": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 13"
+ },
+ "14309": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 13"
+ },
+ "14310": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 2.5"
+ },
+ "14311": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 2.5"
+ },
+ "14312": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 10"
+ },
+ "14313": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 10"
+ },
+ "14314": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 12.5"
+ },
+ "14315": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 12.5"
+ },
+ "14316": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Over 11.5"
+ },
+ "14317": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Under 11.5"
+ },
+ "14318": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 9.5"
+ },
+ "14319": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 9.5"
+ },
+ "14320": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 10.5"
+ },
+ "14321": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 10.5"
+ },
+ "14322": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 38.5"
+ },
+ "14323": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 38.5"
+ },
+ "14324": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 39.5"
+ },
+ "14325": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 39.5"
+ },
+ "14326": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 27"
+ },
+ "14327": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 27"
+ },
+ "14328": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 758,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 283"
+ },
+ "14329": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 758,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 283"
+ },
+ "14330": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 759,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 278"
+ },
+ "14331": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 759,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 278"
+ },
+ "14332": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 760,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 282.5"
+ },
+ "14333": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 760,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 282.5"
+ },
+ "14334": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 761,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 281.5"
+ },
+ "14335": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 761,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 281.5"
+ },
+ "14336": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 762,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 281"
+ },
+ "14337": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 762,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 281"
+ },
+ "14338": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 763,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 280"
+ },
+ "14339": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 763,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 280"
+ },
+ "14340": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 764,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 278.5"
+ },
+ "14341": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 764,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 278.5"
+ },
+ "14342": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 765,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 277.5"
+ },
+ "14343": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 765,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 277.5"
+ },
+ "14344": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 766,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 280.5"
+ },
+ "14345": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 766,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 280.5"
+ },
+ "14346": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Game Over 9.5"
+ },
+ "14347": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Game Under 9.5"
+ },
+ "14348": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Game Over 8.5"
+ },
+ "14349": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Game Under 8.5"
+ },
+ "14350": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Game Over 10.5"
+ },
+ "14351": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Game Under 10.5"
+ },
+ "14352": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 655,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 1 Winner of match Game 1"
+ },
+ "14353": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 655,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 1 Winner of match Game 2"
+ },
+ "14354": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 667,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 2 Winner of match Game 1"
+ },
+ "14355": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 667,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 2 Winner of match Game 2"
+ },
+ "14356": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 678,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 3 Winner of match Game 1"
+ },
+ "14357": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 678,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 3 Winner of match Game 2"
+ },
+ "14358": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 689,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 4 Winner of match Game 1"
+ },
+ "14359": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 689,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 4 Winner of match Game 2"
+ },
+ "14360": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 646,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 13 Winner of match Game 1"
+ },
+ "14361": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 646,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 4 Game 13 Winner of match Game 2"
+ },
+ "14362": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 700,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 5 Winner of match Game 1"
+ },
+ "14363": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 700,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 5 Winner of match Game 2"
+ },
+ "14364": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 711,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 6 Winner of match Game 1"
+ },
+ "14365": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 711,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 6 Winner of match Game 2"
+ },
+ "14366": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 722,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 7 Winner of match Game 1"
+ },
+ "14367": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 722,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 7 Winner of match Game 2"
+ },
+ "14368": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 733,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 8 Winner of match Game 1"
+ },
+ "14369": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 733,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 8 Winner of match Game 2"
+ },
+ "14370": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 50.5"
+ },
+ "14371": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 50.5"
+ },
+ "14372": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 51.5"
+ },
+ "14373": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 51.5"
+ },
+ "14374": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 42.5"
+ },
+ "14375": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 42.5"
+ },
+ "14376": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 744,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 9 Winner of match Game 1"
+ },
+ "14377": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 744,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 9 Winner of match Game 2"
+ },
+ "14378": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 656,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 10 Winner of match Game 1"
+ },
+ "14379": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 656,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 10 Winner of match Game 2"
+ },
+ "14380": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 52.5"
+ },
+ "14381": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 52.5"
+ },
+ "14382": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 53.5"
+ },
+ "14383": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 53.5"
+ },
+ "14384": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 54.5"
+ },
+ "14385": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 54.5"
+ },
+ "14386": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 14.5"
+ },
+ "14387": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -14.5"
+ },
+ "14388": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 564,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Map Team 1 Over 228.5"
+ },
+ "14389": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 564,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Map Team 1 Under 228.5"
+ },
+ "14390": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 767,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Over 433.5"
+ },
+ "14391": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 767,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Map Under 433.5"
+ },
+ "14392": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 659,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Map Team 2 Over 249.5"
+ },
+ "14393": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 659,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Map Team 2 Under 249.5"
+ },
+ "14394": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Map Over 9.5"
+ },
+ "14395": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Map Under 9.5"
+ },
+ "14396": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Map Team 1 Over 5.5"
+ },
+ "14397": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Map Team 1 Under 5.5"
+ },
+ "14398": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Map Team 2 Over 5.5"
+ },
+ "14399": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Map Team 2 Under 5.5"
+ },
+ "14400": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Map Over 4.5"
+ },
+ "14401": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Map Under 4.5"
+ },
+ "14402": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Map Team 1 Over 2.5"
+ },
+ "14403": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Map Team 1 Under 2.5"
+ },
+ "14404": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Map Team 2 Over 2.5"
+ },
+ "14405": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Map Team 2 Under 2.5"
+ },
+ "14406": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 767,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Map Over 433.5"
+ },
+ "14407": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 767,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Map Under 433.5"
+ },
+ "14408": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 569,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Map Team 1 Over 232.5"
+ },
+ "14409": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 569,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Map Team 1 Under 232.5"
+ },
+ "14410": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 659,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Map Team 2 Over 249.5"
+ },
+ "14411": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 659,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Map Team 2 Under 249.5"
+ },
+ "14412": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Map Over 9.5"
+ },
+ "14413": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Map Under 9.5"
+ },
+ "14414": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Map Team 1 Over 5.5"
+ },
+ "14415": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Individual Total Map Team 1 Under 5.5"
+ },
+ "14416": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Map Team 2 Over 5.5"
+ },
+ "14417": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Individual Total Map Team 2 Under 5.5"
+ },
+ "14418": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 530,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -53.5"
+ },
+ "14419": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 53.5"
+ },
+ "14420": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Handicap Map Team 1 H1 -2.5"
+ },
+ "14421": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 202,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Handicap Map Team 2 H2 2.5"
+ },
+ "14422": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 439,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -37.5"
+ },
+ "14423": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 37.5"
+ },
+ "14424": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 9.5"
+ },
+ "14425": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -9.5"
+ },
+ "14426": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 8.5"
+ },
+ "14427": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -8.5"
+ },
+ "14428": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 10.5"
+ },
+ "14429": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -10.5"
+ },
+ "14430": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 575,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -56.5"
+ },
+ "14431": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 56.5"
+ },
+ "14432": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 493,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -46.5"
+ },
+ "14433": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 46.5"
+ },
+ "14434": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Map Team 1 H1 -2.5"
+ },
+ "14435": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Map Team 2 H2 2.5"
+ },
+ "14436": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -11.5"
+ },
+ "14437": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 11.5"
+ },
+ "14438": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 658,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 11 Winner of match Game 1"
+ },
+ "14439": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 658,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 11 Winner of match Game 2"
+ },
+ "14440": {
+ "selectionId": 10009,
+ "marketId": 19,
+ "gamePeriodId": 659,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 12 Winner of match Game 1"
+ },
+ "14441": {
+ "selectionId": 10010,
+ "marketId": 19,
+ "gamePeriodId": 659,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Set 5 Game 12 Winner of match Game 2"
+ },
+ "14442": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Game Over 12.5"
+ },
+ "14443": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Game Under 12.5"
+ },
+ "14444": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 768,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 469.5"
+ },
+ "14445": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 768,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 469.5"
+ },
+ "14446": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Over 46"
+ },
+ "14447": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 312,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Kill Under 46"
+ },
+ "14448": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 54"
+ },
+ "14449": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 54"
+ },
+ "14450": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 516,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -52.5"
+ },
+ "14451": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 52.5"
+ },
+ "14452": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 55.5"
+ },
+ "14453": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 55.5"
+ },
+ "14454": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 56.5"
+ },
+ "14455": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 56.5"
+ },
+ "14456": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 15.5"
+ },
+ "14457": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -15.5"
+ },
+ "14458": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 50,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -29.5"
+ },
+ "14459": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 29.5"
+ },
+ "14460": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 55,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -30.5"
+ },
+ "14461": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 30.5"
+ },
+ "14462": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Game Over 7.5"
+ },
+ "14463": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Game Under 7.5"
+ },
+ "14464": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 264,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 22.5"
+ },
+ "14465": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 428,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -22.5"
+ },
+ "14466": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 514,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -51.5"
+ },
+ "14467": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 51.5"
+ },
+ "14468": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 26.5"
+ },
+ "14469": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -26.5"
+ },
+ "14470": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 17.5"
+ },
+ "14471": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 28,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -17.5"
+ },
+ "14472": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 403,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 86"
+ },
+ "14473": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 403,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 86"
+ },
+ "14474": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 404,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 86.5"
+ },
+ "14475": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 404,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 86.5"
+ },
+ "14476": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 85.5"
+ },
+ "14477": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 85.5"
+ },
+ "14478": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 401,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 85"
+ },
+ "14479": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 401,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 85"
+ },
+ "14480": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 84.5"
+ },
+ "14481": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 84.5"
+ },
+ "14482": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 399,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 84"
+ },
+ "14483": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 399,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 84"
+ },
+ "14484": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 397,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 83"
+ },
+ "14485": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 397,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 83"
+ },
+ "14486": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 83.5"
+ },
+ "14487": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 83.5"
+ },
+ "14488": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 82.5"
+ },
+ "14489": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 82.5"
+ },
+ "14490": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 395,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 82"
+ },
+ "14491": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 395,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 82"
+ },
+ "14492": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 5.5"
+ },
+ "14493": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 -5.5"
+ },
+ "14494": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 6.5"
+ },
+ "14495": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 -6.5"
+ },
+ "14496": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 521,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -47.5"
+ },
+ "14497": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 47.5"
+ },
+ "14498": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 58"
+ },
+ "14499": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 58"
+ },
+ "14500": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 32"
+ },
+ "14501": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 32"
+ },
+ "14502": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 54"
+ },
+ "14503": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 332,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 54"
+ },
+ "14504": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 13.5"
+ },
+ "14505": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -13.5"
+ },
+ "14506": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 53"
+ },
+ "14507": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 330,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 53"
+ },
+ "14508": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 55"
+ },
+ "14509": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 55"
+ },
+ "14510": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Over 4.5"
+ },
+ "14511": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Under 4.5"
+ },
+ "14512": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Over 3.5"
+ },
+ "14513": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Under 3.5"
+ },
+ "14514": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 36.5"
+ },
+ "14515": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 36.5"
+ },
+ "14516": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 36"
+ },
+ "14517": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 36"
+ },
+ "14518": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 37"
+ },
+ "14519": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 37"
+ },
+ "14520": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 5.5"
+ },
+ "14521": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 5.5"
+ },
+ "14522": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 1.5"
+ },
+ "14523": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 1.5"
+ },
+ "14524": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 2.5"
+ },
+ "14525": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 2.5"
+ },
+ "14526": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 7"
+ },
+ "14527": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 7"
+ },
+ "14528": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 7.5"
+ },
+ "14529": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 7.5"
+ },
+ "14530": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 4.5"
+ },
+ "14531": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 4.5"
+ },
+ "14532": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 6.5"
+ },
+ "14533": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 6.5"
+ },
+ "14534": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 2.5"
+ },
+ "14535": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 2.5"
+ },
+ "14536": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 33.5"
+ },
+ "14537": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 33.5"
+ },
+ "14538": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 34.5"
+ },
+ "14539": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 34.5"
+ },
+ "14540": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 35.5"
+ },
+ "14541": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 35.5"
+ },
+ "14542": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 36.5"
+ },
+ "14543": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 36.5"
+ },
+ "14544": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 37.5"
+ },
+ "14545": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 37.5"
+ },
+ "14546": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 38.5"
+ },
+ "14547": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 38.5"
+ },
+ "14548": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Over 39.5"
+ },
+ "14549": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Kill Team 1 Under 39.5"
+ },
+ "14550": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 3.5"
+ },
+ "14551": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 3.5"
+ },
+ "14552": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 12.5"
+ },
+ "14553": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -12.5"
+ },
+ "14554": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 13.5"
+ },
+ "14555": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 -13.5"
+ },
+ "14556": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -18.5"
+ },
+ "14557": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 18.5"
+ },
+ "14558": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Kill Team 1 H1 -19.5"
+ },
+ "14559": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Kill Team 2 H2 19.5"
+ },
+ "14560": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 1.5"
+ },
+ "14561": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 1.5"
+ },
+ "14562": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 0.5"
+ },
+ "14563": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 0.5"
+ },
+ "14564": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 1.5"
+ },
+ "14565": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 1.5"
+ },
+ "14566": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 3.5"
+ },
+ "14567": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 3.5"
+ },
+ "14568": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 4"
+ },
+ "14569": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 4"
+ },
+ "14570": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 140,
+ "gameTypeId": 105,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 To Score Elder Dragon Yes"
+ },
+ "14571": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 140,
+ "gameTypeId": 105,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 2 To Score Elder Dragon No"
+ },
+ "14572": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 26"
+ },
+ "14573": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 26"
+ },
+ "14574": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 30"
+ },
+ "14575": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 30"
+ },
+ "14576": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Game Over 6.5"
+ },
+ "14577": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Game Under 6.5"
+ },
+ "14578": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Map Team 1 H1 -2.5"
+ },
+ "14579": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Map Team 2 H2 2.5"
+ },
+ "14580": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 65.5"
+ },
+ "14581": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 358,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 65.5"
+ },
+ "14582": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 63"
+ },
+ "14583": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 353,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 63"
+ },
+ "14584": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 11.5"
+ },
+ "14585": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 11.5"
+ },
+ "14586": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 13"
+ },
+ "14587": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 13"
+ },
+ "14588": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 26"
+ },
+ "14589": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 26"
+ },
+ "14590": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 1,
+ "_comment": "Extra Time Handicap Goal Team 1 H1 0.5"
+ },
+ "14591": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 3,
+ "teamPlayerId": 2,
+ "_comment": "Extra Time Handicap Goal Team 2 H2 -0.5"
+ },
+ "14592": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -13.5"
+ },
+ "14593": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 13.5"
+ },
+ "14594": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 36.5"
+ },
+ "14595": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 36.5"
+ },
+ "14596": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 11.5"
+ },
+ "14597": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 11.5"
+ },
+ "14598": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -14"
+ },
+ "14599": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 14"
+ },
+ "14600": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 36"
+ },
+ "14601": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 36"
+ },
+ "14602": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 10.5"
+ },
+ "14603": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 10.5"
+ },
+ "14604": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -15"
+ },
+ "14605": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 15"
+ },
+ "14606": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 35"
+ },
+ "14607": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 35"
+ },
+ "14608": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -14.5"
+ },
+ "14609": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 14.5"
+ },
+ "14610": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 35.5"
+ },
+ "14611": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 35.5"
+ },
+ "14612": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -15.5"
+ },
+ "14613": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 15.5"
+ },
+ "14614": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 34.5"
+ },
+ "14615": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 34.5"
+ },
+ "14616": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 9.5"
+ },
+ "14617": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 9.5"
+ },
+ "14618": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -16"
+ },
+ "14619": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 16"
+ },
+ "14620": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 34"
+ },
+ "14621": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 34"
+ },
+ "14622": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Over 8.5"
+ },
+ "14623": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Individual Total Point Team 2 Under 8.5"
+ },
+ "14624": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 27,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 -17"
+ },
+ "14625": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 223,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 17"
+ },
+ "14626": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Over 33"
+ },
+ "14627": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": None,
+ "_comment": "2nd Set Total Point Under 33"
+ },
+ "14628": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 11.5"
+ },
+ "14629": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -11.5"
+ },
+ "14630": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -13.5"
+ },
+ "14631": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 13.5"
+ },
+ "14632": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 36.5"
+ },
+ "14633": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 36.5"
+ },
+ "14634": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 662,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -57.5"
+ },
+ "14635": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 57.5"
+ },
+ "14636": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "Extra Time Total Goal Over 2"
+ },
+ "14637": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "Extra Time Total Goal Under 2"
+ },
+ "14638": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 168,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 144.5"
+ },
+ "14639": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 168,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 144.5"
+ },
+ "14640": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 169,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 145"
+ },
+ "14641": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 169,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 145"
+ },
+ "14642": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 170,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 145.5"
+ },
+ "14643": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 170,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 145.5"
+ },
+ "14644": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 171,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 146"
+ },
+ "14645": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 171,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 146"
+ },
+ "14646": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 172,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 146.5"
+ },
+ "14647": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 172,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 146.5"
+ },
+ "14648": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 173,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 147"
+ },
+ "14649": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 173,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 147"
+ },
+ "14650": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 174,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 147.5"
+ },
+ "14651": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 174,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 147.5"
+ },
+ "14652": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 175,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 148"
+ },
+ "14653": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 175,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 148"
+ },
+ "14654": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 379,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 75"
+ },
+ "14655": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 379,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 75"
+ },
+ "14656": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 176,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 148.5"
+ },
+ "14657": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 176,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 148.5"
+ },
+ "14658": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 769,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 271.5"
+ },
+ "14659": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 769,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 271.5"
+ },
+ "14660": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 770,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 272"
+ },
+ "14661": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 770,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 272"
+ },
+ "14662": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 771,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 272.5"
+ },
+ "14663": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 771,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 272.5"
+ },
+ "14664": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 772,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 273"
+ },
+ "14665": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 772,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 273"
+ },
+ "14666": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -13.5"
+ },
+ "14667": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 13.5"
+ },
+ "14668": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 28.5"
+ },
+ "14669": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 28.5"
+ },
+ "14670": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -14.5"
+ },
+ "14671": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 14.5"
+ },
+ "14672": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 202,
+ "gameTypeId": 105,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 To Score Elder Dragon Yes"
+ },
+ "14673": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 202,
+ "gameTypeId": 105,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 3 To Score Elder Dragon No"
+ },
+ "14674": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 50,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -29.5"
+ },
+ "14675": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 29.5"
+ },
+ "14676": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Over 49.5"
+ },
+ "14677": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 63,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": None,
+ "_comment": "3rd Set Total Point Under 49.5"
+ },
+ "14678": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 33,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Kill Team 1 H1 -19.5"
+ },
+ "14679": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Kill Team 2 H2 19.5"
+ },
+ "14680": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 432,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -24"
+ },
+ "14681": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 24"
+ },
+ "14682": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 41,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -25"
+ },
+ "14683": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 25"
+ },
+ "14684": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -24.5"
+ },
+ "14685": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 24.5"
+ },
+ "14686": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 42.5"
+ },
+ "14687": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 42.5"
+ },
+ "14688": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -25.5"
+ },
+ "14689": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 25.5"
+ },
+ "14690": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Over 43.5"
+ },
+ "14691": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Individual Total Point Team 1 Under 43.5"
+ },
+ "14692": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 43,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -26"
+ },
+ "14693": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 26"
+ },
+ "14694": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 -26.5"
+ },
+ "14695": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 26.5"
+ },
+ "14696": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -24.5"
+ },
+ "14697": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 24.5"
+ },
+ "14698": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -11"
+ },
+ "14699": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 11"
+ },
+ "14700": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 125,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 120"
+ },
+ "14701": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 125,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 120"
+ },
+ "14702": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 3.5"
+ },
+ "14703": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 3.5"
+ },
+ "14704": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 35"
+ },
+ "14705": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 475,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -35"
+ },
+ "14706": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 10.5"
+ },
+ "14707": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 10.5"
+ },
+ "14708": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 -7.5"
+ },
+ "14709": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 7.5"
+ },
+ "14710": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 -10.5"
+ },
+ "14711": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 10.5"
+ },
+ "14712": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 -8.5"
+ },
+ "14713": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 8.5"
+ },
+ "14714": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 -5.5"
+ },
+ "14715": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 5.5"
+ },
+ "14716": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Goal Team 1 H1 33.5"
+ },
+ "14717": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 431,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Goal Team 2 H2 -33.5"
+ },
+ "14718": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 1 Over 9.5"
+ },
+ "14719": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 1 Under 9.5"
+ },
+ "14720": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 2 Over 2.5"
+ },
+ "14721": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 2 Under 2.5"
+ },
+ "14722": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 74.5"
+ },
+ "14723": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 378,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 74.5"
+ },
+ "14724": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 379,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 75"
+ },
+ "14725": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 379,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 75"
+ },
+ "14726": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 64"
+ },
+ "14727": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 355,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 64"
+ },
+ "14728": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 13"
+ },
+ "14729": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -13"
+ },
+ "14730": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 40.5"
+ },
+ "14731": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 40.5"
+ },
+ "14732": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 30.5"
+ },
+ "14733": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 30.5"
+ },
+ "14734": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Over 6.5"
+ },
+ "14735": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Under 6.5"
+ },
+ "14736": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 2 Over 5.5"
+ },
+ "14737": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 2 Under 5.5"
+ },
+ "14738": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 27"
+ },
+ "14739": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 27"
+ },
+ "14740": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Over 27"
+ },
+ "14741": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Under 27"
+ },
+ "14742": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Over 3.5"
+ },
+ "14743": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Under 3.5"
+ },
+ "14744": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 5.5"
+ },
+ "14745": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 -5.5"
+ },
+ "14746": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 6.5"
+ },
+ "14747": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 -6.5"
+ },
+ "14748": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 49"
+ },
+ "14749": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 318,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 49"
+ },
+ "14750": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 33"
+ },
+ "14751": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 33"
+ },
+ "14752": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 12.5"
+ },
+ "14753": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -12.5"
+ },
+ "14754": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 6.5"
+ },
+ "14755": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -6.5"
+ },
+ "14756": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 5.5"
+ },
+ "14757": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -5.5"
+ },
+ "14758": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 7.5"
+ },
+ "14759": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -7.5"
+ },
+ "14760": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 476,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -34.5"
+ },
+ "14761": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 34.5"
+ },
+ "14762": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 59,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -32.5"
+ },
+ "14763": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 32.5"
+ },
+ "14764": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 57,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -31.5"
+ },
+ "14765": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 31.5"
+ },
+ "14766": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Over 15"
+ },
+ "14767": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Goal Under 15"
+ },
+ "14768": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 41,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -25"
+ },
+ "14769": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 25"
+ },
+ "14770": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -25.5"
+ },
+ "14771": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 25.5"
+ },
+ "14772": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 45,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -27"
+ },
+ "14773": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 27"
+ },
+ "14774": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -26.5"
+ },
+ "14775": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 26.5"
+ },
+ "14776": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 43,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Handicap Point Team 1 H1 -26"
+ },
+ "14777": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Handicap Point Team 2 H2 26"
+ },
+ "14778": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 437,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -38"
+ },
+ "14779": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 38"
+ },
+ "14780": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 14.5"
+ },
+ "14781": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -14.5"
+ },
+ "14782": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Over 28"
+ },
+ "14783": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Duration Minute Under 28"
+ },
+ "14784": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Over 28"
+ },
+ "14785": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 275,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Under 28"
+ },
+ "14786": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 15.5"
+ },
+ "14787": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 15.5"
+ },
+ "14788": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -27.5"
+ },
+ "14789": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 27.5"
+ },
+ "14790": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -14.5"
+ },
+ "14791": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 14.5"
+ },
+ "14792": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 16"
+ },
+ "14793": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -16"
+ },
+ "14794": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 14"
+ },
+ "14795": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -14"
+ },
+ "14796": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 16.5"
+ },
+ "14797": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 -16.5"
+ },
+ "14798": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 15.5"
+ },
+ "14799": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 15.5"
+ },
+ "14800": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Over 3.5"
+ },
+ "14801": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Under 3.5"
+ },
+ "14802": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 14.5"
+ },
+ "14803": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 14.5"
+ },
+ "14804": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Over 2.5"
+ },
+ "14805": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Under 2.5"
+ },
+ "14806": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Over 1.5"
+ },
+ "14807": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Individual Total Round Team 1 Under 1.5"
+ },
+ "14808": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Over 13.5"
+ },
+ "14809": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Round Under 13.5"
+ },
+ "14810": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Round Team 1 H1 12.5"
+ },
+ "14811": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Round Team 2 H2 -12.5"
+ },
+ "14812": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -15.5"
+ },
+ "14813": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 15.5"
+ },
+ "14814": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 43.5"
+ },
+ "14815": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 43.5"
+ },
+ "14816": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 42.5"
+ },
+ "14817": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 42.5"
+ },
+ "14818": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 521,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -47.5"
+ },
+ "14819": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 47.5"
+ },
+ "14820": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 48,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -28.5"
+ },
+ "14821": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 28.5"
+ },
+ "14822": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 48,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -28.5"
+ },
+ "14823": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 276,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 28.5"
+ },
+ "14824": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 497,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -48.5"
+ },
+ "14825": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 48.5"
+ },
+ "14826": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 14"
+ },
+ "14827": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -14"
+ },
+ "14828": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 36"
+ },
+ "14829": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 36"
+ },
+ "14830": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 10.5"
+ },
+ "14831": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 10.5"
+ },
+ "14832": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 14.5"
+ },
+ "14833": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -14.5"
+ },
+ "14834": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 15"
+ },
+ "14835": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -15"
+ },
+ "14836": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 35.5"
+ },
+ "14837": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 35.5"
+ },
+ "14838": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 35"
+ },
+ "14839": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 35"
+ },
+ "14840": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 15.5"
+ },
+ "14841": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -15.5"
+ },
+ "14842": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 16"
+ },
+ "14843": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 -16"
+ },
+ "14844": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 34.5"
+ },
+ "14845": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 34.5"
+ },
+ "14846": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 34"
+ },
+ "14847": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 34"
+ },
+ "14848": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 9.5"
+ },
+ "14849": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 9.5"
+ },
+ "14850": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Over 27"
+ },
+ "14851": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Duration Minute Under 27"
+ },
+ "14852": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 24"
+ },
+ "14853": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 432,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -24"
+ },
+ "14854": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 2 Over 10.5"
+ },
+ "14855": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 2 Under 10.5"
+ },
+ "14856": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 13"
+ },
+ "14857": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 13"
+ },
+ "14858": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Over 13.5"
+ },
+ "14859": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Corner Under 13.5"
+ },
+ "14860": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Over 4"
+ },
+ "14861": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Goal Team 1 Under 4"
+ },
+ "14862": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 15.5"
+ },
+ "14863": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -15.5"
+ },
+ "14864": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 12.5"
+ },
+ "14865": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -12.5"
+ },
+ "14866": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Over 13.5"
+ },
+ "14867": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Under 13.5"
+ },
+ "14868": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 55,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -30.5"
+ },
+ "14869": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 30.5"
+ },
+ "14870": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 57,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -31.5"
+ },
+ "14871": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 31.5"
+ },
+ "14872": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "2nd Set Handicap Point Team 1 H1 12.5"
+ },
+ "14873": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 59,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "2nd Set Handicap Point Team 2 H2 -12.5"
+ },
+ "14874": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 9"
+ },
+ "14875": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -9"
+ },
+ "14876": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 21"
+ },
+ "14877": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 261,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 21"
+ },
+ "14878": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 773,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 16765"
+ },
+ "14879": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 773,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 16765"
+ },
+ "14880": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 483,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -45.5"
+ },
+ "14881": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 45.5"
+ },
+ "14882": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 1,
+ "_comment": "Extra Time Handicap Goal Team 1 H1 1"
+ },
+ "14883": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 2,
+ "_comment": "Extra Time Handicap Goal Team 2 H2 -1"
+ },
+ "14884": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 506,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 129"
+ },
+ "14885": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 506,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 129"
+ },
+ "14886": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 113,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 115"
+ },
+ "14887": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 113,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 115"
+ },
+ "14888": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 18"
+ },
+ "14889": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 233,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 18"
+ },
+ "14890": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 16"
+ },
+ "14891": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 16"
+ },
+ "14892": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 51"
+ },
+ "14893": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 326,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 51"
+ },
+ "14894": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Over 26.5"
+ },
+ "14895": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": None,
+ "_comment": "4th Quarter Total Point Under 26.5"
+ },
+ "14896": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Over 3.5"
+ },
+ "14897": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Individual Total Point Team 2 Under 3.5"
+ },
+ "14898": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Over 4.5"
+ },
+ "14899": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Under 4.5"
+ },
+ "14900": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Over 16.5"
+ },
+ "14901": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Under 16.5"
+ },
+ "14902": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Over 3.5"
+ },
+ "14903": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Under 3.5"
+ },
+ "14904": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 7"
+ },
+ "14905": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 7"
+ },
+ "14906": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -13.5"
+ },
+ "14907": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 13.5"
+ },
+ "14908": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 511,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -49.5"
+ },
+ "14909": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 49.5"
+ },
+ "14910": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 512,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -50.5"
+ },
+ "14911": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 50.5"
+ },
+ "14912": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 524,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -58.5"
+ },
+ "14913": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 58.5"
+ },
+ "14914": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 11.5"
+ },
+ "14915": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -11.5"
+ },
+ "14916": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 12"
+ },
+ "14917": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -12"
+ },
+ "14918": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Over 12.5"
+ },
+ "14919": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Individual Total Point Team 1 Under 12.5"
+ },
+ "14920": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 13"
+ },
+ "14921": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -13"
+ },
+ "14922": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 12.5"
+ },
+ "14923": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 -12.5"
+ },
+ "14924": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 33.5"
+ },
+ "14925": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 33.5"
+ },
+ "14926": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 110,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Century Over 4.5"
+ },
+ "14927": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 110,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Century Under 4.5"
+ },
+ "14928": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 14"
+ },
+ "14929": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 14"
+ },
+ "14930": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 14"
+ },
+ "14931": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 14"
+ },
+ "14932": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Over 13.5"
+ },
+ "14933": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "3rd Quarter Total Point Under 13.5"
+ },
+ "14934": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 472,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 91"
+ },
+ "14935": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 472,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 91"
+ },
+ "14936": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 48.5"
+ },
+ "14937": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 48.5"
+ },
+ "14938": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 415,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 91.5"
+ },
+ "14939": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 415,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 91.5"
+ },
+ "14940": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 18.5"
+ },
+ "14941": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 30,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -18.5"
+ },
+ "14942": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 13.5"
+ },
+ "14943": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -13.5"
+ },
+ "14944": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 12.5"
+ },
+ "14945": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 12.5"
+ },
+ "14946": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 13.5"
+ },
+ "14947": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 13.5"
+ },
+ "14948": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 13"
+ },
+ "14949": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 13"
+ },
+ "14950": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Over 8.5"
+ },
+ "14951": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Under 8.5"
+ },
+ "14952": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 64,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 -6"
+ },
+ "14953": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 344,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 6"
+ },
+ "14954": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 -6.5"
+ },
+ "14955": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 6.5"
+ },
+ "14956": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 24"
+ },
+ "14957": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 24"
+ },
+ "14958": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 13.5"
+ },
+ "14959": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 13.5"
+ },
+ "14960": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 -7"
+ },
+ "14961": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 7"
+ },
+ "14962": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Over 9.5"
+ },
+ "14963": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Goal Team 2 Under 9.5"
+ },
+ "14964": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Over 14"
+ },
+ "14965": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": None,
+ "_comment": "Game Total Goal Under 14"
+ },
+ "14966": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Game Team 1 H1 -16.5"
+ },
+ "14967": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Game Team 2 H2 16.5"
+ },
+ "14968": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Over 16"
+ },
+ "14969": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Individual Total Point Team 1 Under 16"
+ },
+ "14970": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 -9.5"
+ },
+ "14971": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 9.5"
+ },
+ "14972": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 14.5"
+ },
+ "14973": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 14.5"
+ },
+ "14974": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Round Team 1 H1 -12.5"
+ },
+ "14975": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Round Team 2 H2 12.5"
+ },
+ "14976": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Over 1.5"
+ },
+ "14977": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Under 1.5"
+ },
+ "14978": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Over 13.5"
+ },
+ "14979": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Round Under 13.5"
+ },
+ "14980": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Over 35"
+ },
+ "14981": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Point Under 35"
+ },
+ "14982": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -8.5"
+ },
+ "14983": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 8.5"
+ },
+ "14984": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Over 6.5"
+ },
+ "14985": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Under 6.5"
+ },
+ "14986": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -9.5"
+ },
+ "14987": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 9.5"
+ },
+ "14988": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 20.5"
+ },
+ "14989": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 20.5"
+ },
+ "14990": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Over 5.5"
+ },
+ "14991": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Under 5.5"
+ },
+ "14992": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -9"
+ },
+ "14993": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 9"
+ },
+ "14994": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -10"
+ },
+ "14995": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 10"
+ },
+ "14996": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 20"
+ },
+ "14997": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 259,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 20"
+ },
+ "14998": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Over 4.5"
+ },
+ "14999": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Under 4.5"
+ },
+ "15000": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -11"
+ },
+ "15001": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 11"
+ },
+ "15002": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 19"
+ },
+ "15003": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 254,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 19"
+ },
+ "15004": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -11.5"
+ },
+ "15005": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 11.5"
+ },
+ "15006": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 18.5"
+ },
+ "15007": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 18.5"
+ },
+ "15008": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Over 3.5"
+ },
+ "15009": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Individual Total Point Team 2 Under 3.5"
+ },
+ "15010": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 33"
+ },
+ "15011": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 33"
+ },
+ "15012": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -12"
+ },
+ "15013": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 12"
+ },
+ "15014": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 26.5"
+ },
+ "15015": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 26.5"
+ },
+ "15016": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -12.5"
+ },
+ "15017": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 12.5"
+ },
+ "15018": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Over 22"
+ },
+ "15019": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Game Team 2 Under 22"
+ },
+ "15020": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -14"
+ },
+ "15021": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 14"
+ },
+ "15022": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 36"
+ },
+ "15023": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 36"
+ },
+ "15024": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Over 10.5"
+ },
+ "15025": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Under 10.5"
+ },
+ "15026": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -15"
+ },
+ "15027": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 15"
+ },
+ "15028": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 35"
+ },
+ "15029": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 35"
+ },
+ "15030": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 24,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -15.5"
+ },
+ "15031": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 15.5"
+ },
+ "15032": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 34.5"
+ },
+ "15033": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 34.5"
+ },
+ "15034": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Over 9.5"
+ },
+ "15035": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Individual Total Point Team 2 Under 9.5"
+ },
+ "15036": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 17,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -12"
+ },
+ "15037": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 123,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 12"
+ },
+ "15038": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 50.5"
+ },
+ "15039": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 50.5"
+ },
+ "15040": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 49.5"
+ },
+ "15041": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 49.5"
+ },
+ "15042": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -11"
+ },
+ "15043": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 11"
+ },
+ "15044": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Over 2.5"
+ },
+ "15045": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Kill Team 1 Under 2.5"
+ },
+ "15046": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 514,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -51.5"
+ },
+ "15047": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 51.5"
+ },
+ "15048": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 444,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -35.5"
+ },
+ "15049": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 35.5"
+ },
+ "15050": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 449,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -43.5"
+ },
+ "15051": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 43.5"
+ },
+ "15052": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Over 3.5"
+ },
+ "15053": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Kill Team 2 Under 3.5"
+ },
+ "15054": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 -6.5"
+ },
+ "15055": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 6.5"
+ },
+ "15056": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 -8.5"
+ },
+ "15057": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 8.5"
+ },
+ "15058": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 -5.5"
+ },
+ "15059": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 5.5"
+ },
+ "15060": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Over 2.5"
+ },
+ "15061": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Under 2.5"
+ },
+ "15062": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 447,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -42.5"
+ },
+ "15063": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 42.5"
+ },
+ "15064": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 25"
+ },
+ "15065": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 25"
+ },
+ "15066": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 2 Over 5.5"
+ },
+ "15067": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 2 Under 5.5"
+ },
+ "15068": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 -6.5"
+ },
+ "15069": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 6.5"
+ },
+ "15070": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Over 0.5"
+ },
+ "15071": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 73,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Round Team 2 Under 0.5"
+ },
+ "15072": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 1 Over 2.5"
+ },
+ "15073": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 1 Under 2.5"
+ },
+ "15074": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 2 Over 9.5"
+ },
+ "15075": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 2 Under 9.5"
+ },
+ "15076": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 -7.5"
+ },
+ "15077": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 7.5"
+ },
+ "15078": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 -10.5"
+ },
+ "15079": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 10.5"
+ },
+ "15080": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 -9.5"
+ },
+ "15081": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 9.5"
+ },
+ "15082": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 1 Over 10.5"
+ },
+ "15083": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 1 Under 10.5"
+ },
+ "15084": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 57"
+ },
+ "15085": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 57"
+ },
+ "15086": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 56.5"
+ },
+ "15087": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 56.5"
+ },
+ "15088": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 516,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -52.5"
+ },
+ "15089": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 52.5"
+ },
+ "15090": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 2 Over 5.5"
+ },
+ "15091": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 2 Under 5.5"
+ },
+ "15092": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Over 5.5"
+ },
+ "15093": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Under 5.5"
+ },
+ "15094": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Over 4.5"
+ },
+ "15095": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Under 4.5"
+ },
+ "15096": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "4th Set Handicap Point Team 1 H1 -14.5"
+ },
+ "15097": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "4th Set Handicap Point Team 2 H2 14.5"
+ },
+ "15098": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Over 35.5"
+ },
+ "15099": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Point Under 35.5"
+ },
+ "15100": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 25"
+ },
+ "15101": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 25"
+ },
+ "15102": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 36"
+ },
+ "15103": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 443,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -36"
+ },
+ "15104": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 8.5"
+ },
+ "15105": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 -8.5"
+ },
+ "15106": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 1 Over 5.5"
+ },
+ "15107": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 1 Under 5.5"
+ },
+ "15108": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 8.5"
+ },
+ "15109": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 -8.5"
+ },
+ "15110": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 445,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -41.5"
+ },
+ "15111": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 41.5"
+ },
+ "15112": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 23.5"
+ },
+ "15113": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 23.5"
+ },
+ "15114": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Over 35"
+ },
+ "15115": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 292,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Shot On Goal Team 1 Under 35"
+ },
+ "15116": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 24"
+ },
+ "15117": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 24"
+ },
+ "15118": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Over 2.5"
+ },
+ "15119": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Under 2.5"
+ },
+ "15120": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Over 3.5"
+ },
+ "15121": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Under 3.5"
+ },
+ "15122": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Over 2.5"
+ },
+ "15123": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Under 2.5"
+ },
+ "15124": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Over 15.5"
+ },
+ "15125": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Under 15.5"
+ },
+ "15126": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Over 14.5"
+ },
+ "15127": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Map 3 Total Round Under 14.5"
+ },
+ "15128": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Over 1.5"
+ },
+ "15129": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 Individual Total Round Team 2 Under 1.5"
+ },
+ "15130": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 66,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 -7"
+ },
+ "15131": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 367,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 7"
+ },
+ "15132": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 8"
+ },
+ "15133": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 389,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 8"
+ },
+ "15134": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 8.5"
+ },
+ "15135": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 8.5"
+ },
+ "15136": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Over 9"
+ },
+ "15137": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Goal Under 9"
+ },
+ "15138": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Over 2.5"
+ },
+ "15139": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Under 2.5"
+ },
+ "15140": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 2 Over 9.5"
+ },
+ "15141": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 2 Under 9.5"
+ },
+ "15142": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 9.5"
+ },
+ "15143": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 -9.5"
+ },
+ "15144": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 1 H1 10.5"
+ },
+ "15145": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 - 1st Half Handicap Round Team 2 H2 -10.5"
+ },
+ "15146": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 485,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -44.5"
+ },
+ "15147": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 44.5"
+ },
+ "15148": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 40.5"
+ },
+ "15149": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 40.5"
+ },
+ "15150": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 170,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 145.5"
+ },
+ "15151": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 170,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 145.5"
+ },
+ "15152": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 172,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 146.5"
+ },
+ "15153": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 172,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 146.5"
+ },
+ "15154": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 174,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 147.5"
+ },
+ "15155": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 174,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 147.5"
+ },
+ "15156": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 176,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 148.5"
+ },
+ "15157": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 176,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 148.5"
+ },
+ "15158": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 178,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 149.5"
+ },
+ "15159": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 178,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 149.5"
+ },
+ "15160": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 3"
+ },
+ "15161": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 3"
+ },
+ "15162": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 474,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 94"
+ },
+ "15163": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 474,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 94"
+ },
+ "15164": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 50.5"
+ },
+ "15165": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 50.5"
+ },
+ "15166": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 473,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 93"
+ },
+ "15167": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 473,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 93"
+ },
+ "15168": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 416,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 93.5"
+ },
+ "15169": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 416,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 93.5"
+ },
+ "15170": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 487,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 94.5"
+ },
+ "15171": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 487,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 94.5"
+ },
+ "15172": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 520,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 95"
+ },
+ "15173": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 520,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 95"
+ },
+ "15174": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 417,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 95.5"
+ },
+ "15175": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 417,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 95.5"
+ },
+ "15176": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 531,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 96"
+ },
+ "15177": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 531,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 96"
+ },
+ "15178": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 51.5"
+ },
+ "15179": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 51.5"
+ },
+ "15180": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 491,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 96.5"
+ },
+ "15181": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 491,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 96.5"
+ },
+ "15182": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 523,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 97"
+ },
+ "15183": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 523,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 97"
+ },
+ "15184": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 47.5"
+ },
+ "15185": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 47.5"
+ },
+ "15186": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 48.5"
+ },
+ "15187": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 48.5"
+ },
+ "15188": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 471,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 92"
+ },
+ "15189": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 471,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 92"
+ },
+ "15190": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 459,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 92.5"
+ },
+ "15191": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 459,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 92.5"
+ },
+ "15192": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 90,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 105.5"
+ },
+ "15193": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 90,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 105.5"
+ },
+ "15194": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 52.5"
+ },
+ "15195": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 52.5"
+ },
+ "15196": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 53.5"
+ },
+ "15197": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 53.5"
+ },
+ "15198": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 88,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 104.5"
+ },
+ "15199": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 88,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 104.5"
+ },
+ "15200": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 89,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 105"
+ },
+ "15201": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 89,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 105"
+ },
+ "15202": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 91,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 106"
+ },
+ "15203": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 91,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 106"
+ },
+ "15204": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 92,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 106.5"
+ },
+ "15205": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 92,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 106.5"
+ },
+ "15206": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 87,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 104"
+ },
+ "15207": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 87,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 104"
+ },
+ "15208": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 85,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 103"
+ },
+ "15209": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 85,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 103"
+ },
+ "15210": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 86,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 103.5"
+ },
+ "15211": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 86,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 103.5"
+ },
+ "15212": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 51.5"
+ },
+ "15213": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 51.5"
+ },
+ "15214": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 83,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 102"
+ },
+ "15215": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 83,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 102"
+ },
+ "15216": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 84,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 102.5"
+ },
+ "15217": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 84,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 102.5"
+ },
+ "15218": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 54.5"
+ },
+ "15219": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 54.5"
+ },
+ "15220": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 56"
+ },
+ "15221": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 56"
+ },
+ "15222": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Over 55.5"
+ },
+ "15223": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": None,
+ "_comment": "Game Total Shot On Goal Under 55.5"
+ },
+ "15224": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 644,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -56"
+ },
+ "15225": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 336,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 56"
+ },
+ "15226": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 643,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -55"
+ },
+ "15227": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 334,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 55"
+ },
+ "15228": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 755,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -57"
+ },
+ "15229": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 338,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 57"
+ },
+ "15230": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 756,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -58"
+ },
+ "15231": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 340,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 58"
+ },
+ "15232": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 757,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -59"
+ },
+ "15233": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 59"
+ },
+ "15234": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 774,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Point Team 1 H1 -60"
+ },
+ "15235": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Point Team 2 H2 60"
+ },
+ "15236": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Over 14.5"
+ },
+ "15237": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Map Under 14.5"
+ },
+ "15238": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 41,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -25"
+ },
+ "15239": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 25"
+ },
+ "15240": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 43,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -26"
+ },
+ "15241": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 26"
+ },
+ "15242": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -25.5"
+ },
+ "15243": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 25.5"
+ },
+ "15244": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 45,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -27"
+ },
+ "15245": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 273,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 27"
+ },
+ "15246": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 44,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -26.5"
+ },
+ "15247": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 272,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 26.5"
+ },
+ "15248": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Over 1.5"
+ },
+ "15249": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 140,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Individual Total Round Team 2 Under 1.5"
+ },
+ "15250": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 483,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -45.5"
+ },
+ "15251": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 45.5"
+ },
+ "15252": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 439,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -37.5"
+ },
+ "15253": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 37.5"
+ },
+ "15254": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 438,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -38.5"
+ },
+ "15255": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 38.5"
+ },
+ "15256": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 434,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -39.5"
+ },
+ "15257": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 298,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 39.5"
+ },
+ "15258": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 10"
+ },
+ "15259": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 -10"
+ },
+ "15260": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Over 22"
+ },
+ "15261": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 263,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Individual Total Game Team 1 Under 22"
+ },
+ "15262": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 20,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 -13.5"
+ },
+ "15263": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 13.5"
+ },
+ "15264": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 482,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -40.5"
+ },
+ "15265": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 302,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 40.5"
+ },
+ "15266": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Extra Time Total Goal Over 2.5"
+ },
+ "15267": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": None,
+ "_comment": "Extra Time Total Goal Under 2.5"
+ },
+ "15268": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "Extra Time Total Goal Over 3"
+ },
+ "15269": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 841,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 279,
+ "teamPlayerId": None,
+ "_comment": "Extra Time Total Goal Under 3"
+ },
+ "15270": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 845,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Penalty Shootout 1st Ten Total Goal Over 7.5"
+ },
+ "15271": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 845,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": None,
+ "_comment": "Penalty Shootout 1st Ten Total Goal Under 7.5"
+ },
+ "15272": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 476,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -34.5"
+ },
+ "15273": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 34.5"
+ },
+ "15274": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 59,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -32.5"
+ },
+ "15275": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 32.5"
+ },
+ "15276": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 431,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 -33.5"
+ },
+ "15277": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 33.5"
+ },
+ "15278": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 260,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 20.5"
+ },
+ "15279": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 39,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -20.5"
+ },
+ "15280": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 32.5"
+ },
+ "15281": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 59,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -32.5"
+ },
+ "15282": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 287,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 32.5"
+ },
+ "15283": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 59,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -32.5"
+ },
+ "15284": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 35.5"
+ },
+ "15285": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 444,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -35.5"
+ },
+ "15286": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 293,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 35.5"
+ },
+ "15287": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 444,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -35.5"
+ },
+ "15288": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 36.5"
+ },
+ "15289": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 442,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -36.5"
+ },
+ "15290": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 46.5"
+ },
+ "15291": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 493,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -46.5"
+ },
+ "15292": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 46.5"
+ },
+ "15293": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 493,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -46.5"
+ },
+ "15294": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 262,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 21.5"
+ },
+ "15295": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 424,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -21.5"
+ },
+ "15296": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 70,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -9"
+ },
+ "15297": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 411,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 9"
+ },
+ "15298": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 45.5"
+ },
+ "15299": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 483,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -45.5"
+ },
+ "15300": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 33.5"
+ },
+ "15301": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 431,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -33.5"
+ },
+ "15302": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 291,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 34.5"
+ },
+ "15303": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 476,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -34.5"
+ },
+ "15304": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 57.5"
+ },
+ "15305": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 339,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 57.5"
+ },
+ "15306": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Over 58.5"
+ },
+ "15307": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 341,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Game Under 58.5"
+ },
+ "15308": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 26"
+ },
+ "15309": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 26"
+ },
+ "15310": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 296,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 37.5"
+ },
+ "15311": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 439,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -37.5"
+ },
+ "15312": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 297,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 38.5"
+ },
+ "15313": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 438,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -38.5"
+ },
+ "15314": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 Handicap Map Team 1 H1 2.5"
+ },
+ "15315": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 326,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 Handicap Map Team 2 H2 -2.5"
+ },
+ "15316": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 36.5"
+ },
+ "15317": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 442,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 -36.5"
+ },
+ "15318": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 24.5"
+ },
+ "15319": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -24.5"
+ },
+ "15320": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 285,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 31.5"
+ },
+ "15321": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 57,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -31.5"
+ },
+ "15322": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Over 5.5"
+ },
+ "15323": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Under 5.5"
+ },
+ "15324": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 47.5"
+ },
+ "15325": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 521,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -47.5"
+ },
+ "15326": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 315,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 47.5"
+ },
+ "15327": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 521,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -47.5"
+ },
+ "15328": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 164,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 142.5"
+ },
+ "15329": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 164,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 142.5"
+ },
+ "15330": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 166,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 143.5"
+ },
+ "15331": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 166,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 143.5"
+ },
+ "15332": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 168,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 144.5"
+ },
+ "15333": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 168,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 144.5"
+ },
+ "15334": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 775,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 279"
+ },
+ "15335": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 775,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 279"
+ },
+ "15336": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 776,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 279.5"
+ },
+ "15337": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 776,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 279.5"
+ },
+ "15338": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 777,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 282"
+ },
+ "15339": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 777,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 282"
+ },
+ "15340": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 778,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 283.5"
+ },
+ "15341": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 778,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 283.5"
+ },
+ "15342": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 779,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 284"
+ },
+ "15343": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 779,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 284"
+ },
+ "15344": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 172,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 146.5"
+ },
+ "15345": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 172,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 146.5"
+ },
+ "15346": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 170,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 145.5"
+ },
+ "15347": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 170,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 145.5"
+ },
+ "15348": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 780,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 284.5"
+ },
+ "15349": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 780,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 284.5"
+ },
+ "15350": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 781,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 285"
+ },
+ "15351": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 781,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 285"
+ },
+ "15352": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 782,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 285.5"
+ },
+ "15353": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 782,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 285.5"
+ },
+ "15354": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 11,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Bookings Team 1 H1 -1"
+ },
+ "15355": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 75,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Bookings Team 2 H2 1"
+ },
+ "15356": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 49.5"
+ },
+ "15357": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 49.5"
+ },
+ "15358": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 337,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 56.5"
+ },
+ "15359": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 575,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -56.5"
+ },
+ "15360": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 335,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 55.5"
+ },
+ "15361": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 578,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -55.5"
+ },
+ "15362": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 333,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 54.5"
+ },
+ "15363": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 573,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -54.5"
+ },
+ "15364": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 75.5"
+ },
+ "15365": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 75.5"
+ },
+ "15366": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 381,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 76"
+ },
+ "15367": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 381,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 76"
+ },
+ "15368": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 76.5"
+ },
+ "15369": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 76.5"
+ },
+ "15370": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 383,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 77"
+ },
+ "15371": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 383,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 77"
+ },
+ "15372": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 77.5"
+ },
+ "15373": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 77.5"
+ },
+ "15374": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 385,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 78"
+ },
+ "15375": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 385,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 78"
+ },
+ "15376": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 78.5"
+ },
+ "15377": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 78.5"
+ },
+ "15378": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 79.5"
+ },
+ "15379": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 79.5"
+ },
+ "15380": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 387,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 79"
+ },
+ "15381": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 387,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 79"
+ },
+ "15382": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 391,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 80"
+ },
+ "15383": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 391,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 80"
+ },
+ "15384": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 80.5"
+ },
+ "15385": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 80.5"
+ },
+ "15386": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 393,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 81"
+ },
+ "15387": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 393,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 81"
+ },
+ "15388": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 81.5"
+ },
+ "15389": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 81.5"
+ },
+ "15390": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 43.5"
+ },
+ "15391": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 43.5"
+ },
+ "15392": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 395,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 82"
+ },
+ "15393": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 395,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 82"
+ },
+ "15394": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 82.5"
+ },
+ "15395": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 82.5"
+ },
+ "15396": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 397,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 83"
+ },
+ "15397": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 397,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 83"
+ },
+ "15398": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 83.5"
+ },
+ "15399": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 398,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 83.5"
+ },
+ "15400": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 399,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 84"
+ },
+ "15401": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 399,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 84"
+ },
+ "15402": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 84.5"
+ },
+ "15403": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 400,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 84.5"
+ },
+ "15404": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 401,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 85"
+ },
+ "15405": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 401,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 85"
+ },
+ "15406": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Over 85.5"
+ },
+ "15407": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 402,
+ "teamPlayerId": None,
+ "_comment": "1st Quarter Total Point Under 85.5"
+ },
+ "15408": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 331,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 53.5"
+ },
+ "15409": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 530,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -53.5"
+ },
+ "15410": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Over 2.5"
+ },
+ "15411": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Individual Total Kill Team 2 Under 2.5"
+ },
+ "15412": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Over 11.5"
+ },
+ "15413": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Individual Total Point Team 1 Under 11.5"
+ },
+ "15414": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 Handicap Kill Team 1 H1 27.5"
+ },
+ "15415": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 Handicap Kill Team 2 H2 -27.5"
+ },
+ "15416": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 329,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 52.5"
+ },
+ "15417": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 516,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -52.5"
+ },
+ "15418": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 15"
+ },
+ "15419": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 15"
+ },
+ "15420": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 48.5"
+ },
+ "15421": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 497,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -48.5"
+ },
+ "15422": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 319,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 49.5"
+ },
+ "15423": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 511,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -49.5"
+ },
+ "15424": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 325,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 50.5"
+ },
+ "15425": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 512,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -50.5"
+ },
+ "15426": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 317,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Handicap Map Team 1 H1 48.5"
+ },
+ "15427": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 264,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 497,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Handicap Map Team 2 H2 -48.5"
+ },
+ "15428": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 327,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Handicap Map Team 1 H1 51.5"
+ },
+ "15429": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 78,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 514,
+ "teamPlayerId": 2,
+ "_comment": "Map 1 Handicap Map Team 2 H2 -51.5"
+ },
+ "15430": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -10"
+ },
+ "15431": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 10"
+ },
+ "15432": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 79.5"
+ },
+ "15433": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 79.5"
+ },
+ "15434": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 80.5"
+ },
+ "15435": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 80.5"
+ },
+ "15436": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 75.5"
+ },
+ "15437": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 380,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 75.5"
+ },
+ "15438": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 381,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 76"
+ },
+ "15439": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 381,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 76"
+ },
+ "15440": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 76.5"
+ },
+ "15441": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 382,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 76.5"
+ },
+ "15442": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 383,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 77"
+ },
+ "15443": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 383,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 77"
+ },
+ "15444": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 77.5"
+ },
+ "15445": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 384,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 77.5"
+ },
+ "15446": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -15"
+ },
+ "15447": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 15"
+ },
+ "15448": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Handicap Point Team 1 H1 -14"
+ },
+ "15449": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Handicap Point Team 2 H2 14"
+ },
+ "15450": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 22,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -14.5"
+ },
+ "15451": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 158,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 14.5"
+ },
+ "15452": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 10.5"
+ },
+ "15453": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 10.5"
+ },
+ "15454": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 23,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -15"
+ },
+ "15455": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 179,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 15"
+ },
+ "15456": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 9.5"
+ },
+ "15457": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 9.5"
+ },
+ "15458": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 25,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -16"
+ },
+ "15459": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 201,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 16"
+ },
+ "15460": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 26,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -16.5"
+ },
+ "15461": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 202,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 16.5"
+ },
+ "15462": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Over 33.5"
+ },
+ "15463": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 289,
+ "teamPlayerId": None,
+ "_comment": "1st Set Total Point Under 33.5"
+ },
+ "15464": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Over 8.5"
+ },
+ "15465": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Individual Total Point Team 2 Under 8.5"
+ },
+ "15466": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 783,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 286.5"
+ },
+ "15467": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 783,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 286.5"
+ },
+ "15468": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 96,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Map Team 1 H1 -4.5"
+ },
+ "15469": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 69,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Map Team 2 H2 4.5"
+ },
+ "15470": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 24"
+ },
+ "15471": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 24"
+ },
+ "15472": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Game Over 9.5"
+ },
+ "15473": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Game Under 9.5"
+ },
+ "15474": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Game Over 8.5"
+ },
+ "15475": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Game Under 8.5"
+ },
+ "15476": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Game Over 10.5"
+ },
+ "15477": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Game Under 10.5"
+ },
+ "15478": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Game Over 12.5"
+ },
+ "15479": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 66,
+ "gameTypeId": 54,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": None,
+ "_comment": "4th Set Total Game Under 12.5"
+ },
+ "15480": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 1 Over 5.5"
+ },
+ "15481": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Individual Total Round Team 1 Under 5.5"
+ },
+ "15482": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 52"
+ },
+ "15483": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 328,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 52"
+ },
+ "15484": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Over 26"
+ },
+ "15485": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 2,
+ "_comment": "1st Quarter Individual Total Point Team 2 Under 26"
+ },
+ "15486": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 9.5"
+ },
+ "15487": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -9.5"
+ },
+ "15488": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Over 5.5"
+ },
+ "15489": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Under 5.5"
+ },
+ "15490": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 10.5"
+ },
+ "15491": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -10.5"
+ },
+ "15492": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Over 19.5"
+ },
+ "15493": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 255,
+ "teamPlayerId": None,
+ "_comment": "5th Set Total Point Under 19.5"
+ },
+ "15494": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Over 4.5"
+ },
+ "15495": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Under 4.5"
+ },
+ "15496": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 102,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 11.5"
+ },
+ "15497": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 16,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -11.5"
+ },
+ "15498": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Over 3.5"
+ },
+ "15499": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Individual Total Point Team 1 Under 3.5"
+ },
+ "15500": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 101,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 11"
+ },
+ "15501": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 15,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -11"
+ },
+ "15502": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 77,
+ "teamPlayerId": 1,
+ "_comment": "5th Set Handicap Point Team 1 H1 10"
+ },
+ "15503": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 68,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 13,
+ "teamPlayerId": 2,
+ "_comment": "5th Set Handicap Point Team 2 H2 -10"
+ },
+ "15504": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Over 4"
+ },
+ "15505": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 1,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 299,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Individual Total Goal Team 2 Under 4"
+ },
+ "15506": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Over 1.5"
+ },
+ "15507": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 78,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 Individual Total Round Team 1 Under 1.5"
+ },
+ "15508": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 79.5"
+ },
+ "15509": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 79.5"
+ },
+ "15510": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Over 8.5"
+ },
+ "15511": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 114,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Bookings Under 8.5"
+ },
+ "15512": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Over 26"
+ },
+ "15513": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 88,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Shot On Goal Team 2 Under 26"
+ },
+ "15514": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 42.5"
+ },
+ "15515": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 42.5"
+ },
+ "15516": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Over 36.5"
+ },
+ "15517": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 295,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 Individual Total Kill Team 2 Under 36.5"
+ },
+ "15518": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 127,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 121"
+ },
+ "15519": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 127,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 121"
+ },
+ "15520": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 60"
+ },
+ "15521": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 347,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 60"
+ },
+ "15522": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 61"
+ },
+ "15523": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 349,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 61"
+ },
+ "15524": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 59"
+ },
+ "15525": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 342,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 59"
+ },
+ "15526": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Over 27.5"
+ },
+ "15527": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 1,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 1 Under 27.5"
+ },
+ "15528": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 9.5"
+ },
+ "15529": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 -9.5"
+ },
+ "15530": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 1 H1 10.5"
+ },
+ "15531": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 141,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Map 2 - 1st Half Handicap Round Team 2 H2 -10.5"
+ },
+ "15532": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 1 Over 6.5"
+ },
+ "15533": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 79,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 1 - 1st Half Individual Total Round Team 1 Under 6.5"
+ },
+ "15534": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Over 2.5"
+ },
+ "15535": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Round Team 1 Under 2.5"
+ },
+ "15536": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 9.5"
+ },
+ "15537": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 71,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 -9.5"
+ },
+ "15538": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 10.5"
+ },
+ "15539": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 -10.5"
+ },
+ "15540": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Over 3.5"
+ },
+ "15541": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 202,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 Individual Total Kill Team 1 Under 3.5"
+ },
+ "15542": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 518,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 98.5"
+ },
+ "15543": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 518,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 98.5"
+ },
+ "15544": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 492,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 97.5"
+ },
+ "15545": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 492,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 97.5"
+ },
+ "15546": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 594,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 98"
+ },
+ "15547": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 594,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 98"
+ },
+ "15548": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 595,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 99"
+ },
+ "15549": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 595,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 99"
+ },
+ "15550": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 480,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 99.5"
+ },
+ "15551": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 480,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 99.5"
+ },
+ "15552": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Over 25"
+ },
+ "15553": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Individual Total Point Team 1 Under 25"
+ },
+ "15554": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 89,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 105"
+ },
+ "15555": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 89,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 105"
+ },
+ "15556": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Over 1.5"
+ },
+ "15557": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Individual Total Round Team 1 Under 1.5"
+ },
+ "15558": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Over 2"
+ },
+ "15559": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 140,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 256,
+ "teamPlayerId": None,
+ "_comment": "Map 2 Total Kill Under 2"
+ },
+ "15560": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Over 15.5"
+ },
+ "15561": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 53,
+ "gameVarietyId": 1,
+ "pointsId": 180,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Frame Under 15.5"
+ },
+ "15562": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 422,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 37"
+ },
+ "15563": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 423,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -37"
+ },
+ "15564": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 294,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 36"
+ },
+ "15565": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 443,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -36"
+ },
+ "15566": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 436,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 38"
+ },
+ "15567": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 437,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -38"
+ },
+ "15568": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 79,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 100"
+ },
+ "15569": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 79,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 100"
+ },
+ "15570": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 80,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 100.5"
+ },
+ "15571": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 80,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 100.5"
+ },
+ "15572": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 81,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Over 101"
+ },
+ "15573": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 81,
+ "teamPlayerId": None,
+ "_comment": "2nd Half and Overtime Total Point Under 101"
+ },
+ "15574": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 33"
+ },
+ "15575": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 60,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -33"
+ },
+ "15576": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 290,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 34"
+ },
+ "15577": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 477,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -34"
+ },
+ "15578": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Over 30.5"
+ },
+ "15579": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 49,
+ "gameVarietyId": 1,
+ "pointsId": 283,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Duration Minute Under 30.5"
+ },
+ "15580": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Over 24"
+ },
+ "15581": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 53,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 1,
+ "_comment": "1st Quarter Individual Total Point Team 1 Under 24"
+ },
+ "15582": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 282,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 30"
+ },
+ "15583": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 54,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -30"
+ },
+ "15584": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 284,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 31"
+ },
+ "15585": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 56,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -31"
+ },
+ "15586": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 18,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Corner Team 1 H1 -12.5"
+ },
+ "15587": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 124,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Corner Team 2 H2 12.5"
+ },
+ "15588": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 286,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 32"
+ },
+ "15589": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 58,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 -32"
+ },
+ "15590": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Over 17.5"
+ },
+ "15591": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 66,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Leg Under 17.5"
+ },
+ "15592": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 113,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 115"
+ },
+ "15593": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 113,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 115"
+ },
+ "15594": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 119,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 118"
+ },
+ "15595": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 119,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 118"
+ },
+ "15596": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 23"
+ },
+ "15597": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 23"
+ },
+ "15598": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 23.5"
+ },
+ "15599": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 23.5"
+ },
+ "15600": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 24"
+ },
+ "15601": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 24"
+ },
+ "15602": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Over 24.5"
+ },
+ "15603": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 1,
+ "gameTypeId": 46,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": None,
+ "_comment": "Whole game Total Corner Under 24.5"
+ },
+ "15604": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 393,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 81"
+ },
+ "15605": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 393,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 81"
+ },
+ "15606": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 79.5"
+ },
+ "15607": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 388,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 79.5"
+ },
+ "15608": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 391,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 80"
+ },
+ "15609": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 391,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 80"
+ },
+ "15610": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 80.5"
+ },
+ "15611": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 80.5"
+ },
+ "15612": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 81.5"
+ },
+ "15613": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 81.5"
+ },
+ "15614": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 46.5"
+ },
+ "15615": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 313,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 46.5"
+ },
+ "15616": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 395,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 82"
+ },
+ "15617": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 395,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 82"
+ },
+ "15618": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 82.5"
+ },
+ "15619": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 82.5"
+ },
+ "15620": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 397,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 83"
+ },
+ "15621": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 397,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 83"
+ },
+ "15622": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 387,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 79"
+ },
+ "15623": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 387,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 79"
+ },
+ "15624": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 45.5"
+ },
+ "15625": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 311,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 45.5"
+ },
+ "15626": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 78.5"
+ },
+ "15627": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 386,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 78.5"
+ },
+ "15628": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 385,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 78"
+ },
+ "15629": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 385,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 78"
+ },
+ "15630": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 44.5"
+ },
+ "15631": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 309,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 44.5"
+ },
+ "15632": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 43.5"
+ },
+ "15633": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 307,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 43.5"
+ },
+ "15634": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 42.5"
+ },
+ "15635": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 305,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 42.5"
+ },
+ "15636": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Over 48"
+ },
+ "15637": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 316,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Individual Total Point Team 1 Under 48"
+ },
+ "15638": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 67,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 -7.5"
+ },
+ "15639": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 7.5"
+ },
+ "15640": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 14,
+ "teamPlayerId": 1,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 1 H1 -10.5"
+ },
+ "15641": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 203,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 78,
+ "teamPlayerId": 2,
+ "_comment": "Map 3 - 1st Half Handicap Round Team 2 H2 10.5"
+ },
+ "15642": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Over 29.5"
+ },
+ "15643": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 56,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 278,
+ "teamPlayerId": 2,
+ "_comment": "2nd Half and Overtime Individual Total Point Team 2 Under 29.5"
+ },
+ "15644": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 66"
+ },
+ "15645": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 359,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 66"
+ },
+ "15646": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 24"
+ },
+ "15647": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 24"
+ },
+ "15648": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 93,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 107"
+ },
+ "15649": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 93,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 107"
+ },
+ "15650": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 119,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 118"
+ },
+ "15651": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 119,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 118"
+ },
+ "15652": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 21,
+ "teamPlayerId": 1,
+ "_comment": "1st Set Handicap Point Team 1 H1 -14"
+ },
+ "15653": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 54,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 157,
+ "teamPlayerId": 2,
+ "_comment": "1st Set Handicap Point Team 2 H2 14"
+ },
+ "15654": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 1,
+ "_comment": "Game Handicap Goal Team 1 H1 0"
+ },
+ "15655": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 1,
+ "teamPlayerId": 2,
+ "_comment": "Game Handicap Goal Team 2 H2 0"
+ },
+ "15656": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 441,
+ "teamPlayerId": 1,
+ "_comment": "1st Half Handicap Point Team 1 H1 -39"
+ },
+ "15657": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Handicap Point Team 2 H2 39"
+ },
+ "15658": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 60,
+ "teamPlayerId": 1,
+ "_comment": "Whole game Handicap Point Team 1 H1 -33"
+ },
+ "15659": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 1,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 288,
+ "teamPlayerId": 2,
+ "_comment": "Whole game Handicap Point Team 2 H2 33"
+ },
+ "15660": {
+ "selectionId": 194,
+ "marketId": 24,
+ "gamePeriodId": 76,
+ "gameTypeId": 116,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game Who First First Score 1"
+ },
+ "15661": {
+ "selectionId": 195,
+ "marketId": 24,
+ "gamePeriodId": 76,
+ "gameTypeId": 116,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game Who First First Score 2"
+ },
+ "15662": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 76,
+ "gameTypeId": 117,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game To Score Defensive or Special Teams Touchdown Yes"
+ },
+ "15663": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 76,
+ "gameTypeId": 117,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Game To Score Defensive or Special Teams Touchdown No"
+ },
+ "15664": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 - 1st Half Handicap Round Team 1 H1 1.5"
+ },
+ "15665": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 - 1st Half Handicap Round Team 2 H2 -1.5"
+ },
+ "15666": {
+ "selectionId": 1,
+ "marketId": 1,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 - 1st Half Full time result Round 1"
+ },
+ "15667": {
+ "selectionId": 3,
+ "marketId": 1,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 - 1st Half Full time result Round 2"
+ },
+ "15668": {
+ "selectionId": 2,
+ "marketId": 1,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 - 1st Half Full time result Round X"
+ },
+ "15669": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 - 1st Half Handicap Round Team 1 H1 -1.5"
+ },
+ "15670": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 - 1st Half Handicap Round Team 2 H2 1.5"
+ },
+ "15671": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 - 1st Half Handicap Round Team 1 H1 2.5"
+ },
+ "15672": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 - 1st Half Handicap Round Team 2 H2 -2.5"
+ },
+ "15673": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 - 1st Half Handicap Round Team 1 H1 -2.5"
+ },
+ "15674": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 - 1st Half Handicap Round Team 2 H2 2.5"
+ },
+ "15675": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 - 1st Half Individual Total Round Team 1 Over 4.5"
+ },
+ "15676": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 - 1st Half Individual Total Round Team 1 Under 4.5"
+ },
+ "15677": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 - 1st Half Individual Total Round Team 2 Over 7.5"
+ },
+ "15678": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 - 1st Half Individual Total Round Team 2 Under 7.5"
+ },
+ "15679": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 - 1st Half Handicap Round Team 1 H1 5.5"
+ },
+ "15680": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 - 1st Half Handicap Round Team 2 H2 -5.5"
+ },
+ "15681": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 - 1st Half Handicap Round Team 1 H1 6.5"
+ },
+ "15682": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 - 1st Half Handicap Round Team 2 H2 -6.5"
+ },
+ "15683": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 - 1st Half Individual Total Round Team 1 Over 3.5"
+ },
+ "15684": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 - 1st Half Individual Total Round Team 1 Under 3.5"
+ },
+ "15685": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 - 1st Half Individual Total Round Team 2 Over 8.5"
+ },
+ "15686": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 - 1st Half Individual Total Round Team 2 Under 8.5"
+ },
+ "15687": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Over 18.5"
+ },
+ "15688": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Under 18.5"
+ },
+ "15689": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Over 6.5"
+ },
+ "15690": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Under 6.5"
+ },
+ "15691": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 - 1st Half Handicap Round Team 1 H1 3.5"
+ },
+ "15692": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 94,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 - 1st Half Handicap Round Team 2 H2 -3.5"
+ },
+ "15693": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 - 1st Half Handicap Round Team 1 H1 8.5"
+ },
+ "15694": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 69,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 - 1st Half Handicap Round Team 2 H2 -8.5"
+ },
+ "15695": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 - 1st Half Individual Total Round Team 1 Over 2.5"
+ },
+ "15696": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 - 1st Half Individual Total Round Team 1 Under 2.5"
+ },
+ "15697": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 - 1st Half Individual Total Round Team 2 Over 9.5"
+ },
+ "15698": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 265,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 412,
+ "teamPlayerId": 2,
+ "_comment": "Map 4 - 1st Half Individual Total Round Team 2 Under 9.5"
+ },
+ "15699": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Over 5.5"
+ },
+ "15700": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 4 Individual Total Round Team 1 Under 5.5"
+ },
+ "15701": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Over 17.5"
+ },
+ "15702": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 264,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 224,
+ "teamPlayerId": None,
+ "_comment": "Map 4 Total Round Under 17.5"
+ },
+ "15703": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 - 1st Half Handicap Round Team 1 H1 -1.5"
+ },
+ "15704": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 - 1st Half Handicap Round Team 2 H2 1.5"
+ },
+ "15705": {
+ "selectionId": 1,
+ "marketId": 1,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 - 1st Half Full time result Round 1"
+ },
+ "15706": {
+ "selectionId": 3,
+ "marketId": 1,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 - 1st Half Full time result Round 2"
+ },
+ "15707": {
+ "selectionId": 2,
+ "marketId": 1,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 - 1st Half Full time result Round X"
+ },
+ "15708": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 - 1st Half Handicap Round Team 1 H1 -2.5"
+ },
+ "15709": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 - 1st Half Handicap Round Team 2 H2 2.5"
+ },
+ "15710": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 4,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 - 1st Half Handicap Round Team 1 H1 1.5"
+ },
+ "15711": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 7,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 - 1st Half Handicap Round Team 2 H2 -1.5"
+ },
+ "15712": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 5,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 - 1st Half Handicap Round Team 1 H1 2.5"
+ },
+ "15713": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 36,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 - 1st Half Handicap Round Team 2 H2 -2.5"
+ },
+ "15714": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 - 1st Half Individual Total Round Team 1 Over 4.5"
+ },
+ "15715": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 32,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 - 1st Half Individual Total Round Team 1 Under 4.5"
+ },
+ "15716": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 - 1st Half Individual Total Round Team 2 Over 7.5"
+ },
+ "15717": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 - 1st Half Individual Total Round Team 2 Under 7.5"
+ },
+ "15718": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 322,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 - 1st Half Handicap Round Team 1 H1 5.5"
+ },
+ "15719": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 63,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 - 1st Half Handicap Round Team 2 H2 -5.5"
+ },
+ "15720": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 346,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 - 1st Half Handicap Round Team 1 H1 6.5"
+ },
+ "15721": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 65,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 - 1st Half Handicap Round Team 2 H2 -6.5"
+ },
+ "15722": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 - 1st Half Individual Total Round Team 1 Over 3.5"
+ },
+ "15723": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 6,
+ "teamPlayerId": 1,
+ "_comment": "Map 5 - 1st Half Individual Total Round Team 1 Under 3.5"
+ },
+ "15724": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 - 1st Half Individual Total Round Team 2 Over 8.5"
+ },
+ "15725": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 327,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 390,
+ "teamPlayerId": 2,
+ "_comment": "Map 5 - 1st Half Individual Total Round Team 2 Under 8.5"
+ },
+ "15726": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 99,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Over 109"
+ },
+ "15727": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 99,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Point Team 1 Under 109"
+ },
+ "15728": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 137,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Over 126"
+ },
+ "15729": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 137,
+ "teamPlayerId": 2,
+ "_comment": "Game Individual Total Point Team 2 Under 126"
+ },
+ "15730": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 65"
+ },
+ "15731": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 357,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 65"
+ },
+ "15732": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 264,
+ "gameTypeId": 105,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 To Score Elder Dragon Yes"
+ },
+ "15733": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 264,
+ "gameTypeId": 105,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 4 To Score Elder Dragon No"
+ },
+ "15734": {
+ "selectionId": 21,
+ "marketId": 11,
+ "gamePeriodId": 326,
+ "gameTypeId": 105,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 To Score Elder Dragon Yes"
+ },
+ "15735": {
+ "selectionId": 22,
+ "marketId": 11,
+ "gamePeriodId": 326,
+ "gameTypeId": 105,
+ "gameVarietyId": 1,
+ "pointsId": None,
+ "teamPlayerId": None,
+ "_comment": "Map 5 To Score Elder Dragon No"
+ },
+ "15736": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 177,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 149"
+ },
+ "15737": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 177,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 149"
+ },
+ "15738": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 178,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 149.5"
+ },
+ "15739": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 178,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 149.5"
+ },
+ "15740": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Over 41.5"
+ },
+ "15741": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 303,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Individual Total Point Team 2 Under 41.5"
+ },
+ "15742": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 181,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 150"
+ },
+ "15743": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 181,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 150"
+ },
+ "15744": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 182,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 150.5"
+ },
+ "15745": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 182,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 150.5"
+ },
+ "15746": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 185,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 152"
+ },
+ "15747": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 185,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 152"
+ },
+ "15748": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 183,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 151"
+ },
+ "15749": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 183,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 151"
+ },
+ "15750": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 184,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 151.5"
+ },
+ "15751": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 184,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 151.5"
+ },
+ "15752": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 186,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 152.5"
+ },
+ "15753": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 186,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 152.5"
+ },
+ "15754": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 187,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 153"
+ },
+ "15755": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 187,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 153"
+ },
+ "15756": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 188,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 153.5"
+ },
+ "15757": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 188,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 153.5"
+ },
+ "15758": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 189,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 154"
+ },
+ "15759": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 189,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 154"
+ },
+ "15760": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 190,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 154.5"
+ },
+ "15761": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 190,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 154.5"
+ },
+ "15762": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 191,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 155"
+ },
+ "15763": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 191,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 155"
+ },
+ "15764": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 192,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 155.5"
+ },
+ "15765": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 192,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 155.5"
+ },
+ "15766": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 81.5"
+ },
+ "15767": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 394,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 81.5"
+ },
+ "15768": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 80.5"
+ },
+ "15769": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 392,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 80.5"
+ },
+ "15770": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Over 82.5"
+ },
+ "15771": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 396,
+ "teamPlayerId": 2,
+ "_comment": "1st Half Individual Total Point Team 2 Under 82.5"
+ },
+ "15772": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 193,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 156"
+ },
+ "15773": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 193,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 156"
+ },
+ "15774": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 194,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Over 156.5"
+ },
+ "15775": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 50,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 194,
+ "teamPlayerId": None,
+ "_comment": "1st Half Total Point Under 156.5"
+ },
+ "15776": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 784,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Over 286"
+ },
+ "15777": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 76,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 784,
+ "teamPlayerId": None,
+ "_comment": "Game Total Point Under 286"
+ },
+ "15778": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 46,
+ "teamPlayerId": 1,
+ "_comment": "2nd Quarter Handicap Point Team 1 H1 -27.5"
+ },
+ "15779": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 274,
+ "teamPlayerId": 2,
+ "_comment": "2nd Quarter Handicap Point Team 2 H2 27.5"
+ },
+ "15780": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Over 18.5"
+ },
+ "15781": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 326,
+ "gameTypeId": 82,
+ "gameVarietyId": 1,
+ "pointsId": 234,
+ "teamPlayerId": None,
+ "_comment": "Map 5 Total Round Under 18.5"
+ },
+ "15782": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 19,
+ "teamPlayerId": 1,
+ "_comment": "4th Quarter Handicap Point Team 1 H1 -13"
+ },
+ "15783": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 65,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 140,
+ "teamPlayerId": 2,
+ "_comment": "4th Quarter Handicap Point Team 2 H2 13"
+ },
+ "15784": {
+ "selectionId": 15,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Goal Team 1 Over 7.5"
+ },
+ "15785": {
+ "selectionId": 16,
+ "marketId": 7,
+ "gamePeriodId": 76,
+ "gameTypeId": 1,
+ "gameVarietyId": 1,
+ "pointsId": 368,
+ "teamPlayerId": 1,
+ "_comment": "Game Individual Total Goal Team 1 Under 7.5"
+ },
+ "15786": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Over 13.5"
+ },
+ "15787": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 58,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 141,
+ "teamPlayerId": None,
+ "_comment": "2nd Quarter Total Point Under 13.5"
+ },
+ "15788": {
+ "selectionId": 9,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Over 39"
+ },
+ "15789": {
+ "selectionId": 10,
+ "marketId": 4,
+ "gamePeriodId": 78,
+ "gameTypeId": 60,
+ "gameVarietyId": 1,
+ "pointsId": 440,
+ "teamPlayerId": None,
+ "_comment": "Map 1 Total Kill Under 39"
+ },
+ "15790": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 265,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 23"
+ },
+ "15791": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 427,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -23"
+ },
+ "15792": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 268,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 24.5"
+ },
+ "15793": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 433,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -24.5"
+ },
+ "15794": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 266,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 23.5"
+ },
+ "15795": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 429,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -23.5"
+ },
+ "15796": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 267,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 24"
+ },
+ "15797": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 432,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -24"
+ },
+ "15798": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 269,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 25"
+ },
+ "15799": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 41,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -25"
+ },
+ "15800": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 270,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 25.5"
+ },
+ "15801": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 42,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -25.5"
+ },
+ "15802": {
+ "selectionId": 7,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 271,
+ "teamPlayerId": 1,
+ "_comment": "3rd Quarter Handicap Point Team 1 H1 26"
+ },
+ "15803": {
+ "selectionId": 8,
+ "marketId": 3,
+ "gamePeriodId": 62,
+ "gameTypeId": 76,
+ "gameVarietyId": 1,
+ "pointsId": 43,
+ "teamPlayerId": 2,
+ "_comment": "3rd Quarter Handicap Point Team 2 H2 -26"
+ }
+}
\ No newline at end of file
diff --git a/infinite_games/azurodictionaries/selections.py b/infinite_games/azurodictionaries/selections.py
new file mode 100644
index 0000000..c3a8061
--- /dev/null
+++ b/infinite_games/azurodictionaries/selections.py
@@ -0,0 +1,77 @@
+SELECTIONS = {
+ "1": "1",
+ "2": "X",
+ "3": "2",
+ "4": "1X",
+ "5": "12",
+ "6": "2X",
+ "7": "H1",
+ "8": "H2",
+ "9": "Over",
+ "10": "Under",
+ "11": "Over",
+ "12": "Under",
+ "13": "Over",
+ "14": "Under",
+ "15": "Over",
+ "16": "Under",
+ "17": "Yes",
+ "18": "No",
+ "19": "Yes",
+ "20": "No",
+ "21": "Yes",
+ "22": "No",
+ "23": "Yes",
+ "24": "No",
+ "25": "Yes & 1",
+ "26": "Yes & X",
+ "27": "Yes & 2",
+ "28": "No & 1",
+ "29": "No & X",
+ "30": "No & 2",
+ "31": "Yes & Over",
+ "32": "Yes & Under",
+ "33": "No & Over",
+ "34": "No & Under",
+ "35": "1 & Over",
+ "36": "1 & Under",
+ "37": "X & Over",
+ "38": "X & Under",
+ "39": "2 & Over",
+ "40": "2 & Under",
+ "41": "H1",
+ "42": "HX",
+ "43": "H2",
+ "44": "1",
+ "45": "2",
+ "46": "Neither",
+ "180": "Yes",
+ "181": "No",
+ "182": "Yes",
+ "183": "No",
+ "184": "Yes",
+ "185": "No",
+ "186": "Yes",
+ "187": "No",
+ "190": "1",
+ "191": "2",
+ "192": "Yes",
+ "193": "No",
+ "194": "1",
+ "195": "2",
+ "424": "1",
+ "425": "X",
+ "426": "2",
+ "731": "Correct Score",
+ "10000": "1/1",
+ "10001": "1/X",
+ "10002": "1/2",
+ "10003": "X/1",
+ "10004": "X/X",
+ "10005": "X/2",
+ "10006": "2/1",
+ "10007": "2/X",
+ "10008": "2/2",
+ "10009": "1",
+ "10010": "2"
+}
\ No newline at end of file
diff --git a/infinite_games/base/__init__.py b/infinite_games/base/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/ocr_subnet/base/miner.py b/infinite_games/base/miner.py
similarity index 98%
rename from ocr_subnet/base/miner.py
rename to infinite_games/base/miner.py
index 242664d..551c1fe 100644
--- a/ocr_subnet/base/miner.py
+++ b/infinite_games/base/miner.py
@@ -23,7 +23,7 @@
import bittensor as bt
-from ocr_subnet.base.neuron import BaseNeuron
+from infinite_games.base.neuron import BaseNeuron
class BaseMinerNeuron(BaseNeuron):
@@ -43,12 +43,10 @@ def __init__(self, config=None):
bt.logging.warning(
"You are allowing non-registered entities to send requests to your miner. This is a security risk."
)
-
# The axon handles request processing, allowing validators to send this miner requests.
self.axon = bt.axon(wallet=self.wallet, port=self.config.axon.port)
-
# Attach determiners which functions are called when servicing a request.
- bt.logging.info(f"Attaching forward function to miner axon.")
+ bt.logging.info(f"Attaching function to miner axon.")
self.axon.attach(
forward_fn=self.forward,
blacklist_fn=self.blacklist,
@@ -113,7 +111,6 @@ def run(self):
# Check if we should exit.
if self.should_exit:
break
-
# Sync metagraph and potentially set weights.
self.sync()
self.step += 1
diff --git a/ocr_subnet/base/neuron.py b/infinite_games/base/neuron.py
similarity index 83%
rename from ocr_subnet/base/neuron.py
rename to infinite_games/base/neuron.py
index cc1bc41..d72d3ce 100644
--- a/ocr_subnet/base/neuron.py
+++ b/infinite_games/base/neuron.py
@@ -16,16 +16,16 @@
# DEALINGS IN THE SOFTWARE.
import copy
-import typing
import bittensor as bt
from abc import ABC, abstractmethod
+
# Sync calls set weights and also resyncs the metagraph.
-from ocr_subnet.utils.config import check_config, add_args, config
-from ocr_subnet.utils.misc import ttl_get_block
-from ocr_subnet import __spec_version__ as spec_version
+from infinite_games.utils.config import check_config, add_args, config
+from infinite_games.utils.misc import ttl_get_block
+from infinite_games import __spec_version__ as spec_version
class BaseNeuron(ABC):
@@ -118,6 +118,7 @@ def sync(self):
self.resync_metagraph()
if self.should_set_weights():
+ bt.logging.info('********* SUBMIT WEIGHTS *********')
self.set_weights()
# Always save state.
@@ -150,12 +151,13 @@ def should_set_weights(self) -> bool:
# Check if enough epoch blocks have elapsed since the last epoch.
if self.config.neuron.disable_set_weights:
+ bt.logging.info('self.config.neuron.disable_set_weights enabled from cli: skip set weight')
return False
# Define appropriate logic for when set weights.
- return (
- self.block - self.metagraph.last_update[self.uid]
- ) > self.config.neuron.epoch_length
+ should_set_weight = (self.block - self.metagraph.last_update[self.uid]) > self.config.neuron.epoch_length
+ bt.logging.info(f'Weight / Current: {self.block}, Last : {self.metagraph.last_update[self.uid]} Epoch length: {self.config.neuron.epoch_length}, should set: {should_set_weight}')
+ return should_set_weight
def save_state(self):
bt.logging.warning(
@@ -166,3 +168,19 @@ def load_state(self):
bt.logging.warning(
"load_state() not implemented for this neuron. You can implement this function to load model checkpoints or other useful data."
)
+
+ def print_info(self):
+ metagraph = self.metagraph
+ self.uid = self.metagraph.hotkeys.index(self.wallet.hotkey.ss58_address)
+
+ log = (
+ "Validator | "
+ f"Step:{self.step} | "
+ f"UID:{self.uid} | "
+ f"Block:{self.block} | "
+ f"Stake:{metagraph.S[self.uid]} | "
+ f"VTrust:{metagraph.Tv[self.uid]} | "
+ f"Dividend:{metagraph.D[self.uid]} | "
+ f"Emission:{metagraph.E[self.uid]}"
+ )
+ bt.logging.info(log)
\ No newline at end of file
diff --git a/ocr_subnet/base/validator.py b/infinite_games/base/validator.py
similarity index 83%
rename from ocr_subnet/base/validator.py
rename to infinite_games/base/validator.py
index 1284ca2..c64f8b4 100644
--- a/ocr_subnet/base/validator.py
+++ b/infinite_games/base/validator.py
@@ -17,6 +17,9 @@
import copy
+import os
+import pathlib
+import requests
import torch
import asyncio
import threading
@@ -25,7 +28,11 @@
from typing import List
from traceback import print_exception
-from ocr_subnet.base.neuron import BaseNeuron
+import wandb
+
+
+from infinite_games.base.neuron import BaseNeuron
+from infinite_games import __version__
class BaseValidatorNeuron(BaseNeuron):
@@ -65,6 +72,32 @@ def __init__(self, config=None):
self.thread: threading.Thread = None
self.lock = asyncio.Lock()
+ self.USER_ID = 1610011
+ self.API_KEY = "glc_eyJvIjoiMTEzODYxOSIsIm4iOiJzdGFjay05NDcxNjEtaW50ZWdyYXRpb24tbXl0b2tlbiIsImsiOiJQYUc5OTlsNGs4STE2Mlk0bDBUY2VsUXQiLCJtIjp7InIiOiJwcm9kLWV1LXdlc3QtMiJ9fQ=="
+
+ netrc_path = pathlib.Path.home() / ".netrc"
+ wandb_api_key = os.getenv("WANDB_API_KEY")
+ if wandb_api_key is not None:
+ bt.logging.info("WANDB_API_KEY is set")
+ bt.logging.info("~/.netrc exists:", netrc_path.exists())
+
+ if wandb_api_key is None and not netrc_path.exists():
+ bt.logging.warning(
+ "WANDB_API_KEY not found in environment variables."
+ )
+
+ wandb.init(
+ project=f"ig-{self.config.netuid}-validators",
+ # entity="infinitegames",
+ config={
+ "hotkey": self.wallet.hotkey.ss58_address,
+ },
+ name=f"validator-{self.uid}-{__version__}",
+ resume="auto",
+ dir=self.config.neuron.full_path,
+ reinit=True,
+ )
+
def serve_axon(self):
"""Serve axon to enable external connections."""
@@ -172,6 +205,7 @@ def stop_run_thread(self):
"""
if self.is_running:
bt.logging.debug("Stopping validator in background thread.")
+ self.wandb_run.finish()
self.should_exit = True
self.thread.join(5)
self.is_running = False
@@ -305,6 +339,40 @@ def update_scores(self, rewards: torch.FloatTensor, uids: List[int]):
) * self.scores.to(self.device)
bt.logging.debug(f"Updated moving avg scores: {self.scores}")
+ self.send_metrics(miner_scores=list(zip(uids, rewards.tolist())))
+
+ def send_metrics(self, miner_scores=None, additional_metrics=None):
+ # scores_list = self.scores.tolist()
+ additional_metrics_string = ''
+ if additional_metrics:
+ for metric_name, metric_value in additional_metrics.items():
+ additional_metrics_string += f'summary,bar_label={metric_name},source={self.wallet.hotkey.ss58_address} metric={metric_value}\n'
+
+ miner_logs = ''
+ if miner_scores:
+
+ for miner_id, score in miner_scores:
+ miner_logs += f'miners,bar_label=weights,validator={self.wallet.hotkey.ss58_address},source={miner_id} metric={score}\n'
+
+ body = f'''
+ {additional_metrics_string}
+ summary,bar_label=globalblock,source={self.wallet.hotkey.ss58_address} metric={self.block}
+ {miner_logs}
+ '''
+
+ response = requests.post(
+ 'https://influx-prod-24-prod-eu-west-2.grafana.net/api/v1/push/influx/write',
+ headers = {
+ 'Content-Type': 'text/plain',
+ },
+ data=str(body),
+ auth=(self.USER_ID, self.API_KEY)
+ )
+
+ status_code = response.status_code
+ if status_code != 204:
+ bt.logging.error(f'*** Error sending logs! {response.content.decode("utf8")}')
+
def save_state(self):
"""Saves the state of the validator to a file."""
bt.logging.info("Saving validator state.")
diff --git a/infinite_games/events/__init__.py b/infinite_games/events/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/infinite_games/events/azuro.py b/infinite_games/events/azuro.py
new file mode 100644
index 0000000..3a463e0
--- /dev/null
+++ b/infinite_games/events/azuro.py
@@ -0,0 +1,254 @@
+
+import backoff
+import bittensor as bt
+
+import asyncio
+from datetime import datetime
+import json
+from gql import gql, Client
+from gql.transport.aiohttp import AIOHTTPTransport
+import websockets
+
+from infinite_games.azurodictionaries.outcomes import OUTCOMES
+
+from infinite_games.events.base import EventProvider, EventStatus, ProviderEvent
+
+
+class AzuroEventProvider(EventProvider):
+ def __init__(self) -> None:
+ super().__init__()
+ self.transport = AIOHTTPTransport(
+ url="https://thegraph.azuro.org/subgraphs/name/azuro-protocol/azuro-api-gnosis-v3"
+ )
+ self.client = Client(transport=self.transport, fetch_schema_from_transport=True)
+
+ self._listen_stream_url = 'wss://streams.azuro.org/v1/streams/conditions'
+ # self.ws_connection = None
+ # asyncio.create_task()
+
+ def convert_status(self, azuro_status):
+ return {
+ 'Created': EventStatus.PENDING,
+ 'Resolved': EventStatus.SETTLED,
+ 'Canceled': EventStatus.DISCARDED,
+ 'Paused': EventStatus.PENDING
+ }.get(azuro_status, EventStatus.PENDING)
+
+ async def on_update(self, ws):
+ try:
+ async for message in ws:
+ print(message)
+ except websockets.ConnectionClosed:
+ self.ws_connection = None
+
+ async def subscribe_to_condition(self, cids=[]):
+ if self.ws_connection:
+ if cids:
+ self.ws_connection.send(json.dumps(
+ {
+ "action": 'subscribe',
+ "conditionIds": cids,
+ }
+ ))
+ else:
+ bt.logging.warning('Azuro: Empty CID passed for ws subscribe')
+ else:
+ bt.logging.error('Azuro: Could not subscribe to event no WS connection found!')
+
+ async def listen_for_updates(self):
+ async for websocket in websockets.connect(
+ self._listen_stream_url
+ ):
+ self.ws_connection = websocket
+ asyncio.create_task(self.on_update(self, websocket))
+
+ @backoff.on_exception(backoff.expo, Exception, max_time=300)
+ async def get_single_event(self, event_id) -> ProviderEvent:
+ query = gql(
+ """
+ query SingleOutcome($id: ID!) {
+ outcome(id: $id) {
+ id
+ outcomeId
+ fund
+ result
+ currentOdds
+ condition {
+ id
+ conditionId
+ outcomes {
+ id
+ }
+ status
+ provider
+ game {
+ title
+ gameId
+ slug
+ startsAt
+ league {
+ name
+ slug
+ country {
+ name
+ slug
+ }
+ }
+ status
+ sport {
+ name
+ slug
+ }
+ participants {
+ image
+ name
+ }
+ }
+ }
+ }
+ }
+
+
+ """
+ )
+
+ async with self.client as session:
+
+ result = await session.execute(
+ query,
+ {
+ "id": event_id
+ }
+ )
+ if not result:
+ bt.logging.error(f'Azuro: Could not fetch event by id {event_id}')
+ return None
+ outcome = result['outcome']
+
+ if not outcome:
+ bt.logging.error(f'Azuro: Could not fetch event by id {event_id}')
+ return None
+ condition = outcome['condition']
+ game = condition['game']
+ start_date = datetime.fromtimestamp(int(game["startsAt"]))
+ event_status = condition.get('status')
+ pe = ProviderEvent(
+ event_id,
+ self.__class__.__name__,
+ game.get('title') + ' ,' + OUTCOMES[outcome['outcomeId']].get('_comment'),
+ start_date,
+ None,
+ datetime.now(),
+ self.convert_status(event_status),
+ None,
+ None,
+ {
+ 'conditionId': condition['conditionId'],
+ 'slug': game.get('slug'),
+ 'league': game.get('league')
+ }
+ )
+ return pe
+
+ @backoff.on_exception(backoff.expo, Exception, max_time=300)
+ async def sync_events(self, start_from: int = None):
+ bt.logging.info(f"Azuro: syncing events.. {start_from=} ")
+ if not start_from:
+ start_from = int(datetime.now().timestamp())
+
+ query = gql(
+ """
+ query Games($where: Game_filter!, $start: Int!, $per_page: Int!) {
+ games(
+ skip: $start
+ first: $per_page
+ where: $where
+ orderBy: startsAt
+ orderDirection: asc
+ subgraphError: allow
+ ) {
+ gameId
+ title
+ slug
+ status
+ startsAt
+ league {
+ name
+ slug
+ country {
+ name
+ slug
+ }
+ }
+ sport {
+ name
+ slug
+ }
+ participants {
+ image
+ name
+ }
+ conditions {
+ conditionId
+ isExpressForbidden
+ status
+ outcomes {
+ id
+ currentOdds
+ outcomeId
+ result
+ }
+ }
+ }
+ }
+
+
+ """
+ )
+
+ async with self.client as session:
+ result = await session.execute(
+ query,
+ {
+ "where": {
+ "status": "Created",
+ "hasActiveConditions": True,
+ "startsAt_gt": start_from
+ },
+ "start": 0, "per_page": 10
+ },
+ )
+ for game in result["games"]:
+ start_date = datetime.fromtimestamp(int(game["startsAt"]))
+ if not game.get('startsAt'):
+ bt.logging.warning(f"Azuro game {game.get('slug')} doesnt have start time, skipping..")
+ continue
+ for condition in game['conditions']:
+ event_status = condition.get('status')
+ # if not event_status != 'Canceled':
+ # bt.logging.debug(f"Azuro condition for game {game.get('slug')} condition id {condition.get('conditionId')} is {condition.get('status')}, skipping..")
+ # continue
+
+ for outcome in condition['outcomes']:
+ if outcome.get('id') is None:
+ bt.logging.error(f"{game.get('slug')} cid: {condition.get('conditionId')} outcome {outcome.get('outcomeId')} does not have id, skip..")
+ continue
+ if outcome.get('result') is not None:
+ bt.logging.debug(f"{game.get('slug')} cid: {condition.get('conditionId')} outcome {outcome.get('outcomeId')} resolved, skipping..")
+ continue
+
+ self.register_event(
+ outcome.get('id'),
+ game.get('title') + ' ,' + OUTCOMES[outcome['outcomeId']].get('_comment'),
+ start_date,
+ event_status=self.convert_status(event_status),
+ resolve_time=None,
+ answer=outcome['result'],
+ metadata={
+ 'conditionId': condition['conditionId'],
+ 'slug': game.get('slug'),
+ 'league': game.get('league')
+ }
+ )
+
+ self.subscribe_to_condition(condition.get('conditionId'))
\ No newline at end of file
diff --git a/infinite_games/events/base.py b/infinite_games/events/base.py
new file mode 100644
index 0000000..70294bd
--- /dev/null
+++ b/infinite_games/events/base.py
@@ -0,0 +1,163 @@
+
+import asyncio
+import bittensor as bt
+from dataclasses import dataclass
+from datetime import datetime
+import json
+from typing import Any, Callable, Dict, Optional
+
+
+@dataclass
+class Submission:
+ """Miner submission data"""
+
+ submitted_ts: int
+ answer: float
+
+
+class EventStatus:
+ """Generic event status"""
+ DISCARDED = 1
+ PENDING = 2
+ SETTLED = 3
+ # In case of errors
+ NOT_IMPLEMENTED = 4
+
+
+@dataclass
+class ProviderEvent:
+ event_id: str
+ event_type: str
+ description: str
+ starts: datetime
+ resolve_date: datetime
+ answer: Optional[int]
+ local_updated_at: datetime
+ status: EventStatus
+ miner_predictions: Dict[int, Submission]
+ metadata: Dict[str, Any]
+
+
+class EventProvider:
+
+ def __init__(self) -> None:
+ self.registered_events: Dict[str, ProviderEvent] = {
+
+ }
+ # This hook called both when refetching events from provider
+ self.event_update_hook_fn: Optional[Callable[[ProviderEvent], None]] = None
+ self.listen_delay_seconds = 5
+ # loop = asyncio.get_event_loop()
+ # loop.create_task(self._listen_events())
+
+ async def sync_events():
+ raise NotImplemented()
+
+ async def listen_events(self):
+ """In base implementation we try to update each registered event via get_single_event"""
+ while True:
+ bt.logging.info(f'Update events: {len(self.registered_events.items())}')
+ for event_id, event_data in self.registered_events.items():
+ if event_data.status == EventStatus.PENDING:
+ # TODO: Add support for id_in query depending on provider, azuro supports that
+ event_data: ProviderEvent = await self.get_single_event(event_data.event_id)
+ self.update_event(event_data.event_id, event_data.description, event_data.starts,
+ event_data.status, event_data.resolve_date, event_data.metadata)
+ await asyncio.sleep(self.listen_delay_seconds)
+
+ async def get_single_event(event_id) -> ProviderEvent:
+ raise NotImplemented()
+
+ async def event_subscribe():
+ raise NotImplemented()
+
+ async def is_event_resolved(event_id):
+ raise NotImplemented()
+
+ def event_key(self, event_id):
+ return f'{self.__class__.__name__}-{event_id}'
+
+ def register_event(self, event_id, description,
+ start_time, event_status,
+ resolve_time=None, answer=None, metadata=None):
+ """Adds or updates event. Returns true - if this event not in the list yet"""
+ if self.registered_events.get(self.event_key(event_id)):
+ # Naive event update
+ self.update_event(event_id, description, start_time, event_status, resolve_time, answer, metadata)
+
+ self.registered_events[self.event_key(event_id)] = ProviderEvent(
+ event_id,
+ self.__class__.__name__,
+ description,
+ start_time,
+ resolve_time,
+ None,
+ datetime.now(),
+ event_status,
+ self.registered_events.get(self.event_key(event_id), {}).get('miner_predictions', []),
+ metadata,
+ )
+
+ return True
+
+ def update_event(self, event_id, description,
+ start_time, event_status,
+ resolve_time=None, answer=None, metadata=None):
+ """Updates event"""
+
+ if not self.registered_events.get(self.event_key(event_id)):
+ bt.logging.error(f'No event found in registry {self.__class__.__name__} {event_id}!')
+ return False
+ self.registered_events[self.event_key(event_id)] = ProviderEvent(
+ event_id,
+ self.__class__.__name__,
+ description,
+ start_time,
+ resolve_time,
+ answer,
+ datetime.now(),
+ event_status,
+ self.registered_events[self.event_key(event_id)].miner_predictions,
+ metadata,
+ )
+ if self.event_update_hook_fn and callable(self.event_update_hook_fn):
+ self.event_update_hook_fn(self.registered_events.get(self.event_key(event_id)))
+
+ return True
+
+ def on_event_updated_hook(self, event_update_hook_fn: Callable[[ProviderEvent], None]):
+ """Depending on provider, hook that will be called when we have updates for registered events"""
+ self.event_update_hook_fn = event_update_hook_fn
+
+ def get_event(self, event_id):
+ return self.registered_events.get(self.get_event_key(event_id))
+
+ async def save_state(self):
+ with open('event_state.json', 'w') as f:
+ json.dump(self.registered_events, f)
+
+ async def load_state(self):
+ self.registered_events = json.load(open('event_state.json', 'r'))
+
+ async def get_miner_prediction(self, uid: int, event_id: str) -> Optional[Submission]:
+ submission = self.registered_events.get(self.event_key(event_id), {}).get(uid)
+ return Submission(
+ submitted_ts=submission.get('submitted_ts'),
+ answer=submission.get('answer'),
+ )
+
+ async def miner_predict(self, uid: int, event_id: str, answer: float) -> Submission:
+ event = self.registered_events.get(self.event_key(event_id))
+ if not event:
+ bt.logging.warning(f'Event {event_id} was not found in registered events while submitting {uid=} answer {answer}!')
+ return False
+ submission: Submission = event['miner_predictions'].get(uid)
+
+ if submission:
+ bt.logging.info(f'Overriding miner {uid=} submission for {event_id=} from {submission.answer} to {answer}')
+ new_submission = Submission(
+ submitted_ts=datetime.now().timestamp(),
+ answer=answer,
+ )
+ event['miner_predictions'][uid] = new_submission
+ return submission
diff --git a/ocr_subnet/protocol.py b/infinite_games/protocol.py
similarity index 57%
rename from ocr_subnet/protocol.py
rename to infinite_games/protocol.py
index ec0f49a..08a123e 100644
--- a/ocr_subnet/protocol.py
+++ b/infinite_games/protocol.py
@@ -19,27 +19,21 @@
import bittensor as bt
from typing import Optional, List
-class OCRSynapse(bt.Synapse):
- """
- A simple OCR synapse protocol representation which uses bt.Synapse as its base.
- This protocol enables communication betweenthe miner and the validator.
-
- Attributes:
- - base64_image: Base64 encoding of pdf image to be processed by the miner.
- - response: List[dict] containing data extracted from the image.
- """
-
- # Required request input, filled by sending dendrite caller. It is a base64 encoded string.
- base64_image: str
-
- # Optional request output, filled by recieving axon.
- response: Optional[List[dict]] = None
-
- def deserialize(self) -> List[dict]:
- """
- Deserialize the miner response.
-
- Returns:
- - List[dict]: The deserialized response, which is a list of dictionaries containing the extracted data.
- """
- return self.response
+from infinite_games.events.base import ProviderEvent
+
+
+class EventPredictionSynapse(bt.Synapse):
+ # Dictionary of predictions. The keys are event provider ids
+ # IDs, the values are the probability of the *second* result
+ # occurring, so certainty that the first result occurs would be 0.0
+
+ events: dict = {}
+
+ def init(self, events: List[ProviderEvent]):
+ self.events = {}
+ for event in events:
+ self.events[f'{event.event_type}-{event.event_id}'] = {
+ "event_type": event.event_type,
+ "description": event.description,
+ "starts": event.starts.timestamp()
+ }
diff --git a/ocr_subnet/utils/__init__.py b/infinite_games/utils/__init__.py
similarity index 72%
rename from ocr_subnet/utils/__init__.py
rename to infinite_games/utils/__init__.py
index 153f1ce..1e61220 100644
--- a/ocr_subnet/utils/__init__.py
+++ b/infinite_games/utils/__init__.py
@@ -1,4 +1,3 @@
from . import config
from . import misc
from . import uids
-from . import process
diff --git a/ocr_subnet/utils/config.py b/infinite_games/utils/config.py
similarity index 100%
rename from ocr_subnet/utils/config.py
rename to infinite_games/utils/config.py
diff --git a/ocr_subnet/utils/misc.py b/infinite_games/utils/misc.py
similarity index 100%
rename from ocr_subnet/utils/misc.py
rename to infinite_games/utils/misc.py
diff --git a/ocr_subnet/utils/uids.py b/infinite_games/utils/uids.py
similarity index 64%
rename from ocr_subnet/utils/uids.py
rename to infinite_games/utils/uids.py
index ce78c80..07566bd 100644
--- a/ocr_subnet/utils/uids.py
+++ b/infinite_games/utils/uids.py
@@ -19,9 +19,9 @@ def check_uid_availability(
if not metagraph.axons[uid].is_serving:
return False
# Filter validator permit > 1024 stake.
- if metagraph.validator_permit[uid]:
- if metagraph.S[uid] > vpermit_tao_limit:
- return False
+ #if metagraph.validator_permit[uid]:
+ # if metagraph.S[uid] > vpermit_tao_limit:
+ # return False
# Available otherwise.
return True
@@ -61,3 +61,33 @@ def get_random_uids(
)
uids = torch.tensor(random.sample(available_uids, k))
return uids
+
+def get_all_uids(
+ self, exclude: List[int] = None
+) -> torch.LongTensor:
+ """Returns k available random uids from the metagraph.
+ Args:
+ k (int): Number of uids to return.
+ exclude (List[int]): List of uids to exclude from the random sampling.
+ Returns:
+ uids (torch.LongTensor): Randomly sampled available uids.
+ Notes:
+ If `k` is larger than the number of available `uids`, set `k` to the number of available `uids`.
+ """
+ candidate_uids = []
+ avail_uids = []
+
+ for uid in range(self.metagraph.n.item()):
+ uid_is_available = check_uid_availability(
+ self.metagraph, uid, self.config.neuron.vpermit_tao_limit
+ )
+ uid_is_not_excluded = exclude is None or uid not in exclude
+
+ if uid_is_available:
+ avail_uids.append(uid)
+ if uid_is_not_excluded:
+ candidate_uids.append(uid)
+
+ available_uids = candidate_uids
+ uids = torch.tensor(available_uids)
+ return uids
\ No newline at end of file
diff --git a/infinite_games/validator/__init__.py b/infinite_games/validator/__init__.py
new file mode 100644
index 0000000..cef9dec
--- /dev/null
+++ b/infinite_games/validator/__init__.py
@@ -0,0 +1 @@
+# from .forward import forward
diff --git a/miner.out b/miner.out
new file mode 100644
index 0000000..1dc55b1
--- /dev/null
+++ b/miner.out
@@ -0,0 +1,89 @@
+/home/adam/infinite_games/venv/lib/python3.10/site-packages/eth_utils/network.py:44: UserWarning: Network 345 with name 'Yooldo Verse Mainnet' does not have a valid ChainId. eth-typing should be updated with the latest networks.
+ warnings.warn(
+/home/adam/infinite_games/venv/lib/python3.10/site-packages/eth_utils/network.py:44: UserWarning: Network 12611 with name 'Astar zkEVM' does not have a valid ChainId. eth-typing should be updated with the latest networks.
+ warnings.warn(
+full path: /home/adam/.bittensor/miners/coldkey/hotkey/netuid143/validator
+[34m2024-04-30 19:59:40.780[0m | [1m INFO [0m |
+no_prompt: false
+wallet:
+ name: coldkey
+ hotkey: hotkey
+ path: ~/.bittensor/wallets/
+subtensor:
+ network: test
+ chain_endpoint: wss://entrypoint-finney.opentensor.ai:443
+ _mock: false
+logging:
+ debug: true
+ trace: false
+ record_log: false
+ logging_dir: ~/.bittensor/miners
+axon:
+ port: 8091
+ ip: '[::]'
+ external_port: null
+ external_ip: null
+ max_workers: 10
+netuid: 143
+neuron:
+ name: validator
+ device: cpu
+ epoch_length: 100
+ events_retention_size: 2 GB
+ dont_save_events: false
+ num_concurrent_forwards: 1
+ sample_size: 10
+ disable_set_weights: false
+ moving_average_alpha: 0.05
+ axon_off: false
+ vpermit_tao_limit: 4096
+ full_path: /home/adam/.bittensor/miners/coldkey/hotkey/netuid143/validator
+blacklist:
+ force_validator_permit: false
+ allow_non_registered: false
+config: null
+strict: false
+no_version_checking: false
+
+[34m2024-04-30 19:59:40.780[0m | [1m INFO [0m | Setting up bittensor objects.
+[34m2024-04-30 19:59:40.780[0m | [1m INFO [0m | Wallet: wallet(coldkey, hotkey, ~/.bittensor/wallets/)
+[34m2024-04-30 19:59:41.301[0m | [1m INFO [0m | Connected to test network and wss://test.finney.opentensor.ai:443/.
+[34m2024-04-30 19:59:41.301[0m | [1m INFO [0m | Subtensor: subtensor(test, wss://test.finney.opentensor.ai:443/)
+[34m2024-04-30 19:59:44.347[0m | [1m INFO [0m | Metagraph: metagraph(netuid:143, n:2, block:1824142, network:test)
+[34m2024-04-30 19:59:45.072[0m | [1m INFO [0m | Running neuron on subnet: 143 with uid 0 using network: wss://test.finney.opentensor.ai:443/
+[34m2024-04-30 19:59:45.072[0m | [33m[1m WARNING [0m | You are allowing non-validators to send requests to your miner. This is a security risk.
+[34m2024-04-30 19:59:45.238[0m | [1m INFO [0m | Attaching forward function to miner axon.
+[34m2024-04-30 19:59:45.243[0m | [1m INFO [0m | Axon created: Axon([::], 8091, 5ED6jwDECEmNvSp98R2qyEUPHDv9pi14E6n3TS8CicD6YfhL, stopped, ['Synapse', 'EventPredictionSynapse'])
+[34m2024-04-30 19:59:45.246[0m | [1m INFO [0m | You are connecting to finney network with endpoint wss://entrypoint-finney.opentensor.ai:443.
+[34m2024-04-30 19:59:45.246[0m | [33m[1m WARNING [0m | We strongly encourage running a local subtensor node whenever possible. This increases decentralization and resilience of the network.
+[34m2024-04-30 19:59:45.246[0m | [33m[1m WARNING [0m | In a future release, local subtensor will become the default endpoint. To get ahead of this change, please run a local subtensor node and point to it.
+[34m2024-04-30 19:59:45.869[0m | [1m INFO [0m | Connected to finney network and wss://entrypoint-finney.opentensor.ai:443.
+[34m2024-04-30 20:00:00.421[0m | [34m[1m DEBUG [0m | Starting miner in background thread.
+[34m2024-04-30 20:00:00.423[0m | [34m[1m DEBUG [0m | Started
+[34m2024-04-30 20:00:00.423[0m | [1m INFO [0m | Miner running... 1714500000.4238684
+[34m2024-04-30 20:00:01.975[0m | [33m[1m WARNING [0m | save_state() not implemented for this neuron. You can implement this function to save model checkpoints or other useful data.
+[34m2024-04-30 20:00:01.976[0m | [1m INFO [0m | Serving miner axon Axon([::], 8091, 5ED6jwDECEmNvSp98R2qyEUPHDv9pi14E6n3TS8CicD6YfhL, stopped, ['Synapse', 'EventPredictionSynapse']) on network: wss://entrypoint-finney.opentensor.ai:443 with netuid: 143
+[34m2024-04-30 20:00:01.976[0m | [34m[1m DEBUG [0m | Checking axon ...
+[34m2024-04-30 20:00:03.349[0m | [34m[1m DEBUG [0m | Axon already served on: AxonInfo(5ED6jwDECEmNvSp98R2qyEUPHDv9pi14E6n3TS8CicD6YfhL,152.53.21.25:8091)
+[34m2024-04-30 20:00:03.350[0m | [1m INFO [0m | Miner starting at block: 1824144
+[34m2024-04-30 20:00:05.429[0m | [1m INFO [0m | Miner running... 1714500005.429182
+[34m2024-04-30 20:00:10.162[0m | [31m[1m ERROR [0m | NotVerifiedException: Not Verified with error: Signature mismatch with 9069745483030160.5ED6jwDECEmNvSp98R2qyEUPHDv9pi14E6n3TS8CicD6YfhL.5ED6jwDECEmNvSp98R2qyEUPHDv9pi14E6n3TS8CicD6YfhL.696cab58-0715-11ef-8163-e55a5c56524d.a7ffc6f8bf1ed76651c14756a061d662f580ff4de43b49fa82d80a4b80f8434a and 0x8869d0d49bf615cfbd01da7776808c45d7b87d065c98b34aea9262451973f9711e7358b11ce0f39c849028540f3997a2bd1bdd46c33e9db3b70260d79b44dc8f
+[34m2024-04-30 20:00:10.176[0m | [1m INFO [0m | Received synapse
+[34m2024-04-30 20:00:10.434[0m | [1m INFO [0m | Miner running... 1714500010.4348378
+[34m2024-04-30 20:00:15.440[0m | [1m INFO [0m | Miner running... 1714500015.4405866
+[34m2024-04-30 20:00:20.446[0m | [1m INFO [0m | Miner running... 1714500020.4463496
+[34m2024-04-30 20:00:22.217[0m | [31m[1m ERROR [0m | NotVerifiedException: Not Verified with error: Signature mismatch with 9069757543321301.5ED6jwDECEmNvSp98R2qyEUPHDv9pi14E6n3TS8CicD6YfhL.5ED6jwDECEmNvSp98R2qyEUPHDv9pi14E6n3TS8CicD6YfhL.696cab58-0715-11ef-8163-e55a5c56524d.a7ffc6f8bf1ed76651c14756a061d662f580ff4de43b49fa82d80a4b80f8434a and 0x5e776d835c69966e396d450e334c3d4aaa13e6d7c48815cad2833782aba64e2a1889235f0b8f834993a7d6ff1394a870675bb6299f661e60e3ed98c5839a0b8f
+[34m2024-04-30 20:00:22.228[0m | [1m INFO [0m | Received synapse
+[34m2024-04-30 20:00:25.452[0m | [1m INFO [0m | Miner running... 1714500025.4521372
+[34m2024-04-30 20:00:30.458[0m | [1m INFO [0m | Miner running... 1714500030.4579673
+[34m2024-04-30 20:00:34.209[0m | [31m[1m ERROR [0m | NotVerifiedException: Not Verified with error: Signature mismatch with 9069769536957067.5ED6jwDECEmNvSp98R2qyEUPHDv9pi14E6n3TS8CicD6YfhL.5ED6jwDECEmNvSp98R2qyEUPHDv9pi14E6n3TS8CicD6YfhL.696cab58-0715-11ef-8163-e55a5c56524d.a7ffc6f8bf1ed76651c14756a061d662f580ff4de43b49fa82d80a4b80f8434a and 0x40d68803e903b80b9287a2dcc22781dbc55059f4ca7b120261c44836cd7a6352446941ada2df5e54ec761f7d0aaa9882eb10e1cd9ddfeffcac53234def39f185
+[34m2024-04-30 20:00:34.220[0m | [1m INFO [0m | Received synapse
+[34m2024-04-30 20:00:35.463[0m | [1m INFO [0m | Miner running... 1714500035.4636626
+[34m2024-04-30 20:00:40.469[0m | [1m INFO [0m | Miner running... 1714500040.4697263
+[34m2024-04-30 20:00:45.474[0m | [1m INFO [0m | Miner running... 1714500045.4748478
+[34m2024-04-30 20:00:46.269[0m | [31m[1m ERROR [0m | NotVerifiedException: Not Verified with error: Signature mismatch with 9069781593055831.5ED6jwDECEmNvSp98R2qyEUPHDv9pi14E6n3TS8CicD6YfhL.5ED6jwDECEmNvSp98R2qyEUPHDv9pi14E6n3TS8CicD6YfhL.696cab58-0715-11ef-8163-e55a5c56524d.a7ffc6f8bf1ed76651c14756a061d662f580ff4de43b49fa82d80a4b80f8434a and 0x9217ed842c93ece72154ff9f32caf98b291af1a2ec3b38e55a9b3e7d3f91b51a0b4afc29499cbae875bd39f1e5bb82c1718e91fe4b9d3117d13fbe30d0204c81
+[34m2024-04-30 20:00:46.283[0m | [1m INFO [0m | Received synapse
+[34m2024-04-30 20:00:50.480[0m | [1m INFO [0m | Miner running... 1714500050.4807072
+[34m2024-04-30 20:00:55.486[0m | [1m INFO [0m | Miner running... 1714500055.4865344
+[34m2024-04-30 20:00:58.272[0m | [31m[1m ERROR [0m | NotVerifiedException: Not Verified with error: Signature mismatch with 9069793590304263.5ED6jwDECEmNvSp98R2qyEUPHDv9pi14E6n3TS8CicD6YfhL.5ED6jwDECEmNvSp98R2qyEUPHDv9pi14E6n3TS8CicD6YfhL.696cab58-0715-11ef-8163-e55a5c56524d.a7ffc6f8bf1ed76651c14756a061d662f580ff4de43b49fa82d80a4b80f8434a and 0x96c996489e3d482edeeb479bbda8679a24b94ae28704a22f5dfe086d511f1d108b67e32f4a16242e3315d72eb4d1ff049ac9023779ff16633418fa6d63cbe48f
+[34m2024-04-30 20:00:58.286[0m | [1m INFO [0m | Received synapse
diff --git a/neurons/infinite_games b/neurons/infinite_games
new file mode 120000
index 0000000..3dccf6f
--- /dev/null
+++ b/neurons/infinite_games
@@ -0,0 +1 @@
+../infinite_games
\ No newline at end of file
diff --git a/neurons/miner.py b/neurons/miner.py
index 1647e2b..006a50e 100644
--- a/neurons/miner.py
+++ b/neurons/miner.py
@@ -18,81 +18,43 @@
import time
import typing
import bittensor as bt
-import pytesseract
# Bittensor OCR Miner
-import ocr_subnet
+import infinite_games
# import base miner class which takes care of most of the boilerplate
-from ocr_subnet.base.miner import BaseMinerNeuron
-
+from infinite_games.base.miner import BaseMinerNeuron
+#from infinite_games.protocol import EmissionPredictorSynapse
class Miner(BaseMinerNeuron):
"""
- OCR miner neuron class. You may also want to override the blacklist and priority functions according to your needs.
+ Miner neuron class. You may also want to override the blacklist and priority functions according to your needs.
This class inherits from the BaseMinerNeuron class, which in turn inherits from BaseNeuron. The BaseNeuron class takes care of routine tasks such as setting up wallet, subtensor, metagraph, logging directory, parsing config, etc. You can override any of the methods in BaseNeuron if you need to customize the behavior.
This class provides reasonable default behavior for a miner such as blacklisting unrecognized hotkeys, prioritizing requests based on stake, and forwarding requests to the forward function. If you need to define custom
"""
+ prev_emission = None
+
def __init__(self, config=None):
super(Miner, self).__init__(config=config)
- bt.logging.info(f'pytesseract version: {pytesseract.__version__}')
- bt.logging.info(f'tesseract version: {pytesseract.get_tesseract_version()}')
-
-
-
async def forward(
- self, synapse: ocr_subnet.protocol.OCRSynapse
- ) -> ocr_subnet.protocol.OCRSynapse:
+ self, synapse: infinite_games.protocol.EventPredictionSynapse
+ ) -> infinite_games.protocol.EventPredictionSynapse:
"""
- Processes the incoming OCR synapse and attaches the response to the synapse.
-
- Args:
- synapse (ocr_subnet.protocol.OCRSynapse): The synapse object containing the image data.
-
- Returns:
- ocr_subnet.protocol.OCRSynapse: The synapse object with the 'response' field set to the extracted data.
-
+ Processes the incoming synapse and attaches the response to the synapse.
"""
- # Get image data
- image = ocr_subnet.utils.image.deserialize(base64_string=synapse.base64_image)
-
- # Use pytesseract to get the data
- data = pytesseract.image_to_data(image, output_type=pytesseract.Output.DICT)
-
- response = []
- for i in range(len(data['text'])):
- if data['text'][i].strip() != '': # This filters out empty text results
- x1, y1, width, height = data['left'][i], data['top'][i], data['width'][i], data['height'][i]
- if width * height < 10: # This filters out small boxes (likely noise)
- continue
-
- x2, y2 = x1 + width, y1 + height
-
- # Here we don't have font information, so we'll omit that.
- # Pytesseract does not extract font family or size information.
- entry = {
- 'position': [x1, y1, x2, y2],
- 'text': data['text'][i]
- }
- response.append(entry)
-
- # Merge together words into sections, which are on the same line (same y value) and are close together (small distance in x)
- response = ocr_subnet.utils.process.group_and_merge_boxes(response)
-
- # Sort sections by y, then sort by x so that they read left to right and top to bottom
- response = sorted(response, key=lambda item: (item['position'][1], item['position'][0]))
-
- # Attach response to synapse and return it.
- synapse.response = response
-
+ #calculate your prediction here, the default code simply leaves all guesses default, which gives 0.25 credit for each.
+ bt.logging.info("Received synapse")
+ synapse.events["TEST"] = 1.0
+ synapse.events["0x002a797edf040e8a053e62b26d85a0292df091c5cacb303ae31407c8a050a32c"] = 1.0
+ synapse.events["hello"] = "hello"
return synapse
async def blacklist(
- self, synapse: ocr_subnet.protocol.OCRSynapse
+ self, synapse: infinite_games.protocol.EventPredictionSynapse
) -> typing.Tuple[bool, str]:
"""
Determines whether an incoming request should be blacklisted and thus ignored. Your implementation should
@@ -103,7 +65,7 @@ async def blacklist(
requests before they are deserialized to avoid wasting resources on requests that will be ignored.
Args:
- synapse (template.protocol.OCRSynapse): A synapse object constructed from the headers of the incoming request.
+ synapse (template.protocol.EventPredictionSynapse): A synapse object constructed from the headers of the incoming request.
Returns:
Tuple[bool, str]: A tuple containing a boolean indicating whether the synapse's hotkey is blacklisted,
@@ -136,7 +98,7 @@ async def blacklist(
)
return False, "Hotkey recognized!"
- async def priority(self, synapse: ocr_subnet.protocol.OCRSynapse) -> float:
+ async def priority(self, synapse: infinite_games.protocol.EventPredictionSynapse) -> float:
"""
The priority function determines the order in which requests are handled. More valuable or higher-priority
requests are processed before others. You should design your own priority mechanism with care.
@@ -144,7 +106,7 @@ async def priority(self, synapse: ocr_subnet.protocol.OCRSynapse) -> float:
This implementation assigns priority to incoming requests based on the calling entity's stake in the metagraph.
Args:
- synapse (template.protocol.OCRSynapse): The synapse object that contains metadata about the incoming request.
+ synapse (template.protocol.EventPredictionSynapse): The synapse object that contains metadata about the incoming request.
Returns:
float: A priority score derived from the stake of the calling entity.
@@ -168,6 +130,12 @@ async def priority(self, synapse: ocr_subnet.protocol.OCRSynapse) -> float:
)
return prirority
+ def save_state(self):
+ return super().save_state()
+
+
+bt.debug(True)
+
# This is the main function, which runs the miner.
if __name__ == "__main__":
diff --git a/neurons/validator.py b/neurons/validator.py
index 38c7a62..8661533 100644
--- a/neurons/validator.py
+++ b/neurons/validator.py
@@ -15,63 +15,179 @@
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
-import os
+import asyncio
+import random
import time
-import hashlib
+import aiohttp
import bittensor as bt
-
-import ocr_subnet
+import torch
+import collections as c
+import requests
+import json
+import infinite_games
# import base validator class which takes care of most of the boilerplate
-from ocr_subnet.base.validator import BaseValidatorNeuron
+from infinite_games.base.validator import BaseValidatorNeuron
+from infinite_games.events.azuro import AzuroEventProvider
+from infinite_games.events.base import EventStatus, ProviderEvent
+
+RETRY_TIME = 5 # In seconds
+#CUTOFF = 7200 # Roughly a day
+CUTOFF = 10
+
+
+class MinerSubmissions:
+ """
+ Contains deques of miner responses, with timestamps. The newest submission is on the left.
+ """
+ def __init__(self, cutoff):
+ self.cutoff = cutoff
+ self.miners = {}
+
+ class Submission:
+ def __init__(self, time, answer):
+ self.time = time
+ self.answer = answer
+
+ def insert(self, miner_uid_t, cid, current_time, answer):
+ miner_uid = int(miner_uid_t)
+ questions = self.miners.get(miner_uid)
+ if questions is None:
+ self.miners[miner_uid] = {}
+ questions = self.miners[miner_uid]
+ deq = questions.get(cid)
+ if deq is None:
+ questions[cid] = c.deque()
+ deq = questions[cid]
+ if len(deq) > 0 and deq[-1].answer == answer:
+ return
+ else:
+ deq.appendleft(self.Submission(current_time, answer))
+
+ def get(self, miner_uid_t, cid, current_time):
+ miner_uid = int(miner_uid_t)
+ questions = self.miners.get(miner_uid)
+ if questions is None:
+ return None
+ deq = questions.get(cid)
+ if deq is None:
+ return None
+ result = None
+ for sub in deq:
+ if current_time - sub.time >= self.cutoff:
+ result = sub.answer
+ break
+ questions.pop(cid) # Clean up the results, they won't be needed
+ return result
+
+
+
+async def retry_to_effect(session, url):
+ try:
+ async with session.get(url) as response:
+ return await response.json()
+ except Exception as e:
+ await asyncio.sleep(RETRY_TIME)
+
+
+def get_answer(market):
+ toks = market["tokens"]
+ if toks[0]["winner"]:
+ return 1
+ elif toks[1]["winner"]:
+ return 2
+ else:
+ return None
+
+
+async def crawl_market(session, cid, seq, blocktime):
+ if seq != blocktime:
+ # Uncomment this to see events fired
+ # bt.logging.info("Event fired: {}".format(cid))
+ check = await retry_to_effect(session, "https://clob.polymarket.com/markets/{}".format(cid))
+ # from pprint import pprint
+ # pprint(check)
+ # print(check.get('market_slug'), 'Ends: ', check.get('end_date_iso'), ' Options: ', ','.join((map(lambda t: t.get('outcome', ''), check.get('tokens', [])))))
+
+ # pprint(check.get('questions'),check['tokens'])
+ # if cid == "0x002a797edf040e8a053e62b26d85a0292df091c5cacb303ae31407c8a050a32c":
+ if not check:
+ bt.logging.error(f"Error fetching event {cid}, skip.")
+ return
+ if check.get('market_slug') == "will-a-republican-win-maryland-us-senate-election":
+ bt.logging.info("Event resolved (debug): {}".format(cid))
+ check["closed"] = True
+ check["tokens"][0]["winner"] = True
+ # print(check)
+ # settled_markets.append(check)
+ return check
class Validator(BaseValidatorNeuron):
"""
- OCR validator neuron class.
+ Validator neuron class.
This class inherits from the BaseValidatorNeuron class, which in turn inherits from BaseNeuron. The BaseNeuron class takes care of routine tasks such as setting up wallet, subtensor, metagraph, logging directory, parsing config, etc. You can override any of the methods in BaseNeuron if you need to customize the behavior.
This class provides reasonable default behavior for a validator such as keeping a moving average of the scores of the miners and using them to set weights at the end of each epoch. Additionally, the scores are reset for new hotkeys at the end of each epoch.
"""
- def __init__(self, config=None):
+ def __init__(self, config=None, override_cutoff = False):
super(Validator, self).__init__(config=config)
bt.logging.info("load_state()")
self.load_state()
-
- self.image_dir = './data/images/'
- if not os.path.exists(self.image_dir):
- os.makedirs(self.image_dir)
-
+ self.active_markets = {}
+ self.submissions = MinerSubmissions(CUTOFF)
+ self.blocktime = 0
+ self.event_provider = AzuroEventProvider()
+ self.event_provider.on_event_updated_hook(self.on_event_update)
+ loop = asyncio.get_event_loop()
+ loop.create_task(self.event_provider.listen_events())
+
+ def on_event_update(self, pe: ProviderEvent):
+ if pe.status == EventStatus.SETTLED:
+ miner_uids = infinite_games.utils.uids.get_all_uids(self)
+
+ scores = []
+ for uid in miner_uids:
+ ans = pe.miner_predictions.get(uid)
+ if ans is None:
+ scores.append(0)
+ else:
+ ans = max(0, min(1, ans)) # Clamp the answer
+ correct_ans = pe.answer
+ if correct_ans == 2:
+ scores.append(ans**2)
+ elif correct_ans == 1:
+ scores.append((1-ans)**2)
+ else:
+ scores.append(0)
+ bt.logging.warning(f"Unknown result from market: {pe.event_type} - {pe.event_id}")
+ self.update_scores(torch.FloatTensor(scores), miner_uids)
async def forward(self):
"""
The forward function is called by the validator every time step.
- It consists of 3 important steps:
- - Generate a challenge for the miners (in this case it creates a synthetic invoice image)
- - Query the miners with the challenge
- - Score the responses from the miners
-
- Args:
- self (:obj:`bittensor.neuron.Neuron`): The neuron object which contains all the necessary state for the validator.
-
"""
- # get_random_uids is an example method, but you can replace it with your own.
- miner_uids = ocr_subnet.utils.uids.get_random_uids(self, k=min(self.config.neuron.sample_size, self.metagraph.n.item()))
+ block_start = self.block
+ miner_uids = infinite_games.utils.uids.get_all_uids(self)
+ # update markets
- # make a hash from the timestamp
- filename = hashlib.md5(str(time.time()).encode()).hexdigest()
+ bt.logging.info("Syncing provider market events...")
+ await self.event_provider.sync_events()
- # Create a random image and load it.
- image_data = ocr_subnet.validator.generate.invoice(path=os.path.join(self.image_dir, f"{filename}.pdf"), corrupt=True)
-
- # Create synapse object to send to the miner and attach the image.
- synapse = ocr_subnet.protocol.OCRSynapse(base64_image = image_data['base64_image'])
+ # Create synapse object to send to the miner.
+ synapse = infinite_games.protocol.EventPredictionSynapse()
+ synapse.init(list(self.event_provider.registered_events.values()))
+ # print("Synapse body hash", synapse.computed_body_hash)
+ bt.logging.info(f'Axons: {len(self.metagraph.axons)}')
+ for axon in self.metagraph.axons:
+ bt.logging.info(f'IP: {axon.ip}, hotkey id: {axon.hotkey}')
+ bt.logging.info("Querying miners... ")
# The dendrite client queries the network.
responses = self.dendrite.query(
# Send the query to selected miner axons in the network.
@@ -82,20 +198,22 @@ async def forward(self):
deserialize=False,
)
- # Log the results for monitoring purposes.
- bt.logging.info(f"Received responses: {responses}")
-
- rewards = ocr_subnet.validator.reward.get_rewards(self, labels=image_data['labels'], responses=responses)
-
- bt.logging.info(f"Scored responses: {rewards}")
-
- # Update the scores based on the rewards. You may want to define your own update_scores function for custom behavior.
- self.update_scores(rewards, miner_uids)
+ # Update answers
+ for (uid, resp) in zip(miner_uids, responses):
+ for (cid, ans) in resp.events.items():
+ self.submissions.insert(uid, cid, self.blocktime, ans)
+ bt.logging.info("Received responses")
+ self.blocktime += 1
+ while block_start == self.block:
+ time.sleep(1)
# The main function parses the configuration and runs the validator.
+
+bt.debug(True)
if __name__ == "__main__":
with Validator() as validator:
while True:
+ validator.print_info()
bt.logging.info("Validator running...", time.time())
time.sleep(5)
diff --git a/nohup.out b/nohup.out
new file mode 100644
index 0000000..152109c
--- /dev/null
+++ b/nohup.out
@@ -0,0 +1,4456 @@
+/home/adam/infinite_games/venv/lib/python3.10/site-packages/eth_utils/network.py:44: UserWarning: Network 345 with name 'Yooldo Verse Mainnet' does not have a valid ChainId. eth-typing should be updated with the latest networks.
+ warnings.warn(
+/home/adam/infinite_games/venv/lib/python3.10/site-packages/eth_utils/network.py:44: UserWarning: Network 12611 with name 'Astar zkEVM' does not have a valid ChainId. eth-typing should be updated with the latest networks.
+ warnings.warn(
+full path: /home/adam/.bittensor/miners/wallet-testnet/hotkey-testnet/netuid143/validator
+full path: /home/adam/.bittensor/miners/wallet-testnet/hotkey-testnet/netuid143/validator
+/home/adam/infinite_games/venv/lib/python3.10/site-packages/eth_utils/network.py:44: UserWarning: Network 345 with name 'Yooldo Verse Mainnet' does not have a valid ChainId. eth-typing should be updated with the latest networks.
+ warnings.warn(
+/home/adam/infinite_games/venv/lib/python3.10/site-packages/eth_utils/network.py:44: UserWarning: Network 12611 with name 'Astar zkEVM' does not have a valid ChainId. eth-typing should be updated with the latest networks.
+ warnings.warn(
+full path: /home/adam/.bittensor/miners/wallet-testnet/hotkey-testnet/netuid143/validator
+2024-05-07 21:57:56.402 | WARNING | - No non-zero weights returning all ones. -
+/home/adam/infinite_games/venv/lib/python3.10/site-packages/eth_utils/network.py:44: UserWarning: Network 345 with name 'Yooldo Verse Mainnet' does not have a valid ChainId. eth-typing should be updated with the latest networks.
+ warnings.warn(
+/home/adam/infinite_games/venv/lib/python3.10/site-packages/eth_utils/network.py:44: UserWarning: Network 12611 with name 'Astar zkEVM' does not have a valid ChainId. eth-typing should be updated with the latest networks.
+ warnings.warn(
+full path: /home/adam/.bittensor/miners/wallet-testnet/hotkey-testnet/netuid143/validator
+2024-05-07 22:18:20.410 | WARNING | - No non-zero weights returning all ones. -
+2024-05-07 22:38:44.420 | WARNING | - No non-zero weights returning all ones. -
+2024-05-07 22:59:08.683 | WARNING | - No non-zero weights returning all ones. -
+2024-05-07 23:19:31.983 | WARNING | - No non-zero weights returning all ones. -
+2024-05-07 23:39:56.183 | WARNING | - No non-zero weights returning all ones. -
+2024-05-08 00:00:20.477 | WARNING | - No non-zero weights returning all ones. -
+2024-05-08 00:20:44.796 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:20:56.578 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:21:08.148 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:21:19.726 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:21:31.293 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:21:42.862 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:21:56.653 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:22:08.438 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:22:20.021 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:22:31.590 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:22:43.161 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:22:54.731 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:23:08.489 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:23:20.264 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:23:31.835 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:23:43.410 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:23:54.992 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:24:06.581 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:24:20.352 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:24:32.134 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:24:43.708 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:24:55.309 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:25:06.888 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:25:18.469 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:25:32.346 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:25:44.129 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:25:55.705 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:26:07.272 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:26:18.852 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:26:30.427 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:26:44.276 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:26:56.059 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:27:07.649 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:27:19.228 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:27:30.803 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:27:42.383 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:27:56.269 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:28:08.066 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:28:19.644 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:28:31.224 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:28:42.803 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:28:54.378 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:29:08.190 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:29:19.979 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:29:31.554 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:29:43.127 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:29:54.710 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:30:06.302 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:30:20.383 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:30:32.164 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:30:43.742 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:30:55.310 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:31:06.888 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:31:18.461 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:31:32.353 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:31:44.138 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:31:55.709 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:32:07.288 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:32:18.862 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:32:30.438 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:32:44.341 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:32:56.130 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:33:07.704 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:33:19.277 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:33:30.862 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:33:42.442 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:33:56.319 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:34:08.106 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:34:19.684 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:34:31.265 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:34:42.860 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:34:54.443 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:35:08.352 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:35:20.136 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:35:31.717 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:35:43.315 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:35:54.909 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:36:06.497 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:36:20.340 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:36:32.133 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:36:43.713 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:36:55.306 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:37:06.897 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:37:18.482 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:37:32.352 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:37:44.145 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:37:55.735 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:38:07.315 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:38:18.890 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:38:30.476 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:38:44.370 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:38:56.165 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:39:07.742 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:39:19.326 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:39:30.908 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:39:42.493 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:39:56.658 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:40:08.448 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:40:20.033 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:40:31.619 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:40:43.207 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:40:54.788 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:41:08.644 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:41:20.441 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:41:32.028 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:41:43.614 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:41:55.197 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:42:06.791 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:42:20.655 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:42:32.452 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:42:44.034 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:42:55.622 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:43:07.214 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:43:18.798 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:43:32.656 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:43:44.451 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:43:56.041 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:44:07.643 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:44:19.233 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:44:30.825 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:44:44.723 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:44:56.521 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:45:08.108 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:45:19.690 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:45:31.283 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:45:42.892 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:45:56.735 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:46:08.541 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:46:20.140 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:46:31.731 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:46:43.326 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:46:54.916 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:47:08.784 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:47:20.589 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:47:32.189 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:47:43.798 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:47:55.399 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:48:06.999 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:48:20.889 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:48:32.699 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:48:44.308 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:48:55.931 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:49:07.529 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:49:19.145 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:49:32.351 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:49:44.159 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:49:55.759 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:50:07.370 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:50:18.974 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:50:30.572 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:50:44.545 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:50:56.349 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:51:08.257 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:51:19.874 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:51:31.476 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:51:43.076 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:51:55.967 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:52:07.776 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:52:19.375 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:52:30.969 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:52:42.574 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:52:54.182 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:53:08.121 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:53:19.933 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:53:31.548 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:53:43.146 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:53:54.753 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:54:06.352 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:54:20.215 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:54:32.032 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:54:43.649 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:54:55.255 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:55:06.859 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:55:18.492 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:55:32.399 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:55:44.211 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:55:55.815 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:56:07.419 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:56:19.035 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:56:30.655 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:56:44.576 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:56:56.401 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:57:08.007 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:57:19.616 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:57:31.225 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:57:42.849 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:57:56.732 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:58:08.555 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:58:20.161 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:58:31.770 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:58:43.372 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:58:54.977 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+2024-05-08 00:59:09.108 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:59:20.921 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:59:32.544 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:59:44.164 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 00:59:55.774 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:00:07.383 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+/home/adam/infinite_games/neurons/ocr_subnet/base/validator.py:296: UserWarning: To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).
+ 0, torch.tensor(uids).to(self.device), rewards
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:00:32.179 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:00:43.789 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:00:55.404 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:01:07.008 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:01:18.629 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:01:44.273 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:01:55.884 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:02:07.491 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:02:19.127 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:02:30.749 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:02:56.424 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:03:08.037 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:03:19.647 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:03:31.247 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:03:42.854 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:04:08.646 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:04:20.266 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:04:31.876 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:04:43.486 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:04:55.103 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:05:19.799 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:05:31.409 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:05:43.031 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:05:54.642 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:06:06.265 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:06:31.972 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:06:43.585 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:06:55.222 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:07:06.836 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:07:18.450 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:07:44.217 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:07:55.839 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:08:07.451 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:08:19.076 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:08:30.695 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:08:56.641 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:09:08.258 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:09:19.870 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:09:31.485 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:09:43.104 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:10:08.788 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:10:20.410 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:10:32.023 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:10:43.639 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:10:55.260 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:11:19.900 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:11:31.519 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:11:43.141 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:11:54.766 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:12:06.381 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:12:32.099 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:12:43.715 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:12:55.333 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:13:06.943 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:13:18.559 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:13:44.209 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:13:55.829 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:14:07.445 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:14:19.063 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:14:30.689 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:14:56.413 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:15:08.032 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:15:19.655 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:15:31.288 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:15:42.907 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:16:08.620 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:16:20.256 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:16:31.877 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:16:43.499 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:16:55.116 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:17:19.896 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:17:31.529 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:17:43.157 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:17:54.797 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:18:06.460 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:18:32.470 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:18:44.095 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:18:55.773 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:19:07.398 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:19:19.031 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:19:44.822 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:19:56.479 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:20:08.112 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:20:19.745 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:20:31.411 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:20:56.153 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:21:07.783 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:21:19.412 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:21:31.030 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:21:42.662 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:22:08.429 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:22:20.054 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:22:31.678 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:22:43.327 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:22:54.957 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:23:20.744 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:23:32.378 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:23:44.006 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:23:55.639 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:24:07.278 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:24:32.014 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:24:43.667 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:24:55.295 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:25:06.923 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:25:18.580 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:25:44.312 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:25:55.940 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:26:07.572 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:26:19.202 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:26:30.832 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:26:56.588 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:27:08.229 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:27:19.866 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:27:31.498 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:27:43.127 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:28:08.142 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:28:19.781 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:28:31.442 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:28:43.083 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:28:54.729 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:29:20.486 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:29:32.149 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:29:43.798 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:29:55.440 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:30:07.078 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:30:31.875 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:30:43.743 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:30:55.395 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:31:07.021 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:31:18.649 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:31:44.323 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:31:55.977 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:32:07.612 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:32:19.256 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:32:30.889 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:32:56.587 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:33:08.222 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:33:19.872 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:33:31.523 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:33:43.162 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:34:07.911 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:34:19.543 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:34:31.177 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:34:42.821 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:34:54.454 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:35:20.183 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:35:31.830 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:35:43.471 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:35:55.105 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:36:06.750 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:36:32.502 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:36:44.150 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:36:55.797 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:37:07.430 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:37:19.082 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:37:45.021 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:37:56.660 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:38:08.290 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:38:19.915 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:38:31.549 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:38:56.290 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:39:07.948 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:39:19.590 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:39:31.224 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:39:42.875 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:40:08.644 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:40:20.287 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:40:31.929 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:40:43.567 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:40:55.213 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:41:19.919 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:41:31.554 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:41:43.187 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:41:54.831 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:42:06.473 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:42:32.177 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:42:43.819 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:42:55.470 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:43:07.123 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:43:18.780 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:43:44.531 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:43:56.180 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:44:07.834 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:44:19.491 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:44:31.139 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:44:55.927 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:45:07.566 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:45:19.209 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:45:30.849 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:45:42.497 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:46:08.218 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:46:19.861 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:46:31.503 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:46:43.169 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:46:54.821 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:47:20.799 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:47:32.437 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:47:44.085 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:47:55.720 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:48:07.361 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:48:32.102 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:48:43.742 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:48:55.394 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:49:07.050 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:49:18.704 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:49:44.446 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:49:56.099 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:50:07.752 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:50:19.405 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:50:31.063 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:50:56.752 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:51:08.407 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:51:20.059 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:51:31.705 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:51:43.347 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:52:08.118 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:52:19.769 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:52:31.424 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:52:43.072 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:52:54.753 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:53:20.473 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:53:32.125 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:53:43.782 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:53:55.442 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:54:07.113 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:54:31.869 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:54:43.522 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:54:55.167 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:55:06.826 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:55:18.478 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:55:44.255 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:55:55.914 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:56:07.574 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:56:19.225 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:56:30.892 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:56:56.790 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:57:08.445 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:57:20.093 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:57:31.753 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:57:43.405 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:58:08.219 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:58:19.898 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:58:31.560 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:58:43.212 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:58:54.876 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:59:20.640 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:59:32.296 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:59:43.956 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 01:59:55.614 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:00:07.270 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:00:32.013 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:00:43.686 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:00:55.344 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:01:07.012 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:01:18.673 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:01:44.492 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:01:56.150 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:02:07.815 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:02:19.481 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:02:31.145 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:02:55.971 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:03:07.640 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:03:19.309 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:03:30.988 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:03:42.659 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:04:08.480 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:04:20.151 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:04:31.812 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:04:43.536 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:04:55.227 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:05:20.054 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:05:31.724 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:05:43.404 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:05:55.078 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:06:06.741 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:06:32.797 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:06:44.464 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:06:56.136 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:07:07.797 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:07:19.456 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:07:44.714 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:07:56.395 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:08:08.059 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:08:19.723 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:08:31.394 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:08:56.157 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:09:07.815 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:09:19.482 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:09:31.158 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:09:42.825 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:10:08.629 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:10:20.290 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:10:31.961 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:10:43.640 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:10:55.305 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:11:20.085 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:11:31.751 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:11:43.420 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:11:55.091 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:12:06.771 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:12:32.727 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:12:44.400 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:12:56.092 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:13:07.759 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:13:19.431 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:13:44.249 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:13:55.922 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:14:07.602 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:14:19.262 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:14:30.936 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:14:56.661 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:15:08.333 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:15:20.014 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:15:31.687 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:15:43.361 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:16:08.394 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:16:20.072 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:16:31.741 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:16:43.426 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:16:55.093 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:17:19.906 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:17:31.579 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:17:43.255 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:17:54.931 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:18:06.604 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:18:32.384 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:18:44.050 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:18:55.728 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:19:07.407 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:19:19.079 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:19:43.866 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:19:55.533 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:20:07.210 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:20:18.886 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:20:30.557 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:20:56.278 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:21:07.950 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:21:19.630 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:21:31.300 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:21:42.976 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:22:08.779 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:22:20.447 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:22:32.128 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:22:43.804 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:22:55.471 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:23:20.247 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:23:31.927 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:23:43.614 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:23:55.284 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:24:06.960 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:24:32.738 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:24:44.426 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:24:56.107 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:25:07.792 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:25:19.467 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:25:44.623 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:25:56.320 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:26:08.012 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:26:19.702 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:26:31.389 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:26:56.217 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:27:07.897 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:27:19.577 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:27:31.253 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:27:42.939 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:28:08.720 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:28:20.388 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:28:32.070 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:28:43.744 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:28:55.416 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:29:20.204 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:29:31.901 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:29:43.605 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:29:55.294 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:30:06.981 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:30:32.803 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:30:44.489 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:30:56.188 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:31:07.885 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:31:19.563 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:31:44.333 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:31:56.022 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:32:07.714 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:32:19.396 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:32:31.076 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:32:56.827 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:33:08.513 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:33:20.197 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:33:31.898 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:33:43.577 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:34:08.396 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:34:20.087 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:34:31.770 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:34:43.470 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:34:55.164 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:35:20.310 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:35:31.990 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:35:43.670 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:35:55.354 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:36:07.056 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:36:31.902 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:36:43.587 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:36:55.272 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:37:06.960 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:37:18.660 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:37:44.407 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:37:56.089 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:38:07.769 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:38:19.447 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:38:31.126 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:38:55.966 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:39:07.660 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:39:19.348 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:39:31.036 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:39:42.731 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:40:08.580 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:40:20.272 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:40:31.963 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:40:43.651 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:40:55.332 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:41:20.104 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:41:31.794 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:41:43.484 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:41:55.175 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:42:06.858 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:42:32.706 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:42:44.393 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:42:56.092 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:43:07.777 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:43:19.485 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:43:44.350 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:43:56.045 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:44:07.740 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:44:19.432 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:44:31.125 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:44:56.192 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:45:07.878 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:45:19.581 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:45:31.276 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:45:42.968 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:46:08.735 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:46:20.425 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:46:32.126 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:46:43.812 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:46:55.505 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:47:20.251 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:47:31.940 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:47:43.637 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:47:55.332 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:48:07.019 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:48:32.783 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:48:44.468 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:48:56.164 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:49:07.859 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:49:19.551 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:49:44.355 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:49:56.034 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:50:07.720 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:50:19.411 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:50:31.101 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:50:55.952 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:51:07.646 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:51:19.347 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:51:31.046 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:51:42.742 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:52:08.654 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:52:20.351 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:52:32.048 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:52:43.747 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:52:55.451 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:53:20.317 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:53:32.011 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:53:43.703 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:53:55.396 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:54:07.092 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:54:32.172 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:54:43.862 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:54:55.565 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:55:07.256 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:55:18.944 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:55:44.719 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:55:56.411 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:56:08.100 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:56:19.793 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:56:31.499 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:56:56.307 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:57:08.011 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:57:19.701 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:57:31.404 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:57:43.110 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:58:07.935 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:58:19.633 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:58:31.328 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:58:43.028 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:58:54.726 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:59:20.462 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:59:32.164 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:59:43.872 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 02:59:55.570 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:00:07.269 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:00:32.128 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:00:43.847 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:00:55.555 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:01:07.263 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:01:18.970 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:01:44.824 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:01:56.517 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:02:08.218 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:02:19.923 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:02:31.635 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:02:56.434 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:03:08.163 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:03:19.902 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:03:31.612 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:03:43.347 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:04:08.483 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:04:20.215 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:04:31.932 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:04:43.645 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:04:55.356 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:05:20.148 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:05:31.896 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:05:43.630 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:05:55.369 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:06:07.092 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:06:31.956 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:06:43.676 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:06:55.391 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:07:07.110 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:07:18.825 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:07:44.819 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:07:56.547 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:08:08.280 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:08:19.996 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:08:31.727 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:08:56.644 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:09:08.360 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:09:20.072 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:09:31.807 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:09:43.534 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:10:08.421 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:10:20.142 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:10:31.865 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:10:43.587 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:10:55.307 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:11:20.172 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:11:31.895 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:11:43.611 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:11:55.331 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:12:07.053 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:12:31.997 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:12:43.721 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:12:55.439 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:13:07.164 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:13:18.889 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:13:45.117 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:13:56.848 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:14:08.577 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:14:20.304 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:14:32.031 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:14:55.956 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:15:07.673 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:15:19.411 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:15:31.126 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:15:42.847 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:16:08.804 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:16:20.521 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:16:32.241 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:16:43.956 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:16:55.676 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:17:20.581 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:17:32.309 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:17:44.046 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:17:55.780 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:18:07.505 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:18:32.437 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:18:44.185 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:18:55.911 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:19:07.649 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:19:19.370 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:19:44.394 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:19:56.134 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:20:07.897 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:20:19.633 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:20:31.372 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:20:56.349 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:21:08.085 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:21:19.820 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:21:31.561 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:21:43.303 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:22:08.333 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:22:20.072 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:22:31.814 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:22:43.569 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:22:55.323 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:23:20.906 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:23:32.650 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:23:44.377 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:23:56.114 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:24:07.851 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:24:32.841 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:24:44.579 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:24:56.310 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:25:08.046 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:25:19.784 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:25:44.691 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:25:56.428 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:26:08.170 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:26:19.908 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:26:31.649 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:26:56.607 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:27:08.345 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:27:20.068 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:27:31.810 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:27:43.553 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:28:08.497 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:28:20.243 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:28:31.979 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:28:43.731 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:28:55.461 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:29:20.415 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:29:32.177 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:29:43.962 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:29:55.712 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:30:07.443 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:30:32.419 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:30:44.165 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:30:55.923 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:31:07.686 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:31:19.448 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:31:44.437 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:31:56.180 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:32:07.929 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:32:19.734 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:32:31.501 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:32:56.815 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:33:08.559 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:33:20.319 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:33:32.064 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:33:43.802 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:34:08.880 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:34:20.621 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:34:32.357 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:34:44.098 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:34:55.839 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:35:20.716 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:35:32.466 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:35:44.225 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:35:55.980 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:36:07.719 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:36:32.710 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:36:44.468 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:36:56.216 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:37:07.972 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:37:19.723 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:37:44.694 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:37:56.457 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:38:08.213 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:38:19.966 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:38:31.701 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:38:56.742 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:39:08.501 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:39:20.239 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:39:32.004 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:39:43.758 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:40:08.777 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:40:20.536 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:40:32.287 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:40:44.039 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:40:55.792 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:41:20.719 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:41:32.467 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:41:44.219 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:41:55.987 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:42:07.778 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:42:33.043 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:42:44.783 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:42:56.539 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:43:08.300 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:43:20.081 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:43:44.054 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:43:55.806 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:44:07.583 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:44:19.325 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:44:31.087 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:44:56.035 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:45:07.787 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:45:19.544 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:45:31.296 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:45:43.046 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:46:08.005 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:46:19.751 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:46:31.503 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:46:43.257 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:46:55.017 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:47:19.999 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:47:31.760 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:47:43.541 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:47:55.308 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:48:07.065 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:48:32.040 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:48:43.796 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:48:55.564 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:49:07.322 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:49:19.073 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:49:44.024 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:49:55.799 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:50:07.566 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:50:19.318 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:50:31.083 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:50:56.036 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:51:07.811 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:51:19.569 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:51:31.325 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:51:43.090 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:52:08.374 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:52:20.127 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:52:31.886 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:52:43.641 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:52:55.397 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:53:20.266 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:53:32.031 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:53:43.803 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:53:55.558 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:54:07.316 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:54:32.332 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:54:44.109 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:54:55.881 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:55:07.656 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:55:19.417 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:55:44.429 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:55:56.204 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:56:07.970 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:56:19.744 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:56:31.504 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:56:56.444 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:57:08.223 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:57:19.979 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:57:31.764 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:57:43.541 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:58:08.517 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:58:20.275 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:58:32.038 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:58:43.799 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:58:55.554 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:59:20.501 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:59:32.267 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:59:44.030 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 03:59:55.802 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:00:07.578 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:00:32.620 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:00:44.393 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:00:56.152 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:01:07.912 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:01:19.680 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:01:44.950 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:01:56.728 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:02:08.576 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:02:20.343 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:02:32.108 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:02:56.067 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:03:07.826 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:03:19.596 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:03:31.372 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:03:43.148 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:04:08.164 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:04:19.922 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:04:31.692 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:04:43.454 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:04:55.231 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:05:20.258 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:05:32.027 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:05:43.801 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:05:55.576 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:06:07.353 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:06:32.348 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:06:44.116 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:06:55.898 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:07:07.672 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:07:19.455 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:07:44.472 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:07:56.240 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:08:08.007 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:08:19.790 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:08:31.566 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:08:56.552 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:09:08.328 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:09:20.098 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:09:31.860 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:09:43.621 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:10:08.659 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:10:20.432 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:10:32.217 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:10:44.003 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:10:55.772 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:11:21.012 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:11:32.797 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:11:44.561 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:11:56.328 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:12:08.120 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:12:32.153 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:12:43.928 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:12:55.699 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:13:07.480 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:13:19.259 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:13:44.235 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:13:56.023 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:14:07.793 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:14:19.583 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:14:31.370 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:14:56.505 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:15:08.280 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:15:20.058 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:15:31.850 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:15:43.628 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:16:08.658 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:16:20.472 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:16:32.242 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:16:44.028 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:16:55.802 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:17:20.793 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:17:32.571 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:17:44.346 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:17:56.136 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:18:07.930 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:18:33.012 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:18:44.804 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:18:56.581 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:19:08.364 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:19:20.140 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:19:44.077 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:19:55.844 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:20:07.640 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:20:19.421 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:20:31.203 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:20:56.490 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:21:08.271 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:21:20.041 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:21:31.831 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:21:43.619 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:22:08.658 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:22:20.437 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:22:32.227 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:22:44.039 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:22:55.822 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:23:20.903 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:23:32.686 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:23:44.461 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:23:56.259 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:24:08.048 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:24:32.054 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:24:43.836 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:24:55.621 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:25:07.407 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:25:19.189 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:25:44.140 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:25:55.908 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:26:07.695 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:26:19.475 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:26:31.264 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:26:56.209 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:27:07.987 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:27:19.791 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:27:31.585 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:27:43.376 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:28:08.424 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:28:20.214 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:28:32.006 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:28:43.804 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:28:55.595 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:29:20.612 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:29:32.395 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:29:44.176 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:29:55.975 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:30:07.755 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:30:33.022 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:30:44.794 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:30:56.579 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:31:08.355 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:31:20.163 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:31:44.122 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:31:55.900 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:32:07.689 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:32:19.491 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:32:31.292 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:32:56.297 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:33:08.086 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:33:19.888 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:33:31.694 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:33:43.490 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:34:08.575 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:34:20.365 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:34:32.174 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:34:43.976 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:34:55.770 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:35:20.808 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:35:32.595 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:35:44.396 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:35:56.190 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:36:07.991 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:36:32.956 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:36:44.746 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:36:56.552 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:37:08.354 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:37:20.162 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:37:44.358 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:37:56.167 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:38:07.976 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:38:19.768 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:38:31.577 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:38:56.644 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:39:08.440 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:39:20.235 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:39:32.037 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:39:43.855 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:40:08.463 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:40:20.277 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:40:32.134 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:40:43.952 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:40:55.788 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:41:20.861 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:41:32.673 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:41:44.497 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:41:56.317 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:42:08.140 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:42:32.261 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:42:44.084 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:42:55.926 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:43:07.734 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:43:19.556 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:43:44.644 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:43:56.468 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:44:08.289 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:44:20.098 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:44:31.946 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:44:56.114 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:45:07.966 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:45:19.767 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:45:31.574 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:45:43.378 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:46:08.438 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:46:20.244 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:46:32.066 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:46:43.875 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:46:55.673 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:47:20.658 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:47:32.458 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:47:44.264 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:47:56.072 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:48:07.882 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:48:32.982 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:48:44.783 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:48:56.593 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:49:08.406 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:49:20.221 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:49:44.656 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:49:56.475 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:50:08.285 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:50:20.131 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:50:31.926 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:50:56.963 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:51:08.770 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:51:20.592 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:51:32.413 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:51:44.218 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:52:08.283 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:52:20.111 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:52:31.933 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:52:43.745 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:52:55.556 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:53:20.620 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:53:32.426 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:53:44.237 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:53:56.040 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:54:07.845 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:54:32.889 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:54:44.711 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:54:56.526 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:55:08.333 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:55:20.166 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:55:44.197 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:55:56.013 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:56:07.818 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:56:19.624 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:56:31.436 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:56:56.542 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:57:08.355 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:57:20.178 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:57:31.999 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:57:43.815 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:58:08.823 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:58:20.649 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:58:32.475 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:58:44.298 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:58:56.128 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:59:20.581 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:59:32.426 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:59:44.242 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 04:59:56.064 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:00:07.897 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:00:33.036 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:00:44.865 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:00:56.685 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:01:08.509 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:01:20.353 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:01:44.518 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:01:56.361 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:02:08.167 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:02:19.984 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:02:31.816 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:02:56.944 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:03:08.788 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:03:20.614 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:03:32.455 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:03:44.292 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:04:08.411 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:04:20.249 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:04:32.069 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:04:43.898 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:04:55.719 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:05:20.837 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:05:32.669 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:05:44.491 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:05:56.318 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:06:08.146 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:06:32.284 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:06:44.136 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:06:55.959 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:07:07.790 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:07:19.619 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:07:44.729 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:07:56.556 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:08:08.398 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:08:20.219 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:08:32.052 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:08:56.475 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:09:08.290 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:09:20.117 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:09:31.937 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:09:43.775 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:10:08.873 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:10:20.701 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:10:32.532 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:10:44.361 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:10:56.189 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:11:20.318 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:11:32.148 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:11:43.972 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:11:55.797 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:12:07.636 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:12:32.807 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:12:44.636 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:12:56.464 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:13:08.290 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:13:20.103 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:13:44.202 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:13:56.020 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:14:07.831 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:14:19.646 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:14:31.478 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:14:56.596 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:15:08.430 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:15:20.273 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:15:32.104 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:15:43.948 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:16:08.115 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:16:19.948 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:16:31.801 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:16:43.630 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:16:55.522 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:17:20.679 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:17:32.503 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:17:44.321 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:17:56.150 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:18:07.995 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:18:32.455 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:18:44.294 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:18:56.129 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:19:07.986 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:19:19.832 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:19:44.981 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:19:56.839 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:20:08.682 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:20:20.529 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:20:32.369 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:20:56.425 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:21:08.281 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:21:20.100 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:21:31.928 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:21:43.757 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:22:08.941 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:22:20.782 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:22:32.615 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:22:44.444 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:22:56.303 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:23:20.405 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:23:32.239 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:23:44.095 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:23:55.932 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:24:07.772 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:24:33.007 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:24:44.875 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:24:56.718 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:25:08.559 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:25:20.431 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:25:44.760 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:25:56.597 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:26:08.446 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:26:20.303 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:26:32.153 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:26:56.314 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:27:08.170 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:27:20.019 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:27:31.859 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:27:43.681 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:28:09.090 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:28:20.928 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:28:32.787 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:28:44.614 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:28:56.461 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:29:20.665 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:29:32.506 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:29:44.353 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:29:56.214 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:30:08.049 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:30:32.223 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:30:44.075 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:30:55.924 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:31:07.777 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:31:19.615 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:31:44.712 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:31:56.576 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:32:08.421 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:32:20.270 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:32:32.113 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:32:56.284 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:33:08.128 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:33:19.976 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:33:31.843 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:33:43.695 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:34:08.897 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:34:20.736 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:34:32.608 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:34:44.450 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:34:56.298 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:35:20.506 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:35:32.360 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:35:44.218 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:35:56.087 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:36:07.937 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:36:32.173 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:36:44.023 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:36:55.881 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:37:07.728 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:37:19.609 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:37:44.987 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:37:56.852 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:38:08.706 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:38:20.556 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:38:32.400 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:38:56.509 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:39:08.361 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:39:20.217 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:39:32.076 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:39:43.945 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:40:08.140 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:40:19.990 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:40:31.829 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:40:43.663 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:40:55.508 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:41:20.529 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:41:32.370 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:41:44.229 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:41:56.093 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:42:07.945 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:42:33.038 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:42:44.903 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:42:56.760 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:43:08.925 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:43:20.786 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:43:44.886 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:43:56.732 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:44:08.580 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:44:20.425 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:44:32.275 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:44:56.445 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:45:08.295 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:45:20.149 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:45:32.007 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:45:43.840 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:46:08.137 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:46:19.989 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:46:31.841 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:46:43.708 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:46:55.571 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:47:21.162 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:47:33.027 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:47:44.869 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:47:56.787 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:48:08.628 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:48:32.800 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:48:44.659 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:48:56.521 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:49:08.420 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:49:20.272 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:49:44.505 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:49:56.356 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:50:08.231 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:50:20.081 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:50:31.961 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:50:57.082 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:51:08.931 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:51:20.782 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:51:32.640 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:51:44.507 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:52:08.648 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:52:20.516 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:52:32.408 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:52:44.302 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:52:56.166 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:53:20.307 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:53:32.175 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:53:44.022 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:53:55.943 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:54:07.824 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:54:33.149 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:54:45.009 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:54:56.869 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:55:08.739 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:55:20.621 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:55:44.784 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:55:56.638 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:56:08.500 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:56:20.356 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:56:32.224 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:56:56.696 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:57:08.566 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:57:20.426 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:57:32.284 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:57:44.152 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:58:08.388 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:58:20.264 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:58:32.151 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:58:44.012 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:58:55.882 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:59:20.167 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:59:32.029 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:59:43.918 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 05:59:55.783 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:00:07.668 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:00:32.980 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:00:44.843 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:00:56.733 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:01:08.608 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:01:20.481 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:01:44.608 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:01:56.464 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:02:08.325 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:02:20.186 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:02:32.052 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:02:56.221 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:03:08.089 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:03:19.967 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:03:31.838 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:03:43.717 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:04:08.872 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:04:20.752 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:04:32.623 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:04:44.504 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:04:56.376 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:05:20.518 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:05:32.392 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:05:44.287 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:05:56.152 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:06:08.012 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:06:32.535 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:06:44.409 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:06:56.280 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:07:08.153 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:07:20.038 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:07:44.292 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:07:56.154 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:08:08.032 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:08:19.917 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:08:31.793 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:08:56.900 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:09:08.787 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:09:20.672 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:09:32.538 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:09:44.419 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:10:08.613 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:10:20.479 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:10:32.356 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:10:44.249 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:10:56.108 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:11:20.286 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:11:32.160 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 2 seconds...
+{'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}, retrying in 4 seconds...
+2024-05-08 06:11:44.068 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction call is not expected'}
+full path: /home/adam/.bittensor/miners/coldkey/hotkey/netuid143/validator
+2024-05-08 06:12:47.028 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1014, 'message': 'Priority is too low: (18446744073709551615 vs 18446744073709551615)', 'data': 'The transaction has too low priority to replace another transaction already in the pool.'}, retrying in 2 seconds...
+{'code': 1014, 'message': 'Priority is too low: (18446744073709551615 vs 18446744073709551615)', 'data': 'The transaction has too low priority to replace another transaction already in the pool.'}, retrying in 4 seconds...
+full path: /home/adam/.bittensor/miners/coldkey/hotkey/netuid143/validator
+2024-05-10 13:15:57.513 | WARNING | - No non-zero weights returning all ones. -
+{'code': 1014, 'message': 'Priority is too low: (18446744073709551615 vs 18446744073709551615)', 'data': 'The transaction has too low priority to replace another transaction already in the pool.'}, retrying in 2 seconds...
+{'code': 1014, 'message': 'Priority is too low: (18446744073709551615 vs 18446744073709551615)', 'data': 'The transaction has too low priority to replace another transaction already in the pool.'}, retrying in 4 seconds...
+2024-05-10 13:16:12.203 | WARNING | Set weights - - Failed: {'code': 1010, 'message': 'Invalid Transaction', 'data': 'Transaction is outdated'}
diff --git a/ocr_subnet/utils/image.py b/ocr_subnet/utils/image.py
deleted file mode 100644
index ed05dc8..0000000
--- a/ocr_subnet/utils/image.py
+++ /dev/null
@@ -1,52 +0,0 @@
-import io
-import fitz
-import base64
-
-from typing import List
-from PIL import Image, ImageDraw
-
-
-def serialize(image: Image, format: str="JPEG") -> str:
- """Converts PIL image to base64 string.
- """
-
- buffer = io.BytesIO()
- image.save(buffer, format=format)
- byte_string = buffer.getvalue()
- base64_string = base64.b64encode(byte_string).decode()
- return base64_string
-
-
-def deserialize(base64_string: str) -> Image:
- """Converts base64 string to PIL image.
- """
- decoded_string = base64.b64decode(base64_string)
- buffer = io.BytesIO(decoded_string)
- return Image.open(buffer)
-
-
-def load(pdf_path: str, page: int=0, zoom_x: float=1.0, zoom_y: float=1.0) -> Image:
- """Loads pdf image and converts to PIL image
- """
-
- # Read the pdf into memory
- pdf = fitz.open(pdf_path)
- page = pdf[page]
-
- # Set zoom factors for x and y axis (1.0 means 100%)
- mat = fitz.Matrix(zoom_x, zoom_y)
- pix = page.get_pixmap(matrix=mat)
- img_data = io.BytesIO(pix.tobytes('png'))
-
- # convert to PIL image
- return Image.open(img_data)
-
-def draw_boxes(image: Image, response: List[dict], color='red'):
- """Draws boxes around text on the image
- """
-
- draw = ImageDraw.Draw(image)
- for item in response:
- draw.rectangle(item['position'], outline=color)
-
- return image
\ No newline at end of file
diff --git a/ocr_subnet/utils/process.py b/ocr_subnet/utils/process.py
deleted file mode 100644
index aa3e6e5..0000000
--- a/ocr_subnet/utils/process.py
+++ /dev/null
@@ -1,64 +0,0 @@
-# The MIT License (MIT)
-# Copyright © 2023 Yuma Rao
-
-# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
-# documentation files (the “Software”), to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
-# and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-# The above copyright notice and this permission notice shall be included in all copies or substantial portions of
-# the Software.
-
-# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
-# THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-# DEALINGS IN THE SOFTWARE.
-
-from typing import List
-
-def group_and_merge_boxes(data: List[dict], xtol: int=25, ytol: int=5) -> List[dict]:
- """
- Combines boxes that are close together into a single box so that the text is grouped into sections.
-
- Args:
- - data (list): List of dictionaries containing the position, font and text of each section
- - xtol (int): Maximum distance between boxes in the x direction to be considered part of the same section
- - ytol (int): Maximum distance between boxes in the y direction to be considered part of the same section
-
- Returns:
- - list: List of dictionaries containing the position, font and text of each section
- """
- # Ensure all data items are valid and have a 'position' key
- data = [box for box in data if box is not None and 'position' in box]
-
- # Step 1: Group boxes by lines
- lines = []
- for box in data:
- added_to_line = False
- for line in lines:
- if line and abs(line[0]['position'][1] - box['position'][1]) <= ytol:
- line.append(box)
- added_to_line = True
- break
- if not added_to_line:
- lines.append([box])
-
- # Step 2: Sort and merge within each line
- merged_data = []
- for line in lines:
- line.sort(key=lambda item: item['position'][0]) # Sort by x1
- i = 0
- while i < len(line) - 1:
- box1 = line[i]['position']
- box2 = line[i + 1]['position']
- if abs(box1[2] - box2[0]) <= xtol: # Check horizontal proximity
- new_box = {'position': [min(box1[0], box2[0]), min(box1[1], box2[1]), max(box1[2], box2[2]), max(box1[3], box2[3])],
- 'text': line[i]['text'] + ' ' + line[i + 1]['text']}
- line[i] = new_box
- del line[i + 1]
- else:
- i += 1
- merged_data.extend(line)
-
- return merged_data
\ No newline at end of file
diff --git a/ocr_subnet/validator/__init__.py b/ocr_subnet/validator/__init__.py
deleted file mode 100644
index 090e9ed..0000000
--- a/ocr_subnet/validator/__init__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# from .forward import forward
-from .reward import get_rewards
-from .generate import invoice
diff --git a/ocr_subnet/validator/corrupt.py b/ocr_subnet/validator/corrupt.py
deleted file mode 100644
index 77d000e..0000000
--- a/ocr_subnet/validator/corrupt.py
+++ /dev/null
@@ -1,87 +0,0 @@
-# The MIT License (MIT)
-# Copyright © 2023 Yuma Rao
-
-# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
-# documentation files (the “Software”), to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
-# and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-# The above copyright notice and this permission notice shall be included in all copies or substantial portions of
-# the Software.
-
-# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
-# THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-# DEALINGS IN THE SOFTWARE.
-
-import math
-import random
-from PIL import ImageFilter, ImageDraw
-from ocr_subnet.utils.image import load
-
-
-def corrupt_image(load_path: str, save_path: str, border: int=50, noise: float=0.1, spot: tuple[int]=(100,100), scale: float=0.95, theta: float=0.2, blur: float=0.5):
- """
- Applies transformations to pdf in order to make the document harder to parse
-
- Args:
- load_path (str): Path of original document
- save_path (str): Path to save corrupted document
- border (int, optional): Add border effect. Defaults to 50.
- noise (float, optional): Add noise effect. Defaults to 0.1.
- spot (tuple[int], optional): Add localized noise. Defaults to (100,100).
- scale (float, optional): Rescale image. Defaults to 0.95.
- theta (float, optional): Apply rotation. Defaults to 0.2.
- blur (float, optional): Add blur effect. Defaults to 0.5.
- """
-
- image = load(load_path, zoom_x=1.5, zoom_y=1.5)
-
- width, height = image.size
-
- # # imitate curled page by making the top-right and bottom-left corners go slightly up and darkening the edges
- if border is not None:
- for x in range(1,border):
- tone = 256 - int(250*(x/border-1)**2)
- for y in range(height):
- # only update color if the pixel is white
- if min(image.getpixel((x,y))) < 20:
- continue
- image.putpixel((x, y), (tone, tone, tone))
- image.putpixel((width-x, y), (tone, tone, tone))
-
- # Apply noise
- if noise is not None:
- draw = ImageDraw.Draw(image)
- for _ in range(int(width * height * noise)):
- x = random.randint(0, width - 1)
- y = random.randint(0, height - 1)
- delta = random.gauss(0,10)
- rgb = tuple([int(min(max(0,val+delta),256)) for val in image.getpixel((x,y))])
- draw.point((x, y), fill=rgb)
-
- if spot is not None:
- draw = ImageDraw.Draw(image)
- for _ in range(int(width * height * noise)):
- x = random.randint(0, width - 1)
- y = random.randint(0, height - 1)
- delta = 10000 / (1 + math.sqrt((spot[0]-x)**2 + (spot[1]-y)**2))
- rgb = tuple([int(min(max(0,val-delta),256)) for val in image.getpixel((x,y))])
- draw.point((x, y), fill=rgb)
-
- # rescale the image within 10% to 20%
- if scale is not None:
- image = image.resize(size=(int(scale*width), int(scale*height)))
-
- # apply a rotation
- if theta is not None:
- image = image.rotate(theta, expand=True)
-
- # Apply blur
- if blur is not None:
- image = image.filter(ImageFilter.GaussianBlur(blur))
-
- # Save processed images back as a PDF
- image.save(save_path, "PDF", resolution=100.0, save_all=True)
-
diff --git a/ocr_subnet/validator/generate.py b/ocr_subnet/validator/generate.py
deleted file mode 100644
index 4edac34..0000000
--- a/ocr_subnet/validator/generate.py
+++ /dev/null
@@ -1,177 +0,0 @@
-# The MIT License (MIT)
-# Copyright © 2023 Yuma Rao
-
-# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
-# documentation files (the “Software”), to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
-# and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-# The above copyright notice and this permission notice shall be included in all copies or substantial portions of
-# the Software.
-
-# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
-# THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-# DEALINGS IN THE SOFTWARE.
-
-import datetime
-import random
-
-from typing import List
-
-from faker import Faker
-
-from reportlab.lib.pagesizes import letter
-from reportlab.pdfgen import canvas
-from reportlab.pdfbase import pdfmetrics
-
-from ocr_subnet.validator.corrupt import corrupt_image
-from ocr_subnet.utils.image import load, serialize
-
-seed = 0
-fake = Faker()
-# Seed the Faker instance
-fake.seed_instance(seed)
-
-# set random seed
-random.seed(seed)
-
-def apply_invoice_template(invoice_data: dict, path: str) -> List[dict]:
- """
- Generates an invoice from raw data and saves as pdf
-
- Args:
- - invoice_data (dict): contents of invoice
- - path (str): path to save pdf file
-
- Returns:
- - List[dict]: contents of invoice with text, position and font information for each section
- """
-
- c = canvas.Canvas(path, pagesize=letter)
- w, h = c._pagesize
- c.setLineWidth(.3)
-
- font_name = random.choice(['Helvetica','Times-Roman'])
- font_size = random.choice([10, 11, 12])
- c.setFont(font_name, font_size)
-
- data = []
- def write_text(x, y, text):
- c.drawString(x, y, text)
- # scale x and y by the page size and estimate bounding box based on font size
- # position = [x0, y0, x1, y1]
- text_width = pdfmetrics.stringWidth(text, font_name, font_size)
- position = [
- x/w,
- 1 - (y - 0.2*font_size)/h,
- (x + text_width)/w,
- 1 - (y + 0.8*font_size)/h
- ]
-
- data.append({'position': position, 'text': text, 'font': {'family': font_name, 'size': font_size}})
-
- # Draw the invoice header
- write_text(30, 750, invoice_data['company_name'])
-
- write_text(400, 750, "Invoice Date: " + invoice_data['invoice_date'])
- write_text(400, 735, "Invoice #: " + invoice_data['invoice_number'])
-
- write_text(30, 735, invoice_data['company_address'])
- write_text(30, 720, invoice_data['company_city_zip'])
-
- # Draw the bill to section
- write_text(30, 690, "Bill To:")
- write_text(120, 690, invoice_data['customer_name'])
-
- # Table headers
- write_text(30, 650, "Description")
- write_text(300, 650, "Qty")
- write_text(460, 650, "Cost")
- c.line(30, 645, 560, 645)
-
- # List items
- line_height = 625
- total = 0
- for item in invoice_data['items']:
- write_text(30, line_height, item['desc'])
- write_text(300, line_height, str(item['qty']))
- write_text(460, line_height, "${:.2f}".format(item['cost']))
- total += item['qty'] * item['cost']
- line_height -= 15
-
- # Draw the total cost
- write_text(400, line_height - 15, f"Total: ${total:,.2f}" )
-
- # Terms and Conditions
- write_text(30, line_height - 45, "Terms:")
- write_text(120, line_height - 45, invoice_data['terms'])
-
- c.save()
- return data
-
-
-def invoice(path: str, n_items: int=None, corrupt: bool=True) -> dict:
- """Create a synthetic invoice and save as pdf
-
- Args:
- path (str): Path to save invoice document.
- n_items (int): Number of items in document. Defaults to None.
- corrupt (bool): Make the document harder to parse by adding noise etc.
-
- Returns:
- _type_: _description_
- """
-
- items_list = [
- {"desc": "Web hosting", "cost": 100.00},
- {"desc": "Domain registration", "cost": 10.00},
- {"desc": "SSL certificate", "cost": 5.50},
- {"desc": "Web design", "cost": 500.00},
- {"desc": "Web development", "cost": 500.00},
- {"desc": "SEO", "cost": 100.00},
- {"desc": "Content creation", "cost": 300.00},
- {"desc": "Social media marketing", "cost": 400.00},
- {"desc": "Email marketing", "cost": 150.00},
- {"desc": "PPC advertising", "cost": 200.00},
- {"desc": "Analytics", "cost": 400.00},
- {"desc": "Consulting", "cost": 700.00},
- {"desc": "Training", "cost": 1200.00},
- {"desc": "Maintenance", "cost": 650.00},
- {"desc": "Support", "cost": 80.00},
- {"desc": "Graphic design", "cost": 310.00},
- {"desc": "Logo design", "cost": 140.00},
- {"desc": "Branding", "cost": 750.00},
- ]
- if n_items is None:
- n_items = random.randint(8, len(items_list))
-
- def random_items(n):
- items = sorted(random.sample(items_list, k=n), key=lambda x: x['desc'])
- return [{**item, 'qty':random.randint(1,5)} for item in items]
-
- # Sample data for the invoice
- invoice_info = {
- "company_name": fake.company(),
- "company_address": fake.address(),
- "company_city_zip": f'{fake.city()}, {fake.zipcode()}',
- "company_phone": fake.phone_number(),
- "customer_name": fake.name(),
- "invoice_date": datetime.date.fromtimestamp(1700176424-random.random()*5e8).strftime("%B %d, %Y"),
- "invoice_number": f"INV{random.randint(1,10000):06}",
- "items": random_items(n_items),
- "terms": f"Payment due within {random.choice([7, 14, 30, 60, 90])} days"
- }
-
- # Use the function and pass the data and the filename you want to save as
- data = apply_invoice_template(invoice_info, path)
-
- # overwrite image file with corrupted version
- if corrupt:
- corrupt_image(path, path)
-
- image = load(path)
- base64_image = serialize(image)
-
- return {'image':image, 'labels':data, 'path':path, 'base64_image': base64_image}
diff --git a/ocr_subnet/validator/reward.py b/ocr_subnet/validator/reward.py
deleted file mode 100644
index e8c36b3..0000000
--- a/ocr_subnet/validator/reward.py
+++ /dev/null
@@ -1,205 +0,0 @@
-# The MIT License (MIT)
-# Copyright © 2023 Yuma Rao
-
-# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
-# documentation files (the “Software”), to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
-# and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-# The above copyright notice and this permission notice shall be included in all copies or substantial portions of
-# the Software.
-
-# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
-# THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-# DEALINGS IN THE SOFTWARE.
-
-import torch
-import bittensor as bt
-from typing import List
-
-from scipy.optimize import linear_sum_assignment
-
-from ocr_subnet.protocol import OCRSynapse
-
-
-def get_position_reward(boxA: List[float], boxB: List[float] = None):
- """
- Calculate the intersection over union (IoU) of two bounding boxes.
-
- Args:
- - boxA (list): Bounding box coordinates of box A in the format [x1, y1, x2, y2].
- - boxB (list): Bounding box coordinates of box B in the format [x1, y1, x2, y2].
-
- Returns:
- - float: The IoU value, ranging from 0 to 1.
- """
- if not boxB:
- return 0.0
-
- xA = max(boxA[0], boxB[0])
- yA = max(boxA[1], boxB[1])
- xB = min(boxA[2], boxB[2])
- yB = min(boxA[3], boxB[3])
-
- intersection_area = max(0, xB - xA + 1) * max(0, yB - yA + 1)
-
- boxA_area = (boxA[2] - boxA[0] + 1) * (boxA[3] - boxA[1] + 1)
- boxB_area = (boxB[2] - boxB[0] + 1) * (boxB[3] - boxB[1] + 1)
-
- iou = intersection_area / float(boxA_area + boxB_area - intersection_area)
-
- return iou
-
-def get_text_reward(text1: str, text2: str = None):
- """
- Calculate the edit distance between two strings.
-
- Args:
- - text1 (str): The first string.
- - text2 (str): The second string.
-
- Returns:
- - float: The edit distance between the two strings. Normalized to be between 0 and 1.
- """
- if not text2:
- return 0.0
-
- return 1 - editdistance.eval(text1, text2) / max(len(text1), len(text2))
-
-def get_font_reward(font1: dict, font2: dict = None, alpha_size=1.0, alpha_family=1.0):
- """
- Calculate the distance between two fonts, based on the font size and font family.
-
- Args:
- - font1 (dict): The first font.
- - font2 (dict): The second font.
-
- Returns:
- - float: The distance between the two fonts. Normalized to be between 0 and 1.
- """
- if not font2:
- return 0.0
-
- font_size_score = ( 1 - abs(font1['size'] - font2['size']) / max(font1['size'], font2['size']) )
- font_family_score = alpha_family * float(font1['family'] == font2['family'])
- return (alpha_size * font_size_score + alpha_family * font_family_score) / (alpha_size + alpha_family)
-
-def section_reward(label: dict, pred: dict, alpha_p=1.0, alpha_f=1.0, alpha_t=1.0, verbose=False):
- """
- Score a section of the image based on the section's correctness.
- Correctness is defined as:
- - the intersection over union of the bounding boxes,
- - the delta between the predicted font and the ground truth font,
- - and the edit distance between the predicted text and the ground truth text.
-
- Args:
- - label (dict): The ground truth data for the section.
- - pred (dict): The predicted data for the section.
-
- Returns:
- - float: The score for the section. Bounded between 0 and 1.
- """
- reward = {
- 'text': get_text_reward(label['text'], pred.get('text')),
- 'position': get_position_reward(label['position'], pred.get('position')),
- 'font': get_font_reward(label['font'], pred.get('font')),
- }
-
- reward['total'] = (alpha_t * reward['text'] + alpha_p * reward['position'] + alpha_f * reward['font']) / (alpha_p + alpha_f + alpha_t)
-
- if verbose:
- bt.logging.info(', '.join([f"{k}: {v:.3f}" for k,v in reward.items()]))
-
- return reward
-
-def sort_predictions(labels: List[dict], predictions: List[dict], draw=False) -> List[dict]:
- """
- Sort the predictions to match the order of the ground truth data using the Hungarian algorithm.
-
- Args:
- - labels (list): The ground truth data for the image.
- - predictions (list): The predicted data for the image.
-
- Returns:
- - list: The sorted predictions.
- """
-
- # First, make sure that the predictions is at least as long as the image data
- predictions += [{}] * (len(labels) - len(predictions))
- r = torch.zeros((len(labels), len(predictions)))
- for i in range(r.shape[0]):
- for j in range(r.shape[1]):
- r[i,j] = section_reward(labels[i], predictions[j])['total']
-
- # Use the Hungarian algorithm to find the best assignment
- row_indices, col_indices = linear_sum_assignment(r, maximize=True)
-
- sorted_predictions = [predictions[i] for i in col_indices]
-
- return sorted_predictions
-
-
-def reward(self, labels: List[dict], response: OCRSynapse) -> float:
- """
- Reward the miner response to the OCR request. This method returns a reward
- value for the miner, which is used to update the miner's score.
-
- Args:
- - labels (List[dict]): The true data underlying the image sent to the miner.
- - response (OCRSynapse): Response from the miner.
-
- The expected fields in each section of the response are:
- - position (List[int]): The bounding box of the section e.g. [x0, y0, x1, y1]
- - font (dict): The font of the section e.g. {'family': 'Times New Roman', 'size':12}
- - text (str): The text of the section e.g. 'Hello World!'
-
- Returns:
- - float: The reward value for the miner.
- """
- predictions = response.response
- if predictions is None:
- return 0.0
-
- # Sort the predictions to match the order of the ground truth data as best as possible
- predictions = sort_predictions(labels, predictions)
-
- alpha_p = self.config.neuron.alpha_position
- alpha_t = self.config.neuron.alpha_text
- alpha_f = self.config.neuron.alpha_font
- alpha_prediction = self.config.neuron.alpha_prediction
- alpha_time = self.config.neuron.alpha_time
-
- # Take mean score over all sections in document (note that we don't penalize extra sections)
- section_rewards = [
- section_reward(label, pred, verbose=True, alpha_f=alpha_f, alpha_p=alpha_p, alpha_t=alpha_t)
- for label, pred in zip(labels, predictions)
- ]
- prediction_reward = torch.mean(torch.FloatTensor([reward['total'] for reward in section_rewards]))
-
- time_reward = max(1 - response.time_elapsed / self.config.neuron.timeout, 0)
- total_reward = (alpha_prediction * prediction_reward + alpha_time * time_reward) / (alpha_prediction + alpha_time)
-
- bt.logging.info(f"prediction_reward: {prediction_reward:.3f}, time_reward: {time_reward:.3f}, total_reward: {total_reward:.3f}")
- return total_reward
-
-def get_rewards(
- self,
- labels: List[dict],
- responses: List[OCRSynapse],
-) -> torch.FloatTensor:
- """
- Returns a tensor of rewards for the given image and responses.
-
- Args:
- - image (List[dict]): The true data underlying the image sent to the miner.
- - responses (List[OCRSynapse]): A list of responses from the miner.
-
- Returns:
- - torch.FloatTensor: A tensor of rewards for the given image and responses.
- """
- # Get all the reward results by iteratively calling your reward() function.
- return torch.FloatTensor(
- [reward(self, labels, response) for response in responses]
- ).to(self.device)
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..34e1790
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,6 @@
+{
+ "name": "infinite_games",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {}
+}
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..0967ef4
--- /dev/null
+++ b/package.json
@@ -0,0 +1 @@
+{}
diff --git a/requirements.txt b/requirements.txt
index c924654..091f986 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,11 +1,5 @@
-bittensor
-torch
-pytesseract
-pandas
-faker
-scipy
-Pillow
-PyMuPDF
-reportlab
-pdf2image
-editdistance
\ No newline at end of file
+bittensor==7.0.1
+torch==2.3.0
+pandas==2.2.2
+loguru==0.7.2
+wandb==0.17.0
\ No newline at end of file
diff --git a/scripts/check_compatibility.sh b/scripts/check_compatibility.sh
deleted file mode 100755
index b0bd6b4..0000000
--- a/scripts/check_compatibility.sh
+++ /dev/null
@@ -1,76 +0,0 @@
-#!/bin/bash
-
-if [ -z "$1" ]; then
- echo "Please provide a Python version as an argument."
- exit 1
-fi
-
-python_version="$1"
-all_passed=true
-
-GREEN='\033[0;32m'
-YELLOW='\033[0;33m'
-RED='\033[0;31m'
-NC='\033[0m' # No Color
-
-check_compatibility() {
- all_supported=0
-
- while read -r requirement; do
- # Skip lines starting with git+
- if [[ "$requirement" == git+* ]]; then
- continue
- fi
-
- package_name=$(echo "$requirement" | awk -F'[!=<>]' '{print $1}' | awk -F'[' '{print $1}') # Strip off brackets
- echo -n "Checking $package_name... "
-
- url="https://pypi.org/pypi/$package_name/json"
- response=$(curl -s $url)
- status_code=$(curl -s -o /dev/null -w "%{http_code}" $url)
-
- if [ "$status_code" != "200" ]; then
- echo -e "${RED}Information not available for $package_name. Failure.${NC}"
- all_supported=1
- continue
- fi
-
- classifiers=$(echo "$response" | jq -r '.info.classifiers[]')
- requires_python=$(echo "$response" | jq -r '.info.requires_python')
-
- base_version="Programming Language :: Python :: ${python_version%%.*}"
- specific_version="Programming Language :: Python :: $python_version"
-
- if echo "$classifiers" | grep -q "$specific_version" || echo "$classifiers" | grep -q "$base_version"; then
- echo -e "${GREEN}Supported${NC}"
- elif [ "$requires_python" != "null" ]; then
- if echo "$requires_python" | grep -Eq "==$python_version|>=$python_version|<=$python_version"; then
- echo -e "${GREEN}Supported${NC}"
- else
- echo -e "${RED}Not compatible with Python $python_version due to constraint $requires_python.${NC}"
- all_supported=1
- fi
- else
- echo -e "${YELLOW}Warning: Specific version not listed, assuming compatibility${NC}"
- fi
- done < requirements.txt
-
- return $all_supported
-}
-
-echo "Checking compatibility for Python $python_version..."
-check_compatibility
-if [ $? -eq 0 ]; then
- echo -e "${GREEN}All requirements are compatible with Python $python_version.${NC}"
-else
- echo -e "${RED}All requirements are NOT compatible with Python $python_version.${NC}"
- all_passed=false
-fi
-
-echo ""
-if $all_passed; then
- echo -e "${GREEN}All tests passed.${NC}"
-else
- echo -e "${RED}All tests did not pass.${NC}"
- exit 1
-fi
diff --git a/scripts/check_requirements_changes.sh b/scripts/check_requirements_changes.sh
deleted file mode 100755
index a06d050..0000000
--- a/scripts/check_requirements_changes.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-# Check if requirements files have changed in the last commit
-if git diff --name-only HEAD~1 | grep -E 'requirements.txt|requirements.txt'; then
- echo "Requirements files have changed. Running compatibility checks..."
- echo 'export REQUIREMENTS_CHANGED="true"' >> $BASH_ENV
-else
- echo "Requirements files have not changed. Skipping compatibility checks..."
- echo 'export REQUIREMENTS_CHANGED="false"' >> $BASH_ENV
-fi
diff --git a/scripts/noisy_invoice.pdf b/scripts/noisy_invoice.pdf
deleted file mode 100644
index 03ddcbb..0000000
Binary files a/scripts/noisy_invoice.pdf and /dev/null differ
diff --git a/scripts/noisy_invoice.png b/scripts/noisy_invoice.png
deleted file mode 100644
index b40efeb..0000000
Binary files a/scripts/noisy_invoice.png and /dev/null differ
diff --git a/scripts/ocr_concept.ipynb b/scripts/ocr_concept.ipynb
deleted file mode 100644
index ffd4f21..0000000
--- a/scripts/ocr_concept.ipynb
+++ /dev/null
@@ -1 +0,0 @@
-{"cells":[{"cell_type":"markdown","metadata":{"id":"KCYz0cGiJnBg"},"source":["# OCR Validator\n","This notebook contains a simple conceptual framework an optical character recognition (OCR) system. It is a part of the OCR subnet tutorial which can be found at XXXXX.\n","\n","A notebook such as this one is a suitable starting point for building a subnet. This is because it contains a well-defined incentive mechanism, which is the essence of a subnet.\n","\n","# Contents\n","1. Define validation flow (noisy images with text)\n","2. Define incentive mechanism (a reward function)\n","3. Define miner (pytesseract)"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":25570,"status":"ok","timestamp":1702505778039,"user":{"displayName":"Raj K","userId":"04232075365376767238"},"user_tz":480},"id":"NBY_hHYD2eyH","outputId":"8eddd8c0-8318-4adf-be37-7e982a682719"},"outputs":[],"source":["!pip install h5py\n","!pip install typing-extensions\n","!pip install wheel\n","!pip install bittensor PyMuPDF editdistance reportlab Pillow faker scipy plotly nbformat"]},{"cell_type":"code","execution_count":null,"metadata":{"executionInfo":{"elapsed":14,"status":"ok","timestamp":1702505778039,"user":{"displayName":"Raj K","userId":"04232075365376767238"},"user_tz":480},"id":"igRuJy2FwzXS"},"outputs":[],"source":["import os\n","import io\n","import math\n","import time\n","import fitz\n","import torch\n","import random\n","import datetime\n","import editdistance\n","\n","import bittensor as bt\n","import plotly.express as px\n","\n","from faker import Faker\n","from typing import List\n","from PIL import Image, ImageFilter, ImageDraw\n","from scipy.optimize import linear_sum_assignment\n","\n","from reportlab.lib.pagesizes import letter\n","from reportlab.pdfgen import canvas\n","from reportlab.pdfbase import pdfmetrics\n","\n","seed = 0\n","fake = Faker()\n","# Seed the Faker instance\n","fake.seed_instance(seed)\n","\n","# set random seed\n","random.seed(seed)"]},{"cell_type":"markdown","metadata":{"id":"M8Cf2XVUJnBh"},"source":["# 1. Validation flow\n","\n","Validation in this subnet consists of creating a pdf document (synthetic data generation) with ground truth data (pdf contents), and scoring miner responses based on how accurately they extract the contents. This can be thought of as a straightforward supervised learning problem.\n","\n","### Synthetic data generation\n","We choose to create synthetic invoice documents as the basis for validation. Faker is a very useful library that can be used to generate a plethora of different data types, and it is ideal for our quick prototype."]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":12,"status":"ok","timestamp":1702505778039,"user":{"displayName":"Raj K","userId":"04232075365376767238"},"user_tz":480},"id":"HwuRtYb_JnBi","outputId":"812a36ea-2207-40fa-82d1-3f0f96119792"},"outputs":[],"source":["# example usage of faker\n","for _ in range(5):\n"," print(f'Name: {fake.name():<20}, Phone: {fake.phone_number():<24}, City: {fake.city():<12}')"]},{"cell_type":"code","execution_count":null,"metadata":{"executionInfo":{"elapsed":11,"status":"ok","timestamp":1702505778039,"user":{"displayName":"Raj K","userId":"04232075365376767238"},"user_tz":480},"id":"SLc_G40-JnBi"},"outputs":[],"source":["def create_invoice(invoice_data, filename):\n"," \"\"\"\n"," Generates an invoice from raw data and saves as pdf\n","\n"," Args:\n"," - invoice_data (dict): contents of invoice\n"," - filename (str): path to save pdf file\n","\n"," Returns:\n"," - List[dict]: contents of invoice with text, position and font information for each section\n"," \"\"\"\n","\n"," c = canvas.Canvas(filename, pagesize=letter)\n"," w, h = c._pagesize\n"," c.setLineWidth(.3)\n","\n"," font_name = random.choice(['Helvetica','Times-Roman'])\n"," font_size = random.choice([10, 11, 12])\n"," c.setFont(font_name, font_size)\n","\n"," data = []\n"," def write_text(x, y, text):\n"," c.drawString(x, y, text)\n"," # scale x and y by the page size and estimate bounding box based on font size\n"," # position = [x0, y0, x1, y1]\n"," text_width = pdfmetrics.stringWidth(text, font_name, font_size)\n"," position = [\n"," x/w,\n"," 1 - (y - 0.2*font_size)/h,\n"," (x + text_width)/w,\n"," 1 - (y + 0.8*font_size)/h\n"," ]\n","\n"," data.append({'position': position, 'text': text, 'font': {'family': font_name, 'size': font_size}})\n","\n"," # Draw the invoice header\n"," write_text(30, 750, invoice_data['company_name'])\n","\n"," write_text(400, 750, \"Invoice Date: \" + invoice_data['invoice_date'])\n"," write_text(400, 735, \"Invoice #: \" + invoice_data['invoice_number'])\n","\n"," write_text(30, 735, invoice_data['company_address'])\n"," write_text(30, 720, invoice_data['company_city_zip'])\n","\n"," # Draw the bill to section\n"," write_text(30, 690, \"Bill To:\")\n"," write_text(120, 690, invoice_data['customer_name'])\n","\n"," # Table headers\n"," write_text(30, 650, \"Description\")\n"," write_text(300, 650, \"Qty\")\n"," write_text(460, 650, \"Cost\")\n"," c.line(30, 645, 560, 645)\n","\n"," # List items\n"," line_height = 625\n"," total = 0\n"," for item in invoice_data['items']:\n"," write_text(30, line_height, item['desc'])\n"," write_text(300, line_height, str(item['qty']))\n"," write_text(460, line_height, \"${:.2f}\".format(item['cost']))\n"," total += item['qty'] * item['cost']\n"," line_height -= 15\n","\n"," # Draw the total cost\n"," write_text(400, line_height - 15, f\"Total: ${total:,.2f}\" )\n","\n"," # Terms and Conditions\n"," write_text(30, line_height - 45, \"Terms:\")\n"," write_text(120, line_height - 45, invoice_data['terms'])\n","\n"," c.save()\n"," return data\n","\n"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":10,"status":"ok","timestamp":1702505778039,"user":{"displayName":"Raj K","userId":"04232075365376767238"},"user_tz":480},"id":"QadtLYrcJnBi","outputId":"b0a8469c-78dd-4469-dd03-0e4892dce024"},"outputs":[],"source":["# Create a list of optional items for the invoice\n","items_list = [\n"," {\"desc\": \"Web hosting\", \"cost\": 100.00},\n"," {\"desc\": \"Domain registration\", \"cost\": 10.00},\n"," {\"desc\": \"SSL certificate\", \"cost\": 5.50},\n"," {\"desc\": \"Web design\", \"cost\": 500.00},\n"," {\"desc\": \"Web development\", \"cost\": 500.00},\n"," {\"desc\": \"SEO\", \"cost\": 100.00},\n"," {\"desc\": \"Content creation\", \"cost\": 300.00},\n"," {\"desc\": \"Social media marketing\", \"cost\": 400.00},\n"," {\"desc\": \"Email marketing\", \"cost\": 150.00},\n"," {\"desc\": \"PPC advertising\", \"cost\": 200.00},\n"," {\"desc\": \"Analytics\", \"cost\": 400.00},\n"," {\"desc\": \"Consulting\", \"cost\": 700.00},\n"," {\"desc\": \"Training\", \"cost\": 1200.00},\n"," {\"desc\": \"Maintenance\", \"cost\": 650.00},\n"," {\"desc\": \"Support\", \"cost\": 80.00},\n"," {\"desc\": \"Graphic design\", \"cost\": 310.00},\n"," {\"desc\": \"Logo design\", \"cost\": 140.00},\n"," {\"desc\": \"Branding\", \"cost\": 750.00},\n","]\n","\n","def random_items(n):\n"," \"\"\"Selects n items at random (with exclusion) and adds a random quantity\"\"\"\n"," items = sorted(random.sample(items_list, k=n), key=lambda x: x['desc'])\n"," return [{**item, 'qty':random.randint(1,5)} for item in items]\n","\n","random_items(5)"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":9,"status":"ok","timestamp":1702505778039,"user":{"displayName":"Raj K","userId":"04232075365376767238"},"user_tz":480},"id":"l4I7oDIXJnBi","outputId":"43ace718-b4e9-4572-dc9d-f97949aaa7cc"},"outputs":[],"source":["\n","# Sample data for the invoice, populated with faker\n","invoice_info = {\n"," \"company_name\": fake.company(),\n"," \"company_address\": fake.address(),\n"," \"company_city_zip\": f'{fake.city()}, {fake.zipcode()}',\n"," \"company_phone\": fake.phone_number(),\n"," \"customer_name\": fake.name(),\n"," \"invoice_date\": datetime.date.fromtimestamp(1700176424-random.random()*5e8).strftime(\"%B %d, %Y\"),\n"," \"invoice_number\": f\"INV{random.randint(1,10000):06}\",\n"," \"items\": random_items(random.randint(5,20)),\n"," \"terms\": f\"Payment due within {random.choice([7, 14, 30, 60, 90])} days\"\n","}\n","\n","# Fille the invoice template with our synthetic data and save as a pdf\n","pdf_filename = \"sample_invoice.pdf\"\n","data = create_invoice(invoice_info, pdf_filename)\n","\n","# returned data is the 'ground truth' labels which are used to score miner responses\n","data[:3]"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/","height":809},"executionInfo":{"elapsed":7,"status":"ok","timestamp":1702505778039,"user":{"displayName":"Raj K","userId":"04232075365376767238"},"user_tz":480},"id":"W7q-ehgQBSi6","outputId":"6f66d296-e6da-4738-8b89-65510bdac0e1"},"outputs":[],"source":["def load_image(pdf_path, page=0, zoom_x=1.0, zoom_y=1.0):\n"," \"\"\"Loads pdf image and converts to PIL image\"\"\"\n"," # Read the pdf into memory\n"," pdf = fitz.open(pdf_path)\n"," page = pdf[page]\n","\n"," # Set zoom factors for x and y axis (1.0 means 100%)\n"," mat = fitz.Matrix(zoom_x, zoom_y)\n"," pix = page.get_pixmap(matrix=mat)\n"," img_data = io.BytesIO(pix.tobytes('png'))\n","\n"," # convert to PIL image\n"," return Image.open(img_data)\n","\n","image = load_image(pdf_filename)\n","image"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":2276,"status":"ok","timestamp":1702505780309,"user":{"displayName":"Raj K","userId":"04232075365376767238"},"user_tz":480},"id":"o5UigKWIJnBi","outputId":"76cfe478-22f7-45c3-a0fe-65420c309509"},"outputs":[],"source":["def corrupt_image(input_pdf_path, output_pdf_path, border=50, noise=0.1, spot=(100,100), scale=0.95, theta=0.2, blur=0.5):\n"," \"\"\"Applies transformations to pdf in order to make the document harder to parse\"\"\"\n","\n"," image = load_image(input_pdf_path, zoom_x=1.5, zoom_y=1.5)\n","\n"," width, height = image.size\n","\n"," # # imitate curled page by making the top-right and bottom-left corners go slightly up and darkening the edges\n"," if border is not None:\n"," for x in range(1,border):\n"," tone = 256 - int(250*(x/border-1)**2)\n"," for y in range(height):\n"," # only update color if the pixel is white\n"," if min(image.getpixel((x,y))) < 20:\n"," continue\n"," image.putpixel((x, y), (tone, tone, tone))\n"," image.putpixel((width-x, y), (tone, tone, tone))\n","\n"," # Apply noise\n"," if noise is not None:\n"," draw = ImageDraw.Draw(image)\n"," for _ in range(int(width * height * noise)):\n"," x = random.randint(0, width - 1)\n"," y = random.randint(0, height - 1)\n"," # TODO: Parameterize\n"," delta = random.gauss(0,10)\n"," rgb = tuple([int(min(max(0,val+delta),256)) for val in image.getpixel((x,y))])\n"," draw.point((x, y), fill=rgb)\n","\n"," if spot is not None:\n"," draw = ImageDraw.Draw(image)\n"," for _ in range(int(width * height * noise)):\n"," x = random.randint(0, width - 1)\n"," y = random.randint(0, height - 1)\n"," #TODO: Parameterize\n"," delta = 10000 / (1 + math.sqrt((spot[0]-x)**2 + (spot[1]-y)**2))\n"," rgb = tuple([int(min(max(0,val-delta),256)) for val in image.getpixel((x,y))])\n"," draw.point((x, y), fill=rgb)\n","\n"," # rescale the image within 10% to 20%\n"," if scale is not None:\n"," image = image.resize(size=(int(scale*width), int(scale*height)))\n","\n"," # apply a rotation\n"," if theta is not None:\n"," image = image.rotate(theta, expand=True)\n","\n"," # Apply blur\n"," if blur is not None:\n"," image = image.filter(ImageFilter.GaussianBlur(blur))\n","\n"," # Save processed images back as a PDF\n"," image.save(output_pdf_path, \"PDF\", resolution=100.0, save_all=True)\n","\n"," print(f\"Saved {output_pdf_path}\")\n","\n","noisy_pdf_filename = 'noisy_invoice.pdf'\n","corrupt_image( pdf_filename, noisy_pdf_filename)\n"]},{"cell_type":"markdown","metadata":{"id":"_rHjuG6JD--P"},"source":["## Quick sanity check\n","Here we overlay the ground truth labels with the noisy document"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/","height":1000},"executionInfo":{"elapsed":1067,"status":"ok","timestamp":1702505781372,"user":{"displayName":"Raj K","userId":"04232075365376767238"},"user_tz":480},"id":"ONwxhTaXD8jH","outputId":"ca81f797-b1a6-4141-b0e0-296922d25bb7"},"outputs":[],"source":["def draw_boxes(image, response, color='red'):\n"," \"\"\"Draws boxes around text on the image\"\"\"\n"," draw = ImageDraw.Draw(image)\n"," for item in response:\n"," draw.rectangle(item['position'], outline=color)\n"," return image\n","\n","def scale_data(data: List[dict], w: int, h: int):\n"," \"\"\"\n"," Rescales the position data so that it matches the image size.\n"," In other words, convert position from relative to page size to absolute.\n","\n"," Args:\n"," data (List[dict]): List of dictionaries containing the position, font and text of each section\n"," w (int): Width of the image\n"," h (int): Height of the image\n","\n"," Returns:\n"," List[dict]: List of dictionaries containing the position, font and text of each section\n"," \"\"\"\n"," scaled_data = []\n"," for section in data:\n"," entry = section.copy()\n"," p = section['position']\n"," # convert to absolute units in pixels\n"," entry['position'] = [p[0]*w, p[3]*h, p[2]*w, p[1]*h]\n"," scaled_data.append(entry)\n","\n"," return scaled_data\n","\n","# Here we show our ground truth labels overlaid on the document\n","noisy_image = load_image(noisy_pdf_filename, zoom_x=1.5, zoom_y=1.5)\n","scaled_data = scale_data(data, *noisy_image.size)\n","draw_boxes(noisy_image.copy(), scaled_data, color='green')"]},{"cell_type":"markdown","metadata":{"id":"jcwFaIjwJnBj"},"source":["# 2. Incentive mechanism\n","\n","\n","- Simplest option is just to measure the similarity between true text and the OCR model's predicted text.\n","- More challenging is require miners to provide positional information about text (bounding boxes/ sections of text)\n","- More challenging still is to provide 'metadata' about text (font, size, color, etc.). Possibly even equations, tables, etc.\n","- Ideal outcome is to get the miner to give html + css to reproduce the exact document (denoised). Even some way of handling embedded images.\n","\n","**Use case for this would be to easily extract and reproduce a webpage, presentation slide or even a photo of an object.**\n","\n"]},{"cell_type":"markdown","metadata":{"id":"9eZb65nqJnBj"},"source":["Loss function for OCR model:\n","\n","$$ L = \\sum_i \\alpha_p L^p_i + \\alpha_f L^f_i + \\alpha_t L^t_i $$\n","\n","where\n","\n","$ L^p_i $ is the loss for section i based on positional/layout correctness. This should be zero if the OCR model returns the exact box on the page.\n","\n","We propose that the positional loss is the intersection over union of the bounding boxes:\n","$$ L^p_i = IOU(\\hat{b}_i, b_i) $$\n","\n","where $ \\hat{b}_i $ is the predicted bounding box and $ b_i $ is the ground truth bounding box.\n","\n","\n","$ L^f_i $ is the loss for section i based on font correctness. This should be zero if the OCR model returns the exact font for the section, including font family, font size and perhaps even colors.\n","\n","We propose that the font loss is a delta between the predicted font and the ground truth font plus the square of the difference in font size:\n","$$ L^f_i = \\alpha_f^f (1 - \\delta(\\hat{f}_i, f_i) )+ \\alpha_f^s (\\hat{s}_i - s_i)^2 $$\n","\n","$ L^t_i $ is the loss for section i based on text correctness. This should be zero if the OCR model returns the exact text for the section.\n","\n","We propose that the text loss is the edit distance between the predicted text and the ground truth text:\n","$$ L^t_i = ED(\\hat{t}_i, t_i) $$\n","\n","where $ ED $ is the edit distance function. This is equivalent to the Levenshtein distance.\n","\n","$ \\alpha_p, \\alpha_f, \\alpha_t $ are weights for each of the loss terms. These will impact the difficulty of the OCR challenge as text correctness is likely much easier than position correctness etc.\n","\n","We will convert the loss to produce a reward which is to be maximized by the miner. To do this we will trivially subtract the loss from 1 for each term.\n","\n","$$ R = \\sum_i \\alpha_p (1 - L^p_i) + \\alpha_f (1 - L^f_i) + \\alpha_t (1 - L^t_i) $$\n","\n","where $ L $ is the loss function defined above. This probably some epsilon to avoid division by zero.\n","\n","Lastly, we will include a time penalty to encourage miners to respond quickly. This will be a linear penalty based on the time taken to respond.\n","\n","$$ R_{total} = \\alpha_{prediction} R + \\alpha_{time} t $$\n","\n","where $ t $ is the time taken to respond."]},{"cell_type":"markdown","metadata":{"id":"woUtA5LxJnBj"},"source":["## A Note on desired schema\n","\n","As we want to score based on attributes beyond just the text we require that miners respond with the following schema:\n","```python\n","response = [\n"," {'index':0, 'position':[x1, x2, y1, y2], 'font_family':'Times New Roman', 'font_size':12, 'text':'Hello World!'},\n"," ...\n","]\n","```\n","\n","We can also build in some deisrable default behaviour in case the miner is unable to do the task in the desired way:\n","- If response is a `str`, then we just assume that the order of sections is correct and the text is correct.\n","- If response is a `List[str]`, then we assume that the order of sections is correct but the text is not.\n","- If response is a `List[dict]`, then we assume that the miner has provided all the information we need.\n","\n","Missing fields incur the maximum loss for that field.\n","\n","After some experimentation we find that the reward is highly sensitive to the order of the sections. This is not ideal as it means that the miner must also predict the order of the sections. We can solve this by automatically sort the predicted sections using the Hungarian algorithm. This is a simple linear assignment problem which will minimize the total distance between the predicted and ground truth sections."]},{"cell_type":"code","execution_count":null,"metadata":{"executionInfo":{"elapsed":8,"status":"ok","timestamp":1702505781373,"user":{"displayName":"Raj K","userId":"04232075365376767238"},"user_tz":480},"id":"M1pivmxKJnBk"},"outputs":[],"source":["\n","\n","\n","def get_position_reward(boxA: List[float], boxB: List[float] = None):\n"," \"\"\"\n"," Calculate the intersection over union (IoU) of two bounding boxes.\n","\n"," Args:\n"," - boxA (list): Bounding box coordinates of box A in the format [x1, y1, x2, y2].\n"," - boxB (list): Bounding box coordinates of box B in the format [x1, y1, x2, y2].\n","\n"," Returns:\n"," - float: The IoU value, ranging from 0 to 1.\n"," \"\"\"\n"," if not boxB:\n"," return 0.0\n","\n"," xA = max(boxA[0], boxB[0])\n"," yA = max(boxA[1], boxB[1])\n"," xB = min(boxA[2], boxB[2])\n"," yB = min(boxA[3], boxB[3])\n","\n"," intersection_area = max(0, xB - xA + 1) * max(0, yB - yA + 1)\n","\n"," boxA_area = (boxA[2] - boxA[0] + 1) * (boxA[3] - boxA[1] + 1)\n"," boxB_area = (boxB[2] - boxB[0] + 1) * (boxB[3] - boxB[1] + 1)\n","\n"," iou = intersection_area / float(boxA_area + boxB_area - intersection_area)\n","\n"," return iou\n","\n","def get_text_reward(text1: str, text2: str = None):\n"," \"\"\"\n"," Calculate the edit distance between two strings.\n","\n"," Args:\n"," - text1 (str): The first string.\n"," - text2 (str): The second string.\n","\n"," Returns:\n"," - float: The edit distance between the two strings. Normalized to be between 0 and 1.\n"," \"\"\"\n"," if not text2:\n"," return 0.0\n","\n"," return 1 - editdistance.eval(text1, text2) / max(len(text1), len(text2))\n","\n","def get_font_reward(font1: dict, font2: dict = None, alpha_size=1.0, alpha_family=1.0):\n"," \"\"\"\n"," Calculate the distance between two fonts, based on the font size and font family.\n","\n"," Args:\n"," - font1 (dict): The first font.\n"," - font2 (dict): The second font.\n","\n"," Returns:\n"," - float: The distance between the two fonts. Normalized to be between 0 and 1.\n"," \"\"\"\n"," if not font2:\n"," return 0.0\n","\n"," font_size_score = ( 1 - abs(font1['size'] - font2['size']) / max(font1['size'], font2['size']) )\n"," font_family_score = alpha_family * float(font1['family'] == font2['family'])\n"," return (alpha_size * font_size_score + alpha_family * font_family_score) / (alpha_size + alpha_family)\n","\n","def section_reward(label: dict, pred: dict, alpha_p=1.0, alpha_f=1.0, alpha_t=1.0, verbose=False):\n"," \"\"\"\n"," Score a section of the image based on the section's correctness.\n"," Correctness is defined as:\n"," - the intersection over union of the bounding boxes,\n"," - the delta between the predicted font and the ground truth font,\n"," - and the edit distance between the predicted text and the ground truth text.\n","\n"," Args:\n"," - label (dict): The ground truth data for the section.\n"," - pred (dict): The predicted data for the section.\n","\n"," Returns:\n"," - float: The score for the section. Bounded between 0 and 1.\n"," \"\"\"\n"," reward = {\n"," 'text': get_text_reward(label['text'], pred.get('text')),\n"," 'position': get_position_reward(label['position'], pred.get('position')),\n"," 'font': get_font_reward(label['font'], pred.get('font')),\n"," }\n","\n"," reward['total'] = (alpha_t * reward['text'] + alpha_p * reward['position'] + alpha_f * reward['font']) / (alpha_p + alpha_f + alpha_t)\n","\n"," if verbose:\n"," bt.logging.info(', '.join([f\"{k}: {v:.3f}\" for k,v in reward.items()]))\n","\n"," return reward\n","\n","def sort_predictions(image_data: List[dict], predictions: List[dict], draw=False) -> List[dict]:\n"," \"\"\"\n"," Sort the predictions to match the order of the ground truth data using the Hungarian algorithm.\n","\n"," Args:\n"," - image_data (list): The ground truth data for the image.\n"," - predictions (list): The predicted data for the image.\n","\n"," Returns:\n"," - list: The sorted predictions.\n"," \"\"\"\n","\n"," # First, make sure that the predictions is at least as long as the image data\n"," predictions += [{}] * (len(image_data) - len(predictions))\n"," r = torch.zeros((len(image_data), len(predictions)))\n"," for i in range(r.shape[0]):\n"," for j in range(r.shape[1]):\n"," r[i,j] = section_reward(image_data[i], predictions[j])['total']\n","\n"," # Use the Hungarian algorithm to find the best assignment\n"," row_indices, col_indices = linear_sum_assignment(r, maximize=True)\n","\n"," if draw:\n"," fig = px.imshow(r.detach().numpy(),\n"," color_continuous_scale='Blues',\n"," title=f'Optimal Assignment (Avg. Reward: {r[row_indices, col_indices].mean():.3f})',\n"," width=600, height=600\n"," )\n"," fig.update_layout(coloraxis_showscale=False)\n"," fig.update_yaxes(title_text='Ground Truth')\n"," fig.update_xaxes(title_text='Predictions')\n","\n"," for i, j in zip(row_indices, col_indices):\n"," fig.add_annotation(x=j, y=i, text='+', showarrow=False, font=dict(color='red', size=16))\n"," fig.show()\n","\n"," sorted_predictions = [predictions[i] for i in col_indices]\n","\n"," return sorted_predictions\n","\n","\n","def reward(image_data: List[dict], predictions: List[dict], time_elapsed: float) -> float:\n"," \"\"\"\n"," Reward the miner response to the OCR request.\n","\n"," Args:\n"," - image_data (list): The ground truth data for the image.\n"," - predictions (list): The predicted data for the image.\n"," - time_elapsed (float): Time taken for miner to extract data from image\n","\n"," Returns:\n"," - float: The reward for the miner response. Bounded between 0 and 1.\n"," \"\"\"\n","\n"," if predictions is None:\n"," return 0.0\n","\n"," # Sort the predictions to match the order of the ground truth data as best as possible\n"," predictions = sort_predictions(image_data, predictions)\n","\n"," # Take mean score over all sections in document (note that we don't penalize extra sections)\n"," section_rewards = [section_reward(label, pred, verbose=True) for label, pred in zip(image_data, predictions)]\n"," prediction_reward = torch.mean(torch.FloatTensor([r['total'] for r in section_rewards]))\n","\n"," alpha_prediction = 0.8\n"," alpha_time = 0.2\n"," max_time = 5\n"," time_reward = max(1 - time_elapsed / max_time, 0)\n"," total_reward = (alpha_prediction * prediction_reward + alpha_time * time_reward) / (alpha_prediction + alpha_time)\n","\n"," bt.logging.info(f\"prediction_reward: {prediction_reward:.3f}, time_reward: {time_reward:.3f}, total_reward: {total_reward:.3f}\")\n"," return total_reward"]},{"cell_type":"markdown","metadata":{"id":"hhKFy5U2EW7e"},"source":["# 3. Miner\n","For the miner we will define a baseline approach which uses pytesseract. Of course, if this were a real subnet we would expect and encourage miners to utilize more sophisticated appraoches to OCR (such as deep learning models)."]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":1212,"status":"ok","timestamp":1702505782578,"user":{"displayName":"Raj K","userId":"04232075365376767238"},"user_tz":480},"id":"vIU0tua771eg","outputId":"9f5443bf-0f59-4bdd-cdb4-b4f8f16e851c"},"outputs":[],"source":["!apt install tesseract-ocr"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":8154,"status":"ok","timestamp":1702505790731,"user":{"displayName":"Raj K","userId":"04232075365376767238"},"user_tz":480},"id":"JKT-Ekuj79AA","outputId":"dcb3a9c6-70dc-4758-8d27-187b62840f24"},"outputs":[],"source":["!pip install pytesseract"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":1737,"status":"ok","timestamp":1702505792464,"user":{"displayName":"Raj K","userId":"04232075365376767238"},"user_tz":480},"id":"qImV1E-Z8e8i","outputId":"797a29f5-0f4c-4905-ad31-bb25d851c2ce"},"outputs":[],"source":["import pytesseract\n","\n","\n","def group_and_merge_boxes(data, xtol=25, ytol=5):\n"," \"\"\"\n"," Combines boxes that are close together into a single box so that the text is grouped into sections.\n","\n"," Args:\n"," - data (list): List of dictionaries containing the position, font and text of each section\n"," - xtol (int): Maximum distance between boxes in the x direction to be considered part of the same section\n"," - ytol (int): Maximum distance between boxes in the y direction to be considered part of the same section\n","\n"," Returns:\n"," - list: List of dictionaries containing the position, font and text of each section\n"," \"\"\"\n"," # Ensure all data items are valid and have a 'position' key\n"," data = [box for box in data if box is not None and 'position' in box]\n","\n"," # Step 1: Group boxes by lines\n"," lines = []\n"," for box in data:\n"," added_to_line = False\n"," for line in lines:\n"," if line and abs(line[0]['position'][1] - box['position'][1]) <= ytol:\n"," line.append(box)\n"," added_to_line = True\n"," break\n"," if not added_to_line:\n"," lines.append([box])\n","\n"," # Step 2: Sort and merge within each line\n"," merged_data = []\n"," for line in lines:\n"," line.sort(key=lambda item: item['position'][0]) # Sort by x1\n"," i = 0\n"," while i < len(line) - 1:\n"," box1 = line[i]['position']\n"," box2 = line[i + 1]['position']\n"," if abs(box1[2] - box2[0]) <= xtol: # Check horizontal proximity\n"," new_box = {'position': [min(box1[0], box2[0]), min(box1[1], box2[1]), max(box1[2], box2[2]), max(box1[3], box2[3])],\n"," 'text': line[i]['text'] + ' ' + line[i + 1]['text']}\n"," line[i] = new_box\n"," del line[i + 1]\n"," else:\n"," i += 1\n"," merged_data.extend(line)\n","\n"," return merged_data\n","\n","\n","def miner(image, merge=True, sort=True):\n"," \"\"\"\n"," Extracts text data from image using pytesseract. This is the baseline miner.\n"," \"\"\"\n","\n"," # Use pytesseract to get the data\n"," data = pytesseract.image_to_data(image, output_type=pytesseract.Output.DICT)\n","\n"," response = []\n","\n"," for i in range(len(data['text'])):\n"," if data['text'][i].strip() != '': # This filters out empty text results\n"," x1, y1, width, height = data['left'][i], data['top'][i], data['width'][i], data['height'][i]\n"," if width * height < 10: # This filters out small boxes (likely noise)\n"," continue\n","\n"," x2, y2 = x1 + width, y1 + height\n","\n"," # Here we don't have font information, so we'll omit that.\n"," # Pytesseract does not extract font family or size information.\n"," entry = {\n"," 'position': [x1, y1, x2, y2],\n"," 'text': data['text'][i]\n"," }\n"," response.append(entry)\n","\n"," # Merge together words into sections, which are on the same line (same y value) and are close together (small distance in x)\n"," if merge:\n"," response = group_and_merge_boxes(response)\n","\n"," # Sort sections by y, then sort by x so that they read left to right and top to bottom\n"," if sort:\n"," response = sorted(response, key=lambda item: (item['position'][1], item['position'][0]))\n","\n"," # Now 'response' will be a list of dictionaries with the sections of text and the accompanying bounding box coordinates.\n"," return response\n","\n","\n","tbeg = time.time()\n","response = miner(noisy_image, merge=True)\n","time_elapsed = time.time() - tbeg\n","print(f'Miner parsed document in {time_elapsed:.2f} seconds')\n","response[:3]"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/","height":1000},"executionInfo":{"elapsed":908,"status":"ok","timestamp":1702505793367,"user":{"displayName":"Raj K","userId":"04232075365376767238"},"user_tz":480},"id":"FhmcdFfKFuzc","outputId":"5f16814f-6d12-49ac-d608-e6f413b89ee0"},"outputs":[],"source":["image_copy = noisy_image.copy()\n","draw_boxes(image_copy, scaled_data, color='green')\n","draw_boxes(image_copy, response, color='red')"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/","height":1000},"executionInfo":{"elapsed":198,"status":"ok","timestamp":1702505793561,"user":{"displayName":"Raj K","userId":"04232075365376767238"},"user_tz":480},"id":"A39hbnsCztT6","outputId":"a7fc02bb-c58a-4f3c-cd80-ab2f321f9ebc"},"outputs":[],"source":["# Show how predictions are sorted to match the ground truth\n","sort_predictions(scaled_data, response, draw=True)\n"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":6,"status":"ok","timestamp":1702505793561,"user":{"displayName":"Raj K","userId":"04232075365376767238"},"user_tz":480},"id":"ROh4hL8wE80b","outputId":"ba332fdd-5231-4547-c49e-9da33b16f6e1"},"outputs":[],"source":["# Test the reward function with slightly modified image data\n","reward(scaled_data, response, time_elapsed)"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":4,"status":"ok","timestamp":1702505793561,"user":{"displayName":"Raj K","userId":"04232075365376767238"},"user_tz":480},"id":"pBNKY-4qztT6","outputId":"b76aec2b-50c9-45c0-adf1-667924a497aa"},"outputs":[],"source":[]}],"metadata":{"colab":{"provenance":[]},"kernelspec":{"display_name":"env","language":"python","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.9.5"},"orig_nbformat":4},"nbformat":4,"nbformat_minor":0}
diff --git a/scripts/sample_invoice.pdf b/scripts/sample_invoice.pdf
deleted file mode 100644
index 90f067d..0000000
Binary files a/scripts/sample_invoice.pdf and /dev/null differ
diff --git a/subtensor b/subtensor
new file mode 160000
index 0000000..da21fb6
--- /dev/null
+++ b/subtensor
@@ -0,0 +1 @@
+Subproject commit da21fb6a031835bb51a14d7aac387c493528f79a
diff --git a/tests/test_template_validator.py b/tests/test_template_validator.py
index d05d797..ad7629f 100644
--- a/tests/test_template_validator.py
+++ b/tests/test_template_validator.py
@@ -24,11 +24,11 @@
from neurons.validator import Neuron as Validator
from neurons.miner import Neuron as Miner
-from ocr_subnet.protocol import Dummy
+from infinite_games.protocol import Dummy
from ocr_subnet.validator.forward import forward
-from ocr_subnet.utils.uids import get_random_uids
-from ocr_subnet.validator.reward import get_rewards
-from ocr_subnet.base.validator import BaseValidatorNeuron
+from infinite_games.utils.uids import get_random_uids
+from infinite_games.validator.reward import get_rewards
+from infinite_games.base.validator import BaseValidatorNeuron
class TemplateValidatorNeuronTestCase(unittest.TestCase):