ETH Price: $2,525.17 (-4.99%)
Gas: 4.82 Gwei

Token

1to3 (1to3)
 

Overview

Max Total Supply

7,770,000 1to3

Holders

140

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.500074231330912853 1to3

Value
$0.00
0x616dfA6c780aD81dc9748B87171B1decB9A5e8EF
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OneToThree

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-14
*/

// SPDX-License-Identifier: UNLICENSED

/**
 WELCOME TO ZE DICE.
 DIVE INTO THE WORLD OF PUMPMENTAL BETTING.

    .-------.
   / *   * /|
  / *   * / |
 .-------.* |
 | *   * | *.
 | *   * | /
 | *   * |/
 '-------'

Website: https://wagerzz.gg/
Telegram: https://t.me/+roYJUAvu9rJmZDQ0
X: https://twitter.com/wagerzz_gg
**/

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}


// File contracts/oneToThree.sol


/**
 WELCOME TO ZE DICE.
 DIVE INTO THE WORLD OF PUMPMENTAL BETTING.

    .-------.
   / *   * /|
  / *   * / |
 .-------.* |
 | *   * | *.
 | *   * | /
 | *   * |/
 '-------'

Website: https://wagerzz.gg/
Telegram: https://t.me/+roYJUAvu9rJmZDQ0
X: https://twitter.com/wagerzz_gg
**/

pragma solidity 0.8.15;


interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
    external
    returns (address pair);
}

interface IUniswapV2Router {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
    external
    payable
    returns (
        uint256 amountToken,
        uint256 amountETH,
        uint256 liquidity
    );
}

contract OneToThree is ERC20, Ownable {
    address public teamTaxWallet;
    address public bookiezContract;

    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWalletAmount;
    IUniswapV2Router public uniswapV2Router;

    address public lpPair;

    bool public hasLimits = true;
    bool private swapping;
    uint256 public swapTokensAtAmount;

    uint256 public constant FEE_DECIMALS = 10000; // Number of decimals to support (e.g., 10000 for 2 decimals)
    uint256 public buyTotalFees;
    uint256 public buyBetFee;
    uint256 public buyTeamFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellBetFee;
    uint256 public sellTeamFee;
    uint256 public sellLiquidityFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForDev;
    uint256 public tokensForLiquidity;

    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

    //events
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event MaxTransactionExclusion(address _address, bool excluded);
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event OwnerForcedSwapBack(uint256 timestamp);
    event UpdatedMaxBuyAmount(uint256 newAmount);
    event UpdatedMaxSellAmount(uint256 newAmount);
    event UpdatedMaxWalletAmount(uint256 newAmount);
    event RemovedLimits();
    event BuyBackTriggered(uint256 amount);

    modifier onlyOwnerOrBettingContract() {
        require(msg.sender == owner() || msg.sender == bookiezContract, "Only the owner or betting contract manager can call this function");
        _;
    }

    constructor() ERC20("1to3", "1to3") {

        address newOwner = msg.sender; // can leave alone if owner is deployer.

        IUniswapV2Router _uniswapV2Router = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;

        //create pair
        lpPair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        _excludeFromMaxTransaction(address(lpPair), true);
        _setAutomatedMarketMakerPair(address(lpPair), true);

        uint256 totalSupply = 7770000 * 1e18;

        maxBuyAmount = totalSupply * 1 / 100;
        maxSellAmount = totalSupply * 1 / 100;
        maxWalletAmount = totalSupply * 1 / 100;
        swapTokensAtAmount = totalSupply * 1 / 1000;

        buyTeamFee = 100;
        buyBetFee = 500;
        buyLiquidityFee = 177;
        buyTotalFees = buyBetFee + buyTeamFee + buyLiquidityFee;

        sellTeamFee = 100; // 1% (100 out of 10000)
        sellBetFee = 677;
        sellLiquidityFee = 777;
        sellTotalFees = sellBetFee + sellTeamFee + sellLiquidityFee;

        teamTaxWallet = 0xD52534fCfa5C53B5eAFa7224c0585395d6Ee1b13;
        bookiezContract = 0x529c7796158ba9A9354692a1053D39B32313A5cd;

        _excludeFromMaxTransaction(teamTaxWallet, true);
        _excludeFromMaxTransaction(bookiezContract, true);
        _excludeFromMaxTransaction(address(this), true);

        excludeFromFees(newOwner, true);
        excludeFromFees(teamTaxWallet, true);
        excludeFromFees(bookiezContract, true);

        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        _mint(newOwner, totalSupply);

        transferOwnership(newOwner);
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), "cannot transfer from the zero address");
        require(to != address(0), "cannot transfer to the zero address");
        require(amount > 0, "amount must be greater than 0");
        //check for max wallet / max transaction
        if(hasLimits){
            if(from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]){
                //buy action
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                    require(amount <= maxBuyAmount, "Buy transfer amount exceeds the max buy.");
                    require(amount + balanceOf(to) <= maxWalletAmount, "Cannot Exceed max wallet");
                }
                //sell action
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                    require(amount <= maxSellAmount, "Sell transfer amount exceeds the max sell.");
                }
                //other transfers
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWalletAmount, "Cannot Exceed max amount");
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if(canSwap && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = true;

        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]){
            takeFee = false;
        }

        uint256 fees = 0;

        if(takeFee){
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount * sellTotalFees / FEE_DECIMALS;
                tokensForDev += fees * sellTeamFee / sellTotalFees;
                tokensForMarketing += fees * sellBetFee / sellTotalFees;
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
            }
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount * buyTotalFees / FEE_DECIMALS;
                tokensForDev += fees * buyTeamFee / buyTotalFees;
                tokensForMarketing += fees * buyBetFee / buyTotalFees;
                tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
            }

            if(fees > 0){

                super._transfer(from, address(this), fees);
            }

            amount -= fees;

        }

        super._transfer(from, to, amount);

    }

    function swapBack() private {

        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForDev + tokensForMarketing + tokensForLiquidity;

        if(contractBalance == 0 || totalTokensToSwap == 0){return;}

        if(contractBalance > swapTokensAtAmount * 20){
            contractBalance = swapTokensAtAmount * 20;
        }

        bool success;

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;

        swapTokensForEth(contractBalance - liquidityTokens);

        uint256 ethBalance = address(this).balance;
        uint256 ethForLiquidity = ethBalance;

        uint256 ethForDev = ethBalance * tokensForDev / (totalTokensToSwap - (tokensForLiquidity/2));
        uint256 ethForMarketing = ethBalance * tokensForMarketing / (totalTokensToSwap - (tokensForLiquidity/2));

        ethForLiquidity -= ethForDev + ethForMarketing;

        tokensForLiquidity = 0;
        tokensForDev = 0;
        tokensForMarketing = 0;

        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
        }

        (success,) = address(teamTaxWallet).call{value: ethForDev}("");
        (success,) = address(bookiezContract).call{value: address(this).balance}("");

    }

    receive() external payable {}

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(0xdead),
            block.timestamp
        );
    }

    function excludeFromMaxTransaction(address updAds, bool isEx) external onlyOwner {
        if(!isEx){
            require(updAds != lpPair, "Cannot remove uniswap pair from max txn");
        }
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function _excludeFromMaxTransaction(address adrs, bool isExcluded) private {
        _isExcludedMaxTransactionAmount[adrs] = isExcluded;
        emit MaxTransactionExclusion(adrs, isExcluded);
    }

    function swapTokensForEth(uint256 tokenAmount) private {

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );

    }

    // force Swap back if slippage issues.
    function forceSwapBack() external onlyOwner {
        require(balanceOf(address(this)) >= swapTokensAtAmount, "Contract should have a token amount that is higher than restriction");
        swapping = true;
        swapBack();
        swapping = false;
        emit OwnerForcedSwapBack(block.timestamp);
    }

    // withdraw ETH from contract address
    function withdrawStuckETH() external onlyOwner {
        bool success;
        (success,) = address(msg.sender).call{value: address(this).balance}("");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setWalletsAddresses(address _development, address _bettingContract) external onlyOwner {
        require(_development != address(0),"address cannot be zero address");
        require(_bettingContract != address(0),"address cannot be zero address");

        teamTaxWallet = payable(_development);
        bookiezContract = payable(_bettingContract);

    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
        require(newAmount <= totalSupply() * 1 / 1000, "Swap amount cannot be higher than 0.1% total supply.");
        swapTokensAtAmount = newAmount;
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 3 / 1000)/1e18, "Cannot set max wallet amount lower than 0.3%");
        maxWalletAmount = newNum * (10**18);
        emit UpdatedMaxWalletAmount(maxWalletAmount);
    }

    function updateMaxBuyAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 2 / 1000)/1e18, "Cannot set max buy amount lower than 0.2%");
        maxBuyAmount = newNum * (10**18);
        emit UpdatedMaxBuyAmount(maxBuyAmount);
    }

    function updateMaxSellAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 2 / 1000)/1e18, "Cannot set max sell amount lower than 0.2%");
        maxSellAmount = newNum * (10**18);
        emit UpdatedMaxSellAmount(maxSellAmount);
    }

    function updateBuyFees(uint256 _teamFee, uint256 _betFee, uint256 _liquidityFee) external onlyOwner {
        require(_teamFee <= 200, "team fee cannot be larger than 2%");
        buyTeamFee = _teamFee;
        buyBetFee = _betFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyTeamFee + buyBetFee + buyLiquidityFee;
        require(buyTotalFees <= 2500, "Must keep fees at 25% or less");
    }

    function updateSellFees(uint256 _teamFee, uint256 _betFee, uint256 _liquidityFee) external onlyOwner {
        require(_teamFee <= 200, "team fee cannot be larger than 2%");
        sellTeamFee = _teamFee;
        sellBetFee = _betFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellTeamFee + sellBetFee + sellLiquidityFee;
        require(sellTotalFees <= 2500, "Must keep fees at 25% or less");
    }

    function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner {
        require(pair != lpPair, "The pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        _excludeFromMaxTransaction(pair, value);

        emit SetAutomatedMarketMakerPair(pair, value);
    }
    //remove limits after token is stable
    function removeLimits() external onlyOwner {
        hasLimits = false;
        emit RemovedLimits();
    }

    // useful for buybacks or to reclaim any ETH on the contract in a way that helps holders.
    function buyBackTokens(uint256 amountInWei) payable external onlyOwnerOrBettingContract {
        require(amountInWei <= 10 ether, "May not buy more than 10 ETH in a single buy to reduce sandwich attacks");

        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(this);

        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amountInWei}(
            0, // accept any amount of Ethereum
            path,
            address(0xdead),
            block.timestamp
        );

        emit BuyBackTriggered(amountInWei);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BuyBackTriggered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"OwnerForcedSwapBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","type":"event"},{"inputs":[],"name":"FEE_DECIMALS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bookiezContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountInWei","type":"uint256"}],"name":"buyBackTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"buyBetFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hasLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBetFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_development","type":"address"},{"internalType":"address","name":"_bettingContract","type":"address"}],"name":"setWalletsAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamTaxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_betFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_betFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600c805460ff60a01b1916600160a01b1790553480156200002457600080fd5b5060408051808201825260048082526331746f3360e01b60208084018290528451808601909552918452908301529060036200006183826200081a565b5060046200007082826200081a565b5050506200008d620000876200043f60201b60201c565b62000443565b600b80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b81529051339291829163c45a0155916004808201926020929091908290030181865afa158015620000f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200011d9190620008e6565b6001600160a01b031663c9c6539630600b60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000180573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a69190620008e6565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021a9190620008e6565b600c80546001600160a01b0319166001600160a01b039290921691821790556200024690600162000495565b600c546200025f906001600160a01b03166001620004f8565b6a066d5c8b4447a70440000060646200027a8260016200092e565b62000286919062000950565b6008556064620002988260016200092e565b620002a4919062000950565b6009556064620002b68260016200092e565b620002c2919062000950565b600a556103e8620002d58260016200092e565b620002e1919062000950565b600d55606460108190556101f4600f81905560b1601181905591620003069162000973565b62000312919062000973565b600e55606460148190556102a56013819055610309601581905591620003389162000973565b62000344919062000973565b601255600680546001600160a01b031990811673d52534fcfa5c53b5eafa7224c0585395d6ee1b139081179092556007805490911673529c7796158ba9a9354692a1053d39b32313a5cd1790556200039e90600162000495565b600754620003b7906001600160a01b0316600162000495565b620003c430600162000495565b620003d183600162000564565b600654620003ea906001600160a01b0316600162000564565b60075462000403906001600160a01b0316600162000564565b6200041030600162000564565b6200041f61dead600162000564565b6200042b8382620005cd565b620004368362000694565b5050506200098e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601a6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b6001600160a01b0382166000908152601b60205260409020805460ff191682151517905562000528828262000495565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6200056e62000713565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006295760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200063d919062000973565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6200069e62000713565b6001600160a01b038116620007055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000620565b620007108162000443565b50565b6005546001600160a01b031633146200076f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000620565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007a157607f821691505b602082108103620007c257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200077157600081815260208120601f850160051c81016020861015620007f15750805b601f850160051c820191505b818110156200081257828155600101620007fd565b505050505050565b81516001600160401b0381111562000836576200083662000776565b6200084e816200084784546200078c565b84620007c8565b602080601f8311600181146200088657600084156200086d5750858301515b600019600386901b1c1916600185901b17855562000812565b600085815260208120601f198616915b82811015620008b75788860151825594840194600190910190840162000896565b5085821015620008d65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620008f957600080fd5b81516001600160a01b03811681146200091157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200094b576200094b62000918565b500290565b6000826200096e57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000989576200098962000918565b500190565b612b10806200099e6000396000f3fe6080604052600436106102e85760003560e01c806395d89b4111610190578063d257b34f116100dc578063e8ddfddf11610095578063f48c36f41161006f578063f48c36f414610876578063f5648a4f14610897578063f6374342146108ac578063fc155d1d146108c257600080fd5b8063e8ddfddf14610820578063f11a24d314610840578063f2fde38b1461085657600080fd5b8063d257b34f1461077e578063d729715f1461079e578063d85ba063146107b4578063dc3f0d0f146107ca578063dd62ed3e146107ea578063e2f456051461080a57600080fd5b8063aa4bde2811610149578063c024666811610123578063c024666814610708578063c17b5b8c14610728578063c18bc19514610748578063ccf288c61461076857600080fd5b8063aa4bde28146106a2578063aa4c3461146106b8578063b62496f5146106d857600080fd5b806395d89b41146106015780639a7a23d6146106165780639c2e4ac6146106365780639fccce321461064c578063a457c2d714610662578063a9059cbb1461068257600080fd5b8063452ed4f11161024f578063715018a6116102085780637e832ea9116101e25780637e832ea9146105975780638095d564146105ad57806388e765ff146105cd5780638da5cb5b146105e357600080fd5b8063715018a61461054d578063751039fc146105625780637571336a1461057757600080fd5b8063452ed4f1146104965780634a863f41146104b657806351f205e4146104d657806366d602ae146104eb5780636a486a8e1461050157806370a082311461051757600080fd5b80631f3fed8f116102a15780631f3fed8f146103ec57806323b872dd146104025780632be32b61146104225780632c8f86d214610444578063313ce5671461045a578063395093511461047657600080fd5b806306fdde03146102f4578063095ea7b31461031f57806310d5de531461034f5780631694505e1461037f57806318160ddd146103b75780631a8145bb146103d657600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b506103096108d5565b6040516103169190612717565b60405180910390f35b34801561032b57600080fd5b5061033f61033a366004612781565b610967565b6040519015158152602001610316565b34801561035b57600080fd5b5061033f61036a3660046127ad565b601a6020526000908152604090205460ff1681565b34801561038b57600080fd5b50600b5461039f906001600160a01b031681565b6040516001600160a01b039091168152602001610316565b3480156103c357600080fd5b506002545b604051908152602001610316565b3480156103e257600080fd5b506103c860185481565b3480156103f857600080fd5b506103c860165481565b34801561040e57600080fd5b5061033f61041d3660046127d1565b61097f565b34801561042e57600080fd5b5061044261043d366004612812565b6109a3565b005b34801561045057600080fd5b506103c8600f5481565b34801561046657600080fd5b5060405160128152602001610316565b34801561048257600080fd5b5061033f610491366004612781565b610a93565b3480156104a257600080fd5b50600c5461039f906001600160a01b031681565b3480156104c257600080fd5b506104426104d136600461282b565b610ab5565b3480156104e257600080fd5b50610442610b97565b3480156104f757600080fd5b506103c860095481565b34801561050d57600080fd5b506103c860125481565b34801561052357600080fd5b506103c86105323660046127ad565b6001600160a01b031660009081526020819052604090205490565b34801561055957600080fd5b50610442610c8f565b34801561056e57600080fd5b50610442610ca3565b34801561058357600080fd5b50610442610592366004612864565b610ce3565b3480156105a357600080fd5b506103c860135481565b3480156105b957600080fd5b506104426105c8366004612897565b610d89565b3480156105d957600080fd5b506103c860085481565b3480156105ef57600080fd5b506005546001600160a01b031661039f565b34801561060d57600080fd5b50610309610e31565b34801561062257600080fd5b50610442610631366004612864565b610e40565b34801561064257600080fd5b506103c860105481565b34801561065857600080fd5b506103c860175481565b34801561066e57600080fd5b5061033f61067d366004612781565b610f12565b34801561068e57600080fd5b5061033f61069d366004612781565b610f8d565b3480156106ae57600080fd5b506103c8600a5481565b3480156106c457600080fd5b5060075461039f906001600160a01b031681565b3480156106e457600080fd5b5061033f6106f33660046127ad565b601b6020526000908152604090205460ff1681565b34801561071457600080fd5b50610442610723366004612864565b610f9b565b34801561073457600080fd5b50610442610743366004612897565b611002565b34801561075457600080fd5b50610442610763366004612812565b6110a5565b34801561077457600080fd5b506103c861271081565b34801561078a57600080fd5b50610442610799366004612812565b61118c565b3480156107aa57600080fd5b506103c860145481565b3480156107c057600080fd5b506103c8600e5481565b3480156107d657600080fd5b506104426107e5366004612812565b6112b5565b3480156107f657600080fd5b506103c861080536600461282b565b61139a565b34801561081657600080fd5b506103c8600d5481565b34801561082c57600080fd5b5060065461039f906001600160a01b031681565b34801561084c57600080fd5b506103c860115481565b34801561086257600080fd5b506104426108713660046127ad565b6113c5565b34801561088257600080fd5b50600c5461033f90600160a01b900460ff1681565b3480156108a357600080fd5b5061044261143e565b3480156108b857600080fd5b506103c860155481565b6104426108d0366004612812565b611493565b6060600380546108e4906128c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610910906128c3565b801561095d5780601f106109325761010080835404028352916020019161095d565b820191906000526020600020905b81548152906001019060200180831161094057829003601f168201915b5050505050905090565b60003361097581858561174c565b5060019392505050565b60003361098d858285611870565b6109988585856118e4565b506001949350505050565b6109ab612024565b670de0b6b3a76400006103e86109c060025490565b6109cb906002612913565b6109d59190612932565b6109df9190612932565b811015610a455760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f776572206044820152687468616e20302e322560b81b60648201526084015b60405180910390fd5b610a5781670de0b6b3a7640000612913565b60088190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b600033610975818585610aa6838361139a565b610ab09190612954565b61174c565b610abd612024565b6001600160a01b038216610b135760405162461bcd60e51b815260206004820152601e60248201527f616464726573732063616e6e6f74206265207a65726f206164647265737300006044820152606401610a3c565b6001600160a01b038116610b695760405162461bcd60e51b815260206004820152601e60248201527f616464726573732063616e6e6f74206265207a65726f206164647265737300006044820152606401610a3c565b600680546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b610b9f612024565b600d54306000908152602081905260409020541015610c325760405162461bcd60e51b815260206004820152604360248201527f436f6e74726163742073686f756c642068617665206120746f6b656e20616d6f60448201527f756e74207468617420697320686967686572207468616e20726573747269637460648201526234b7b760e91b608482015260a401610a3c565b600c805460ff60a81b1916600160a81b179055610c4d61207e565b600c805460ff60a81b191690556040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a1565b610c97612024565b610ca1600061228b565b565b610cab612024565b600c805460ff60a01b191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b610ceb612024565b80610d5e57600c546001600160a01b0390811690831603610d5e5760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b6064820152608401610a3c565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b610d91612024565b60c8831115610db25760405162461bcd60e51b8152600401610a3c9061296c565b6010839055600f829055601181905580610dcc8385612954565b610dd69190612954565b600e8190556109c41015610e2c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610a3c565b505050565b6060600480546108e4906128c3565b610e48612024565b600c546001600160a01b0390811690831603610ecc5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a3c565b610ed682826122dd565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60003381610f20828661139a565b905083811015610f805760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a3c565b610998828686840361174c565b6000336109758185856118e4565b610fa3612024565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61100a612024565b60c883111561102b5760405162461bcd60e51b8152600401610a3c9061296c565b601483905560138290556015819055806110458385612954565b61104f9190612954565b60128190556109c41015610e2c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610a3c565b6110ad612024565b670de0b6b3a76400006103e86110c260025490565b6110cd906003612913565b6110d79190612932565b6110e19190612932565b8110156111455760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201526b6572207468616e20302e332560a01b6064820152608401610a3c565b61115781670de0b6b3a7640000612913565b600a8190556040519081527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610a88565b611194612024565b620186a06111a160025490565b6111ac906001612913565b6111b69190612932565b8110156112235760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a3c565b6103e861122f60025490565b61123a906001612913565b6112449190612932565b8111156112b05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171892903a37ba30b61039bab838363c9760611b6064820152608401610a3c565b600d55565b6112bd612024565b670de0b6b3a76400006103e86112d260025490565b6112dd906002612913565b6112e79190612932565b6112f19190612932565b8110156113535760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f776572604482015269207468616e20302e322560b01b6064820152608401610a3c565b61136581670de0b6b3a7640000612913565b60098190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610a88565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6113cd612024565b6001600160a01b0381166114325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3c565b61143b8161228b565b50565b611446612024565b604051600090339047908381818185875af1925050503d8060008114611488576040519150601f19603f3d011682016040523d82523d6000602084013e61148d565b606091505b50505050565b6005546001600160a01b03163314806114b657506007546001600160a01b031633145b6115325760405162461bcd60e51b815260206004820152604160248201527f4f6e6c7920746865206f776e6572206f722062657474696e6720636f6e74726160448201527f6374206d616e616765722063616e2063616c6c20746869732066756e6374696f6064820152603760f91b608482015260a401610a3c565b678ac7230489e800008111156115c05760405162461bcd60e51b815260206004820152604760248201527f4d6179206e6f7420627579206d6f7265207468616e2031302045544820696e2060448201527f612073696e676c652062757920746f207265647563652073616e64776963682060648201526661747461636b7360c81b608482015260a401610a3c565b6040805160028082526060820183526000926020830190803683375050600b54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa15801561162a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164e91906129ad565b81600081518110611661576116616129ca565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611695576116956129ca565b6001600160a01b039283166020918202929092010152600b5460405163b6f9de9560e01b815291169063b6f9de959084906116dd90600090869061dead904290600401612a24565b6000604051808303818588803b1580156116f657600080fd5b505af115801561170a573d6000803e3d6000fd5b50505050507fa017c1567cfcdd2d750a8c01e39fe2a846bcebc293c7d078477014d6848205688260405161174091815260200190565b60405180910390a15050565b6001600160a01b0383166117ae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3c565b6001600160a01b03821661180f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a3c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061187c848461139a565b9050600019811461148d57818110156118d75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a3c565b61148d848484840361174c565b6001600160a01b0383166119485760405162461bcd60e51b815260206004820152602560248201527f63616e6e6f74207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a3c565b6001600160a01b0382166119aa5760405162461bcd60e51b815260206004820152602360248201527f63616e6e6f74207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a3c565b600081116119fa5760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610a3c565b600c54600160a01b900460ff1615611d13576005546001600160a01b03848116911614801590611a3857506005546001600160a01b03838116911614155b8015611a4c57506001600160a01b03821615155b8015611a6357506001600160a01b03821661dead14155b8015611a8857506001600160a01b03831660009081526019602052604090205460ff16155b8015611aad57506001600160a01b03821660009081526019602052604090205460ff16155b15611d13576001600160a01b0383166000908152601b602052604090205460ff168015611af357506001600160a01b0382166000908152601a602052604090205460ff16155b15611bd457600854811115611b5b5760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526736b0bc10313abc9760c11b6064820152608401610a3c565b600a546001600160a01b038316600090815260208190526040902054611b819083612954565b1115611bcf5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420457863656564206d61782077616c6c657400000000000000006044820152606401610a3c565b611d13565b6001600160a01b0382166000908152601b602052604090205460ff168015611c1557506001600160a01b0383166000908152601a602052604090205460ff16155b15611c7f57600954811115611bcf5760405162461bcd60e51b815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152691036b0bc1039b2b6361760b11b6064820152608401610a3c565b6001600160a01b0382166000908152601a602052604090205460ff16611d1357600a546001600160a01b038316600090815260208190526040902054611cc59083612954565b1115611d135760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420457863656564206d617820616d6f756e7400000000000000006044820152606401610a3c565b30600090815260208190526040902054600d5481108015908190611d415750600c54600160a81b900460ff16155b8015611d6657506001600160a01b0385166000908152601b602052604090205460ff16155b8015611d8b57506001600160a01b03851660009081526019602052604090205460ff16155b8015611db057506001600160a01b03841660009081526019602052604090205460ff16155b15611dde57600c805460ff60a81b1916600160a81b179055611dd061207e565b600c805460ff60a81b191690555b6001600160a01b03851660009081526019602052604090205460019060ff1680611e2057506001600160a01b03851660009081526019602052604090205460ff165b15611e29575060005b60008115612010576001600160a01b0386166000908152601b602052604090205460ff168015611e5b57506000601254115b15611f145761271060125486611e719190612913565b611e7b9190612932565b905060125460145482611e8e9190612913565b611e989190612932565b60176000828254611ea99190612954565b9091555050601254601354611ebe9083612913565b611ec89190612932565b60166000828254611ed99190612954565b9091555050601254601554611eee9083612913565b611ef89190612932565b60186000828254611f099190612954565b90915550611ff29050565b6001600160a01b0387166000908152601b602052604090205460ff168015611f3e57506000600e54115b15611ff257612710600e5486611f549190612913565b611f5e9190612932565b9050600e5460105482611f719190612913565b611f7b9190612932565b60176000828254611f8c9190612954565b9091555050600e54600f54611fa19083612913565b611fab9190612932565b60166000828254611fbc9190612954565b9091555050600e54601154611fd19083612913565b611fdb9190612932565b60186000828254611fec9190612954565b90915550505b80156120035761200387308361230b565b61200d8186612a59565b94505b61201b87878761230b565b50505050505050565b6005546001600160a01b03163314610ca15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a3c565b30600090815260208190526040812054905060006018546016546017546120a59190612954565b6120af9190612954565b90508115806120bc575080155b156120c5575050565b600d546120d3906014612913565b8211156120eb57600d546120e8906014612913565b91505b600080600283601854866120ff9190612913565b6121099190612932565b6121139190612932565b90506121276121228286612a59565b6124af565b6018544790819060009061213d90600290612932565b6121479087612a59565b6017546121549085612913565b61215e9190612932565b9050600060026018546121719190612932565b61217b9088612a59565b6016546121889086612913565b6121929190612932565b905061219e8183612954565b6121a89084612a59565b600060188190556017819055601655925084158015906121c85750600083115b156121d7576121d78584612609565b6006546040516001600160a01b03909116908390600081818185875af1925050503d8060008114612224576040519150601f19603f3d011682016040523d82523d6000602084013e612229565b606091505b50506007546040519197506001600160a01b0316904790600081818185875af1925050503d8060008114612279576040519150601f19603f3d011682016040523d82523d6000602084013e61227e565b606091505b5050505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601b60205260409020805460ff1916821515179055610ed682826126bb565b6001600160a01b03831661236f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a3c565b6001600160a01b0382166123d15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a3c565b6001600160a01b038316600090815260208190526040902054818110156124495760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a3c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361148d565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124e4576124e46129ca565b6001600160a01b03928316602091820292909201810191909152600b54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561253d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256191906129ad565b81600181518110612574576125746129ca565b6001600160a01b039283166020918202929092010152600b5461259a913091168461174c565b600b5460405163791ac94760e01b81526001600160a01b039091169063791ac947906125d3908590600090869030904290600401612a70565b600060405180830381600087803b1580156125ed57600080fd5b505af1158015612601573d6000803e3d6000fd5b505050505050565b600b546126219030906001600160a01b03168461174c565b600b5460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af115801561268f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126b49190612aac565b5050505050565b6001600160a01b0382166000818152601a6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd67469101611740565b600060208083528351808285015260005b8181101561274457858101830151858201604001528201612728565b81811115612756576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461143b57600080fd5b6000806040838503121561279457600080fd5b823561279f8161276c565b946020939093013593505050565b6000602082840312156127bf57600080fd5b81356127ca8161276c565b9392505050565b6000806000606084860312156127e657600080fd5b83356127f18161276c565b925060208401356128018161276c565b929592945050506040919091013590565b60006020828403121561282457600080fd5b5035919050565b6000806040838503121561283e57600080fd5b82356128498161276c565b915060208301356128598161276c565b809150509250929050565b6000806040838503121561287757600080fd5b82356128828161276c565b91506020830135801515811461285957600080fd5b6000806000606084860312156128ac57600080fd5b505081359360208301359350604090920135919050565b600181811c908216806128d757607f821691505b6020821081036128f757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561292d5761292d6128fd565b500290565b60008261294f57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612967576129676128fd565b500190565b60208082526021908201527f7465616d206665652063616e6e6f74206265206c6172676572207468616e20326040820152602560f81b606082015260800190565b6000602082840312156129bf57600080fd5b81516127ca8161276c565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015612a195781516001600160a01b0316875295820195908201906001016129f4565b509495945050505050565b848152608060208201526000612a3d60808301866129e0565b6001600160a01b03949094166040830152506060015292915050565b600082821015612a6b57612a6b6128fd565b500390565b85815284602082015260a060408201526000612a8f60a08301866129e0565b6001600160a01b0394909416606083015250608001529392505050565b600080600060608486031215612ac157600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220cdf658f6651d3e6c785d460a072fee4c5c7c54c634710384df49a7290cbd5ae564736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106102e85760003560e01c806395d89b4111610190578063d257b34f116100dc578063e8ddfddf11610095578063f48c36f41161006f578063f48c36f414610876578063f5648a4f14610897578063f6374342146108ac578063fc155d1d146108c257600080fd5b8063e8ddfddf14610820578063f11a24d314610840578063f2fde38b1461085657600080fd5b8063d257b34f1461077e578063d729715f1461079e578063d85ba063146107b4578063dc3f0d0f146107ca578063dd62ed3e146107ea578063e2f456051461080a57600080fd5b8063aa4bde2811610149578063c024666811610123578063c024666814610708578063c17b5b8c14610728578063c18bc19514610748578063ccf288c61461076857600080fd5b8063aa4bde28146106a2578063aa4c3461146106b8578063b62496f5146106d857600080fd5b806395d89b41146106015780639a7a23d6146106165780639c2e4ac6146106365780639fccce321461064c578063a457c2d714610662578063a9059cbb1461068257600080fd5b8063452ed4f11161024f578063715018a6116102085780637e832ea9116101e25780637e832ea9146105975780638095d564146105ad57806388e765ff146105cd5780638da5cb5b146105e357600080fd5b8063715018a61461054d578063751039fc146105625780637571336a1461057757600080fd5b8063452ed4f1146104965780634a863f41146104b657806351f205e4146104d657806366d602ae146104eb5780636a486a8e1461050157806370a082311461051757600080fd5b80631f3fed8f116102a15780631f3fed8f146103ec57806323b872dd146104025780632be32b61146104225780632c8f86d214610444578063313ce5671461045a578063395093511461047657600080fd5b806306fdde03146102f4578063095ea7b31461031f57806310d5de531461034f5780631694505e1461037f57806318160ddd146103b75780631a8145bb146103d657600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b506103096108d5565b6040516103169190612717565b60405180910390f35b34801561032b57600080fd5b5061033f61033a366004612781565b610967565b6040519015158152602001610316565b34801561035b57600080fd5b5061033f61036a3660046127ad565b601a6020526000908152604090205460ff1681565b34801561038b57600080fd5b50600b5461039f906001600160a01b031681565b6040516001600160a01b039091168152602001610316565b3480156103c357600080fd5b506002545b604051908152602001610316565b3480156103e257600080fd5b506103c860185481565b3480156103f857600080fd5b506103c860165481565b34801561040e57600080fd5b5061033f61041d3660046127d1565b61097f565b34801561042e57600080fd5b5061044261043d366004612812565b6109a3565b005b34801561045057600080fd5b506103c8600f5481565b34801561046657600080fd5b5060405160128152602001610316565b34801561048257600080fd5b5061033f610491366004612781565b610a93565b3480156104a257600080fd5b50600c5461039f906001600160a01b031681565b3480156104c257600080fd5b506104426104d136600461282b565b610ab5565b3480156104e257600080fd5b50610442610b97565b3480156104f757600080fd5b506103c860095481565b34801561050d57600080fd5b506103c860125481565b34801561052357600080fd5b506103c86105323660046127ad565b6001600160a01b031660009081526020819052604090205490565b34801561055957600080fd5b50610442610c8f565b34801561056e57600080fd5b50610442610ca3565b34801561058357600080fd5b50610442610592366004612864565b610ce3565b3480156105a357600080fd5b506103c860135481565b3480156105b957600080fd5b506104426105c8366004612897565b610d89565b3480156105d957600080fd5b506103c860085481565b3480156105ef57600080fd5b506005546001600160a01b031661039f565b34801561060d57600080fd5b50610309610e31565b34801561062257600080fd5b50610442610631366004612864565b610e40565b34801561064257600080fd5b506103c860105481565b34801561065857600080fd5b506103c860175481565b34801561066e57600080fd5b5061033f61067d366004612781565b610f12565b34801561068e57600080fd5b5061033f61069d366004612781565b610f8d565b3480156106ae57600080fd5b506103c8600a5481565b3480156106c457600080fd5b5060075461039f906001600160a01b031681565b3480156106e457600080fd5b5061033f6106f33660046127ad565b601b6020526000908152604090205460ff1681565b34801561071457600080fd5b50610442610723366004612864565b610f9b565b34801561073457600080fd5b50610442610743366004612897565b611002565b34801561075457600080fd5b50610442610763366004612812565b6110a5565b34801561077457600080fd5b506103c861271081565b34801561078a57600080fd5b50610442610799366004612812565b61118c565b3480156107aa57600080fd5b506103c860145481565b3480156107c057600080fd5b506103c8600e5481565b3480156107d657600080fd5b506104426107e5366004612812565b6112b5565b3480156107f657600080fd5b506103c861080536600461282b565b61139a565b34801561081657600080fd5b506103c8600d5481565b34801561082c57600080fd5b5060065461039f906001600160a01b031681565b34801561084c57600080fd5b506103c860115481565b34801561086257600080fd5b506104426108713660046127ad565b6113c5565b34801561088257600080fd5b50600c5461033f90600160a01b900460ff1681565b3480156108a357600080fd5b5061044261143e565b3480156108b857600080fd5b506103c860155481565b6104426108d0366004612812565b611493565b6060600380546108e4906128c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610910906128c3565b801561095d5780601f106109325761010080835404028352916020019161095d565b820191906000526020600020905b81548152906001019060200180831161094057829003601f168201915b5050505050905090565b60003361097581858561174c565b5060019392505050565b60003361098d858285611870565b6109988585856118e4565b506001949350505050565b6109ab612024565b670de0b6b3a76400006103e86109c060025490565b6109cb906002612913565b6109d59190612932565b6109df9190612932565b811015610a455760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f776572206044820152687468616e20302e322560b81b60648201526084015b60405180910390fd5b610a5781670de0b6b3a7640000612913565b60088190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b600033610975818585610aa6838361139a565b610ab09190612954565b61174c565b610abd612024565b6001600160a01b038216610b135760405162461bcd60e51b815260206004820152601e60248201527f616464726573732063616e6e6f74206265207a65726f206164647265737300006044820152606401610a3c565b6001600160a01b038116610b695760405162461bcd60e51b815260206004820152601e60248201527f616464726573732063616e6e6f74206265207a65726f206164647265737300006044820152606401610a3c565b600680546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b610b9f612024565b600d54306000908152602081905260409020541015610c325760405162461bcd60e51b815260206004820152604360248201527f436f6e74726163742073686f756c642068617665206120746f6b656e20616d6f60448201527f756e74207468617420697320686967686572207468616e20726573747269637460648201526234b7b760e91b608482015260a401610a3c565b600c805460ff60a81b1916600160a81b179055610c4d61207e565b600c805460ff60a81b191690556040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a1565b610c97612024565b610ca1600061228b565b565b610cab612024565b600c805460ff60a01b191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b610ceb612024565b80610d5e57600c546001600160a01b0390811690831603610d5e5760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b6064820152608401610a3c565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b610d91612024565b60c8831115610db25760405162461bcd60e51b8152600401610a3c9061296c565b6010839055600f829055601181905580610dcc8385612954565b610dd69190612954565b600e8190556109c41015610e2c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610a3c565b505050565b6060600480546108e4906128c3565b610e48612024565b600c546001600160a01b0390811690831603610ecc5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a3c565b610ed682826122dd565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60003381610f20828661139a565b905083811015610f805760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a3c565b610998828686840361174c565b6000336109758185856118e4565b610fa3612024565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61100a612024565b60c883111561102b5760405162461bcd60e51b8152600401610a3c9061296c565b601483905560138290556015819055806110458385612954565b61104f9190612954565b60128190556109c41015610e2c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610a3c565b6110ad612024565b670de0b6b3a76400006103e86110c260025490565b6110cd906003612913565b6110d79190612932565b6110e19190612932565b8110156111455760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201526b6572207468616e20302e332560a01b6064820152608401610a3c565b61115781670de0b6b3a7640000612913565b600a8190556040519081527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610a88565b611194612024565b620186a06111a160025490565b6111ac906001612913565b6111b69190612932565b8110156112235760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a3c565b6103e861122f60025490565b61123a906001612913565b6112449190612932565b8111156112b05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171892903a37ba30b61039bab838363c9760611b6064820152608401610a3c565b600d55565b6112bd612024565b670de0b6b3a76400006103e86112d260025490565b6112dd906002612913565b6112e79190612932565b6112f19190612932565b8110156113535760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f776572604482015269207468616e20302e322560b01b6064820152608401610a3c565b61136581670de0b6b3a7640000612913565b60098190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610a88565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6113cd612024565b6001600160a01b0381166114325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3c565b61143b8161228b565b50565b611446612024565b604051600090339047908381818185875af1925050503d8060008114611488576040519150601f19603f3d011682016040523d82523d6000602084013e61148d565b606091505b50505050565b6005546001600160a01b03163314806114b657506007546001600160a01b031633145b6115325760405162461bcd60e51b815260206004820152604160248201527f4f6e6c7920746865206f776e6572206f722062657474696e6720636f6e74726160448201527f6374206d616e616765722063616e2063616c6c20746869732066756e6374696f6064820152603760f91b608482015260a401610a3c565b678ac7230489e800008111156115c05760405162461bcd60e51b815260206004820152604760248201527f4d6179206e6f7420627579206d6f7265207468616e2031302045544820696e2060448201527f612073696e676c652062757920746f207265647563652073616e64776963682060648201526661747461636b7360c81b608482015260a401610a3c565b6040805160028082526060820183526000926020830190803683375050600b54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa15801561162a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164e91906129ad565b81600081518110611661576116616129ca565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611695576116956129ca565b6001600160a01b039283166020918202929092010152600b5460405163b6f9de9560e01b815291169063b6f9de959084906116dd90600090869061dead904290600401612a24565b6000604051808303818588803b1580156116f657600080fd5b505af115801561170a573d6000803e3d6000fd5b50505050507fa017c1567cfcdd2d750a8c01e39fe2a846bcebc293c7d078477014d6848205688260405161174091815260200190565b60405180910390a15050565b6001600160a01b0383166117ae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3c565b6001600160a01b03821661180f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a3c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061187c848461139a565b9050600019811461148d57818110156118d75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a3c565b61148d848484840361174c565b6001600160a01b0383166119485760405162461bcd60e51b815260206004820152602560248201527f63616e6e6f74207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a3c565b6001600160a01b0382166119aa5760405162461bcd60e51b815260206004820152602360248201527f63616e6e6f74207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a3c565b600081116119fa5760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610a3c565b600c54600160a01b900460ff1615611d13576005546001600160a01b03848116911614801590611a3857506005546001600160a01b03838116911614155b8015611a4c57506001600160a01b03821615155b8015611a6357506001600160a01b03821661dead14155b8015611a8857506001600160a01b03831660009081526019602052604090205460ff16155b8015611aad57506001600160a01b03821660009081526019602052604090205460ff16155b15611d13576001600160a01b0383166000908152601b602052604090205460ff168015611af357506001600160a01b0382166000908152601a602052604090205460ff16155b15611bd457600854811115611b5b5760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526736b0bc10313abc9760c11b6064820152608401610a3c565b600a546001600160a01b038316600090815260208190526040902054611b819083612954565b1115611bcf5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420457863656564206d61782077616c6c657400000000000000006044820152606401610a3c565b611d13565b6001600160a01b0382166000908152601b602052604090205460ff168015611c1557506001600160a01b0383166000908152601a602052604090205460ff16155b15611c7f57600954811115611bcf5760405162461bcd60e51b815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152691036b0bc1039b2b6361760b11b6064820152608401610a3c565b6001600160a01b0382166000908152601a602052604090205460ff16611d1357600a546001600160a01b038316600090815260208190526040902054611cc59083612954565b1115611d135760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420457863656564206d617820616d6f756e7400000000000000006044820152606401610a3c565b30600090815260208190526040902054600d5481108015908190611d415750600c54600160a81b900460ff16155b8015611d6657506001600160a01b0385166000908152601b602052604090205460ff16155b8015611d8b57506001600160a01b03851660009081526019602052604090205460ff16155b8015611db057506001600160a01b03841660009081526019602052604090205460ff16155b15611dde57600c805460ff60a81b1916600160a81b179055611dd061207e565b600c805460ff60a81b191690555b6001600160a01b03851660009081526019602052604090205460019060ff1680611e2057506001600160a01b03851660009081526019602052604090205460ff165b15611e29575060005b60008115612010576001600160a01b0386166000908152601b602052604090205460ff168015611e5b57506000601254115b15611f145761271060125486611e719190612913565b611e7b9190612932565b905060125460145482611e8e9190612913565b611e989190612932565b60176000828254611ea99190612954565b9091555050601254601354611ebe9083612913565b611ec89190612932565b60166000828254611ed99190612954565b9091555050601254601554611eee9083612913565b611ef89190612932565b60186000828254611f099190612954565b90915550611ff29050565b6001600160a01b0387166000908152601b602052604090205460ff168015611f3e57506000600e54115b15611ff257612710600e5486611f549190612913565b611f5e9190612932565b9050600e5460105482611f719190612913565b611f7b9190612932565b60176000828254611f8c9190612954565b9091555050600e54600f54611fa19083612913565b611fab9190612932565b60166000828254611fbc9190612954565b9091555050600e54601154611fd19083612913565b611fdb9190612932565b60186000828254611fec9190612954565b90915550505b80156120035761200387308361230b565b61200d8186612a59565b94505b61201b87878761230b565b50505050505050565b6005546001600160a01b03163314610ca15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a3c565b30600090815260208190526040812054905060006018546016546017546120a59190612954565b6120af9190612954565b90508115806120bc575080155b156120c5575050565b600d546120d3906014612913565b8211156120eb57600d546120e8906014612913565b91505b600080600283601854866120ff9190612913565b6121099190612932565b6121139190612932565b90506121276121228286612a59565b6124af565b6018544790819060009061213d90600290612932565b6121479087612a59565b6017546121549085612913565b61215e9190612932565b9050600060026018546121719190612932565b61217b9088612a59565b6016546121889086612913565b6121929190612932565b905061219e8183612954565b6121a89084612a59565b600060188190556017819055601655925084158015906121c85750600083115b156121d7576121d78584612609565b6006546040516001600160a01b03909116908390600081818185875af1925050503d8060008114612224576040519150601f19603f3d011682016040523d82523d6000602084013e612229565b606091505b50506007546040519197506001600160a01b0316904790600081818185875af1925050503d8060008114612279576040519150601f19603f3d011682016040523d82523d6000602084013e61227e565b606091505b5050505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601b60205260409020805460ff1916821515179055610ed682826126bb565b6001600160a01b03831661236f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a3c565b6001600160a01b0382166123d15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a3c565b6001600160a01b038316600090815260208190526040902054818110156124495760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a3c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361148d565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124e4576124e46129ca565b6001600160a01b03928316602091820292909201810191909152600b54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561253d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256191906129ad565b81600181518110612574576125746129ca565b6001600160a01b039283166020918202929092010152600b5461259a913091168461174c565b600b5460405163791ac94760e01b81526001600160a01b039091169063791ac947906125d3908590600090869030904290600401612a70565b600060405180830381600087803b1580156125ed57600080fd5b505af1158015612601573d6000803e3d6000fd5b505050505050565b600b546126219030906001600160a01b03168461174c565b600b5460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af115801561268f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126b49190612aac565b5050505050565b6001600160a01b0382166000818152601a6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd67469101611740565b600060208083528351808285015260005b8181101561274457858101830151858201604001528201612728565b81811115612756576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461143b57600080fd5b6000806040838503121561279457600080fd5b823561279f8161276c565b946020939093013593505050565b6000602082840312156127bf57600080fd5b81356127ca8161276c565b9392505050565b6000806000606084860312156127e657600080fd5b83356127f18161276c565b925060208401356128018161276c565b929592945050506040919091013590565b60006020828403121561282457600080fd5b5035919050565b6000806040838503121561283e57600080fd5b82356128498161276c565b915060208301356128598161276c565b809150509250929050565b6000806040838503121561287757600080fd5b82356128828161276c565b91506020830135801515811461285957600080fd5b6000806000606084860312156128ac57600080fd5b505081359360208301359350604090920135919050565b600181811c908216806128d757607f821691505b6020821081036128f757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561292d5761292d6128fd565b500290565b60008261294f57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612967576129676128fd565b500190565b60208082526021908201527f7465616d206665652063616e6e6f74206265206c6172676572207468616e20326040820152602560f81b606082015260800190565b6000602082840312156129bf57600080fd5b81516127ca8161276c565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015612a195781516001600160a01b0316875295820195908201906001016129f4565b509495945050505050565b848152608060208201526000612a3d60808301866129e0565b6001600160a01b03949094166040830152506060015292915050565b600082821015612a6b57612a6b6128fd565b500390565b85815284602082015260a060408201526000612a8f60a08301866129e0565b6001600160a01b0394909416606083015250608001529392505050565b600080600060608486031215612ac157600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220cdf658f6651d3e6c785d460a072fee4c5c7c54c634710384df49a7290cbd5ae564736f6c634300080f0033

Deployed Bytecode Sourcemap

22031:14424:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9622:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11982:201;;;;;;;;;;-1:-1:-1;11982:201:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11982:201:0;1072:187:1;23004:64:0;;;;;;;;;;-1:-1:-1;23004:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;22256:39;;;;;;;;;;-1:-1:-1;22256:39:0;;;;-1:-1:-1;;;;;22256:39:0;;;;;;-1:-1:-1;;;;;1704:32:1;;;1686:51;;1674:2;1659:18;22256:39:0;1516:227:1;10751:108:0;;;;;;;;;;-1:-1:-1;10839:12:0;;10751:108;;;1894:25:1;;;1882:2;1867:18;10751:108:0;1748:177:1;22902:33:0;;;;;;;;;;;;;;;;22828;;;;;;;;;;;;;;;;12763:261;;;;;;;;;;-1:-1:-1;12763:261:0;;;;;:::i;:::-;;:::i;33586:269::-;;;;;;;;;;-1:-1:-1;33586:269:0;;;;;:::i;:::-;;:::i;:::-;;22586:24;;;;;;;;;;;;;;;;10593:93;;;;;;;;;;-1:-1:-1;10593:93:0;;10676:2;2718:36:1;;2706:2;2691:18;10593:93:0;2576:184:1;13433:238:0;;;;;;;;;;-1:-1:-1;13433:238:0;;;;;:::i;:::-;;:::i;22304:21::-;;;;;;;;;;-1:-1:-1;22304:21:0;;;;-1:-1:-1;;;;;22304:21:0;;;32494:372;;;;;;;;;;-1:-1:-1;32494:372:0;;;;;:::i;:::-;;:::i;31770:315::-;;;;;;;;;;;;;:::i;22184:28::-;;;;;;;;;;;;;;;;22688;;;;;;;;;;;;;;;;10922:127;;;;;;;;;;-1:-1:-1;10922:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11023:18:0;10996:7;11023:18;;;;;;;;;;;;10922:127;3063:103;;;;;;;;;;;;;:::i;35608:110::-;;;;;;;;;;;;;:::i;30648:260::-;;;;;;;;;;-1:-1:-1;30648:260:0;;;;;:::i;:::-;;:::i;22723:25::-;;;;;;;;;;;;;;;;34145:423;;;;;;;;;;-1:-1:-1;34145:423:0;;;;;:::i;:::-;;:::i;22150:27::-;;;;;;;;;;;;;;;;2422:87;;;;;;;;;;-1:-1:-1;2495:6:0;;-1:-1:-1;;;;;2495:6:0;2422:87;;9841:104;;;;;;;;;;;;;:::i;35016:295::-;;;;;;;;;;-1:-1:-1;35016:295:0;;;;;:::i;:::-;;:::i;22617:25::-;;;;;;;;;;;;;;;;22868:27;;;;;;;;;;;;;;;;14174:436;;;;;;;;;;-1:-1:-1;14174:436:0;;;;;:::i;:::-;;:::i;11255:193::-;;;;;;;;;;-1:-1:-1;11255:193:0;;;;;:::i;:::-;;:::i;22219:30::-;;;;;;;;;;;;;;;;22111;;;;;;;;;;-1:-1:-1;22111:30:0;;;;-1:-1:-1;;;;;22111:30:0;;;23224:58;;;;;;;;;;-1:-1:-1;23224:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32304:182;;;;;;;;;;-1:-1:-1;32304:182:0;;;;;:::i;:::-;;:::i;34576:432::-;;;;;;;;;;-1:-1:-1;34576:432:0;;;;;:::i;:::-;;:::i;33294:284::-;;;;;;;;;;-1:-1:-1;33294:284:0;;;;;:::i;:::-;;:::i;22439:44::-;;;;;;;;;;;;22478:5;22439:44;;32936:350;;;;;;;;;;-1:-1:-1;32936:350:0;;;;;:::i;:::-;;:::i;22755:26::-;;;;;;;;;;;;;;;;22552:27;;;;;;;;;;;;;;;;33863:274;;;;;;;;;;-1:-1:-1;33863:274:0;;;;;:::i;:::-;;:::i;11511:151::-;;;;;;;;;;-1:-1:-1;11511:151:0;;;;;:::i;:::-;;:::i;22397:33::-;;;;;;;;;;;;;;;;22076:28;;;;;;;;;;-1:-1:-1;22076:28:0;;;;-1:-1:-1;;;;;22076:28:0;;;22649:30;;;;;;;;;;;;;;;;3321:201;;;;;;;;;;-1:-1:-1;3321:201:0;;;;;:::i;:::-;;:::i;22334:28::-;;;;;;;;;;-1:-1:-1;22334:28:0;;;;-1:-1:-1;;;22334:28:0;;;;;;32136:160;;;;;;;;;;;;;:::i;22788:31::-;;;;;;;;;;;;;;;;35821:629;;;;;;:::i;:::-;;:::i;9622:100::-;9676:13;9709:5;9702:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9622:100;:::o;11982:201::-;12065:4;1049:10;12121:32;1049:10;12137:7;12146:6;12121:8;:32::i;:::-;-1:-1:-1;12171:4:0;;11982:201;-1:-1:-1;;;11982:201:0:o;12763:261::-;12860:4;1049:10;12918:38;12934:4;1049:10;12949:6;12918:15;:38::i;:::-;12967:27;12977:4;12983:2;12987:6;12967:9;:27::i;:::-;-1:-1:-1;13012:4:0;;12763:261;-1:-1:-1;;;;12763:261:0:o;33586:269::-;2308:13;:11;:13::i;:::-;33705:4:::1;33699;33679:13;10839:12:::0;;;10751:108;33679:13:::1;:17;::::0;33695:1:::1;33679:17;:::i;:::-;:24;;;;:::i;:::-;33678:31;;;;:::i;:::-;33668:6;:41;;33660:95;;;::::0;-1:-1:-1;;;33660:95:0;;5222:2:1;33660:95:0::1;::::0;::::1;5204:21:1::0;5261:2;5241:18;;;5234:30;5300:34;5280:18;;;5273:62;-1:-1:-1;;;5351:18:1;;;5344:39;5400:19;;33660:95:0::1;;;;;;;;;33781:17;:6:::0;33791::::1;33781:17;:::i;:::-;33766:12;:32:::0;;;33814:33:::1;::::0;1894:25:1;;;33814:33:0::1;::::0;1882:2:1;1867:18;33814:33:0::1;;;;;;;;33586:269:::0;:::o;13433:238::-;13521:4;1049:10;13577:64;1049:10;13593:7;13630:10;13602:25;1049:10;13593:7;13602:9;:25::i;:::-;:38;;;;:::i;:::-;13577:8;:64::i;32494:372::-;2308:13;:11;:13::i;:::-;-1:-1:-1;;;;;32609:26:0;::::1;32601:68;;;::::0;-1:-1:-1;;;32601:68:0;;5765:2:1;32601:68:0::1;::::0;::::1;5747:21:1::0;5804:2;5784:18;;;5777:30;5843:32;5823:18;;;5816:60;5893:18;;32601:68:0::1;5563:354:1::0;32601:68:0::1;-1:-1:-1::0;;;;;32688:30:0;::::1;32680:72;;;::::0;-1:-1:-1;;;32680:72:0;;5765:2:1;32680:72:0::1;::::0;::::1;5747:21:1::0;5804:2;5784:18;;;5777:30;5843:32;5823:18;;;5816:60;5893:18;;32680:72:0::1;5563:354:1::0;32680:72:0::1;32765:13;:37:::0;;-1:-1:-1;;;;;32765:37:0;;::::1;-1:-1:-1::0;;;;;;32765:37:0;;::::1;;::::0;;;32813:15:::1;:43:::0;;;;;::::1;::::0;::::1;;::::0;;32494:372::o;31770:315::-;2308:13;:11;:13::i;:::-;31861:18:::1;::::0;31851:4:::1;10996:7:::0;11023:18;;;;;;;;;;;31833:46:::1;;31825:126;;;::::0;-1:-1:-1;;;31825:126:0;;6124:2:1;31825:126:0::1;::::0;::::1;6106:21:1::0;6163:2;6143:18;;;6136:30;6202:34;6182:18;;;6175:62;6273:34;6253:18;;;6246:62;-1:-1:-1;;;6324:19:1;;;6317:34;6368:19;;31825:126:0::1;5922:471:1::0;31825:126:0::1;31962:8;:15:::0;;-1:-1:-1;;;;31962:15:0::1;-1:-1:-1::0;;;31962:15:0::1;::::0;;31988:10:::1;:8;:10::i;:::-;32009:8;:16:::0;;-1:-1:-1;;;;32009:16:0::1;::::0;;32041:36:::1;::::0;32061:15:::1;1894:25:1::0;;32041:36:0::1;::::0;1882:2:1;1867:18;32041:36:0::1;;;;;;;31770:315::o:0;3063:103::-;2308:13;:11;:13::i;:::-;3128:30:::1;3155:1;3128:18;:30::i;:::-;3063:103::o:0;35608:110::-;2308:13;:11;:13::i;:::-;35662:9:::1;:17:::0;;-1:-1:-1;;;;35662:17:0::1;::::0;;35695:15:::1;::::0;::::1;::::0;35674:5:::1;::::0;35695:15:::1;35608:110::o:0;30648:260::-;2308:13;:11;:13::i;:::-;30744:4:::1;30740:104;;30782:6;::::0;-1:-1:-1;;;;;30782:6:0;;::::1;30772:16:::0;;::::1;::::0;30764:68:::1;;;::::0;-1:-1:-1;;;30764:68:0;;6600:2:1;30764:68:0::1;::::0;::::1;6582:21:1::0;6639:2;6619:18;;;6612:30;6678:34;6658:18;;;6651:62;-1:-1:-1;;;6729:18:1;;;6722:37;6776:19;;30764:68:0::1;6398:403:1::0;30764:68:0::1;-1:-1:-1::0;;;;;30854:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;30854:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30648:260::o;34145:423::-;2308:13;:11;:13::i;:::-;34276:3:::1;34264:8;:15;;34256:61;;;;-1:-1:-1::0;;;34256:61:0::1;;;;;;;:::i;:::-;34328:10;:21:::0;;;34360:9:::1;:19:::0;;;34390:15:::1;:31:::0;;;34408:13;34447:22:::1;34372:7:::0;34341:8;34447:22:::1;:::i;:::-;:40;;;;:::i;:::-;34432:12;:55:::0;;;34522:4:::1;-1:-1:-1::0;34506:20:0::1;34498:62;;;::::0;-1:-1:-1;;;34498:62:0;;7410:2:1;34498:62:0::1;::::0;::::1;7392:21:1::0;7449:2;7429:18;;;7422:30;7488:31;7468:18;;;7461:59;7537:18;;34498:62:0::1;7208:353:1::0;34498:62:0::1;34145:423:::0;;;:::o;9841:104::-;9897:13;9930:7;9923:14;;;;;:::i;35016:295::-;2308:13;:11;:13::i;:::-;35125:6:::1;::::0;-1:-1:-1;;;;;35125:6:0;;::::1;35117:14:::0;;::::1;::::0;35109:84:::1;;;::::0;-1:-1:-1;;;35109:84:0;;7768:2:1;35109:84:0::1;::::0;::::1;7750:21:1::0;7807:2;7787:18;;;7780:30;7846:34;7826:18;;;7819:62;7917:27;7897:18;;;7890:55;7962:19;;35109:84:0::1;7566:421:1::0;35109:84:0::1;35206:41;35235:4;35241:5;35206:28;:41::i;:::-;35263:40;::::0;;::::1;;::::0;-1:-1:-1;;;;;35263:40:0;::::1;::::0;::::1;::::0;;;::::1;35016:295:::0;;:::o;14174:436::-;14267:4;1049:10;14267:4;14350:25;1049:10;14367:7;14350:9;:25::i;:::-;14323:52;;14414:15;14394:16;:35;;14386:85;;;;-1:-1:-1;;;14386:85:0;;8194:2:1;14386:85:0;;;8176:21:1;8233:2;8213:18;;;8206:30;8272:34;8252:18;;;8245:62;-1:-1:-1;;;8323:18:1;;;8316:35;8368:19;;14386:85:0;7992:401:1;14386:85:0;14507:60;14516:5;14523:7;14551:15;14532:16;:34;14507:8;:60::i;11255:193::-;11334:4;1049:10;11390:28;1049:10;11407:2;11411:6;11390:9;:28::i;32304:182::-;2308:13;:11;:13::i;:::-;-1:-1:-1;;;;;32389:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;32389:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32444:34;;1212:41:1;;;32444:34:0::1;::::0;1185:18:1;32444:34:0::1;;;;;;;32304:182:::0;;:::o;34576:432::-;2308:13;:11;:13::i;:::-;34708:3:::1;34696:8;:15;;34688:61;;;;-1:-1:-1::0;;;34688:61:0::1;;;;;;;:::i;:::-;34760:11;:22:::0;;;34793:10:::1;:20:::0;;;34824:16:::1;:32:::0;;;34843:13;34883:24:::1;34806:7:::0;34774:8;34883:24:::1;:::i;:::-;:43;;;;:::i;:::-;34867:13;:59:::0;;;34962:4:::1;-1:-1:-1::0;34945:21:0::1;34937:63;;;::::0;-1:-1:-1;;;34937:63:0;;7410:2:1;34937:63:0::1;::::0;::::1;7392:21:1::0;7449:2;7429:18;;;7422:30;7488:31;7468:18;;;7461:59;7537:18;;34937:63:0::1;7208:353:1::0;33294:284:0;2308:13;:11;:13::i;:::-;33416:4:::1;33410;33390:13;10839:12:::0;;;10751:108;33390:13:::1;:17;::::0;33406:1:::1;33390:17;:::i;:::-;:24;;;;:::i;:::-;33389:31;;;;:::i;:::-;33379:6;:41;;33371:98;;;::::0;-1:-1:-1;;;33371:98:0;;8600:2:1;33371:98:0::1;::::0;::::1;8582:21:1::0;8639:2;8619:18;;;8612:30;8678:34;8658:18;;;8651:62;-1:-1:-1;;;8729:18:1;;;8722:42;8781:19;;33371:98:0::1;8398:408:1::0;33371:98:0::1;33498:17;:6:::0;33508::::1;33498:17;:::i;:::-;33480:15;:35:::0;;;33531:39:::1;::::0;1894:25:1;;;33531:39:0::1;::::0;1882:2:1;1867:18;33531:39:0::1;1748:177:1::0;32936:350:0;2308:13;:11;:13::i;:::-;33060:6:::1;33040:13;10839:12:::0;;;10751:108;33040:13:::1;:17;::::0;33056:1:::1;33040:17;:::i;:::-;:26;;;;:::i;:::-;33027:9;:39;;33019:105;;;::::0;-1:-1:-1;;;33019:105:0;;9013:2:1;33019:105:0::1;::::0;::::1;8995:21:1::0;9052:2;9032:18;;;9025:30;9091:34;9071:18;;;9064:62;-1:-1:-1;;;9142:18:1;;;9135:51;9203:19;;33019:105:0::1;8811:417:1::0;33019:105:0::1;33176:4;33156:13;10839:12:::0;;;10751:108;33156:13:::1;:17;::::0;33172:1:::1;33156:17;:::i;:::-;:24;;;;:::i;:::-;33143:9;:37;;33135:102;;;::::0;-1:-1:-1;;;33135:102:0;;9435:2:1;33135:102:0::1;::::0;::::1;9417:21:1::0;9474:2;9454:18;;;9447:30;9513:34;9493:18;;;9486:62;-1:-1:-1;;;9564:18:1;;;9557:50;9624:19;;33135:102:0::1;9233:416:1::0;33135:102:0::1;33248:18;:30:::0;32936:350::o;33863:274::-;2308:13;:11;:13::i;:::-;33983:4:::1;33977;33957:13;10839:12:::0;;;10751:108;33957:13:::1;:17;::::0;33973:1:::1;33957:17;:::i;:::-;:24;;;;:::i;:::-;33956:31;;;;:::i;:::-;33946:6;:41;;33938:96;;;::::0;-1:-1:-1;;;33938:96:0;;9856:2:1;33938:96:0::1;::::0;::::1;9838:21:1::0;9895:2;9875:18;;;9868:30;9934:34;9914:18;;;9907:62;-1:-1:-1;;;9985:18:1;;;9978:40;10035:19;;33938:96:0::1;9654:406:1::0;33938:96:0::1;34061:17;:6:::0;34071::::1;34061:17;:::i;:::-;34045:13;:33:::0;;;34094:35:::1;::::0;1894:25:1;;;34094:35:0::1;::::0;1882:2:1;1867:18;34094:35:0::1;1748:177:1::0;11511:151:0;-1:-1:-1;;;;;11627:18:0;;;11600:7;11627:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11511:151::o;3321:201::-;2308:13;:11;:13::i;:::-;-1:-1:-1;;;;;3410:22:0;::::1;3402:73;;;::::0;-1:-1:-1;;;3402:73:0;;10267:2:1;3402:73:0::1;::::0;::::1;10249:21:1::0;10306:2;10286:18;;;10279:30;10345:34;10325:18;;;10318:62;-1:-1:-1;;;10396:18:1;;;10389:36;10442:19;;3402:73:0::1;10065:402:1::0;3402:73:0::1;3486:28;3505:8;3486:18;:28::i;:::-;3321:201:::0;:::o;32136:160::-;2308:13;:11;:13::i;:::-;32230:58:::1;::::0;32194:12:::1;::::0;32238:10:::1;::::0;32262:21:::1;::::0;32194:12;32230:58;32194:12;32230:58;32262:21;32238:10;32230:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;32136:160:0:o;35821:629::-;2495:6;;-1:-1:-1;;;;;2495:6:0;23866:10;:21;;:54;;-1:-1:-1;23905:15:0;;-1:-1:-1;;;;;23905:15:0;23891:10;:29;23866:54;23858:132;;;;-1:-1:-1;;;23858:132:0;;10884:2:1;23858:132:0;;;10866:21:1;10923:2;10903:18;;;10896:30;10962:34;10942:18;;;10935:62;11033:34;11013:18;;;11006:62;-1:-1:-1;;;11084:19:1;;;11077:32;11126:19;;23858:132:0;10682:469:1;23858:132:0;35943:8:::1;35928:11;:23;;35920:107;;;::::0;-1:-1:-1;;;35920:107:0;;11358:2:1;35920:107:0::1;::::0;::::1;11340:21:1::0;11397:2;11377:18;;;11370:30;11436:34;11416:18;;;11409:62;11507:34;11487:18;;;11480:62;-1:-1:-1;;;11558:19:1;;;11551:38;11606:19;;35920:107:0::1;11156:475:1::0;35920:107:0::1;36064:16;::::0;;36078:1:::1;36064:16:::0;;;;;::::1;::::0;;36040:21:::1;::::0;36064:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;36101:15:0::1;::::0;:22:::1;::::0;;-1:-1:-1;;;36101:22:0;;;;36040:40;;-1:-1:-1;;;;;;36101:15:0;;::::1;::::0;:20:::1;::::0;-1:-1:-1;36101:22:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36091:4;36096:1;36091:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;36091:32:0::1;;;-1:-1:-1::0;;;;;36091:32:0::1;;;::::0;::::1;36152:4;36134;36139:1;36134:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;36134:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;36170:15:::1;::::0;:225:::1;::::0;-1:-1:-1;;;36170:225:0;;:15;::::1;::::0;:66:::1;::::0;36244:11;;36170:225:::1;::::0;:15:::1;::::0;36320:4;;36347:6:::1;::::0;36369:15:::1;::::0;36170:225:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;36413:29;36430:11;36413:29;;;;1894:25:1::0;;1882:2;1867:18;;1748:177;36413:29:0::1;;;;;;;;35909:541;35821:629:::0;:::o;18167:346::-;-1:-1:-1;;;;;18269:19:0;;18261:68;;;;-1:-1:-1;;;18261:68:0;;13339:2:1;18261:68:0;;;13321:21:1;13378:2;13358:18;;;13351:30;13417:34;13397:18;;;13390:62;-1:-1:-1;;;13468:18:1;;;13461:34;13512:19;;18261:68:0;13137:400:1;18261:68:0;-1:-1:-1;;;;;18348:21:0;;18340:68;;;;-1:-1:-1;;;18340:68:0;;13744:2:1;18340:68:0;;;13726:21:1;13783:2;13763:18;;;13756:30;13822:34;13802:18;;;13795:62;-1:-1:-1;;;13873:18:1;;;13866:32;13915:19;;18340:68:0;13542:398:1;18340:68:0;-1:-1:-1;;;;;18421:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18473:32;;1894:25:1;;;18473:32:0;;1867:18:1;18473:32:0;;;;;;;18167:346;;;:::o;18804:419::-;18905:24;18932:25;18942:5;18949:7;18932:9;:25::i;:::-;18905:52;;-1:-1:-1;;18972:16:0;:37;18968:248;;19054:6;19034:16;:26;;19026:68;;;;-1:-1:-1;;;19026:68:0;;14147:2:1;19026:68:0;;;14129:21:1;14186:2;14166:18;;;14159:30;14225:31;14205:18;;;14198:59;14274:18;;19026:68:0;13945:353:1;19026:68:0;19138:51;19147:5;19154:7;19182:6;19163:16;:25;19138:8;:51::i;25795:2875::-;-1:-1:-1;;;;;25893:18:0;;25885:68;;;;-1:-1:-1;;;25885:68:0;;14505:2:1;25885:68:0;;;14487:21:1;14544:2;14524:18;;;14517:30;14583:34;14563:18;;;14556:62;-1:-1:-1;;;14634:18:1;;;14627:35;14679:19;;25885:68:0;14303:401:1;25885:68:0;-1:-1:-1;;;;;25972:16:0;;25964:64;;;;-1:-1:-1;;;25964:64:0;;14911:2:1;25964:64:0;;;14893:21:1;14950:2;14930:18;;;14923:30;14989:34;14969:18;;;14962:62;-1:-1:-1;;;15040:18:1;;;15033:33;15083:19;;25964:64:0;14709:399:1;25964:64:0;26056:1;26047:6;:10;26039:52;;;;-1:-1:-1;;;26039:52:0;;15315:2:1;26039:52:0;;;15297:21:1;15354:2;15334:18;;;15327:30;15393:31;15373:18;;;15366:59;15442:18;;26039:52:0;15113:353:1;26039:52:0;26155:9;;-1:-1:-1;;;26155:9:0;;;;26152:1009;;;2495:6;;-1:-1:-1;;;;;26183:15:0;;;2495:6;;26183:15;;;;:32;;-1:-1:-1;2495:6:0;;-1:-1:-1;;;;;26202:13:0;;;2495:6;;26202:13;;26183:32;:52;;;;-1:-1:-1;;;;;;26219:16:0;;;;26183:52;:77;;;;-1:-1:-1;;;;;;26239:21:0;;26253:6;26239:21;;26183:77;:107;;;;-1:-1:-1;;;;;;26265:25:0;;;;;;:19;:25;;;;;;;;26264:26;26183:107;:135;;;;-1:-1:-1;;;;;;26295:23:0;;;;;;:19;:23;;;;;;;;26294:24;26183:135;26180:970;;;-1:-1:-1;;;;;26372:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;26408:35:0;;;;;;:31;:35;;;;;;;;26407:36;26372:71;26368:767;;;26486:12;;26476:6;:22;;26468:75;;;;-1:-1:-1;;;26468:75:0;;15673:2:1;26468:75:0;;;15655:21:1;15712:2;15692:18;;;15685:30;15751:34;15731:18;;;15724:62;-1:-1:-1;;;15802:18:1;;;15795:38;15850:19;;26468:75:0;15471:404:1;26468:75:0;26600:15;;-1:-1:-1;;;;;11023:18:0;;10996:7;11023:18;;;;;;;;;;;26574:22;;:6;:22;:::i;:::-;:41;;26566:78;;;;-1:-1:-1;;;26566:78:0;;16082:2:1;26566:78:0;;;16064:21:1;16121:2;16101:18;;;16094:30;16160:26;16140:18;;;16133:54;16204:18;;26566:78:0;15880:348:1;26566:78:0;26368:767;;;-1:-1:-1;;;;;26722:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;26756:37:0;;;;;;:31;:37;;;;;;;;26755:38;26722:71;26718:417;;;26836:13;;26826:6;:23;;26818:78;;;;-1:-1:-1;;;26818:78:0;;16435:2:1;26818:78:0;;;16417:21:1;16474:2;16454:18;;;16447:30;16513:34;16493:18;;;16486:62;-1:-1:-1;;;16564:18:1;;;16557:40;16614:19;;26818:78:0;16233:406:1;26718:417:0;-1:-1:-1;;;;;26978:35:0;;;;;;:31;:35;;;;;;;;26974:161;;27071:15;;-1:-1:-1;;;;;11023:18:0;;10996:7;11023:18;;;;;;;;;;;27045:22;;:6;:22;:::i;:::-;:41;;27037:78;;;;-1:-1:-1;;;27037:78:0;;16846:2:1;27037:78:0;;;16828:21:1;16885:2;16865:18;;;16858:30;16924:26;16904:18;;;16897:54;16968:18;;27037:78:0;16644:348:1;27037:78:0;27222:4;27173:28;11023:18;;;;;;;;;;;27280;;27256:42;;;;;;;27314:20;;-1:-1:-1;27326:8:0;;-1:-1:-1;;;27326:8:0;;;;27325:9;27314:20;:56;;;;-1:-1:-1;;;;;;27339:31:0;;;;;;:25;:31;;;;;;;;27338:32;27314:56;:86;;;;-1:-1:-1;;;;;;27375:25:0;;;;;;:19;:25;;;;;;;;27374:26;27314:86;:114;;;;-1:-1:-1;;;;;;27405:23:0;;;;;;:19;:23;;;;;;;;27404:24;27314:114;27311:217;;;27445:8;:15;;-1:-1:-1;;;;27445:15:0;-1:-1:-1;;;27445:15:0;;;27475:10;:8;:10::i;:::-;27500:8;:16;;-1:-1:-1;;;;27500:16:0;;;27311:217;-1:-1:-1;;;;;27575:25:0;;27540:12;27575:25;;;:19;:25;;;;;;27555:4;;27575:25;;;:52;;-1:-1:-1;;;;;;27604:23:0;;;;;;:19;:23;;;;;;;;27575:52;27572:98;;;-1:-1:-1;27653:5:0;27572:98;27682:12;27714:7;27711:904;;;-1:-1:-1;;;;;27741:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;27790:1;27774:13;;:17;27741:50;27737:727;;;22478:5;27827:13;;27818:6;:22;;;;:::i;:::-;:37;;;;:::i;:::-;27811:44;;27911:13;;27897:11;;27890:4;:18;;;;:::i;:::-;:34;;;;:::i;:::-;27874:12;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;27985:13:0;;27972:10;;27965:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;27943:18;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;28065:13:0;;28046:16;;28039:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;28017:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;27737:727:0;;-1:-1:-1;27737:727:0;;-1:-1:-1;;;;;28116:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;28166:1;28151:12;;:16;28116:51;28113:351;;;22478:5;28204:12;;28195:6;:21;;;;:::i;:::-;:36;;;;:::i;:::-;28188:43;;28286:12;;28273:10;;28266:4;:17;;;;:::i;:::-;:32;;;;:::i;:::-;28250:12;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;28358:12:0;;28346:9;;28339:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;28317:18;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;28436:12:0;;28418:15;;28411:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;28389:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;28113:351:0;28483:8;;28480:91;;28513:42;28529:4;28543;28550;28513:15;:42::i;:::-;28587:14;28597:4;28587:14;;:::i;:::-;;;27711:904;28627:33;28643:4;28649:2;28653:6;28627:15;:33::i;:::-;25874:2796;;;;25795:2875;;;:::o;2587:132::-;2495:6;;-1:-1:-1;;;;;2495:6:0;1049:10;2651:23;2643:68;;;;-1:-1:-1;;;2643:68:0;;17329:2:1;2643:68:0;;;17311:21:1;;;17348:18;;;17341:30;17407:34;17387:18;;;17380:62;17459:18;;2643:68:0;17127:356:1;28678:1396:0;28763:4;28719:23;11023:18;;;;;;;;;;;28719:50;;28780:25;28844:18;;28823;;28808:12;;:33;;;;:::i;:::-;:54;;;;:::i;:::-;28780:82;-1:-1:-1;28878:20:0;;;:46;;-1:-1:-1;28902:22:0;;28878:46;28875:59;;;28926:7;;28678:1396::o;28875:59::-;28967:18;;:23;;28988:2;28967:23;:::i;:::-;28949:15;:41;28946:113;;;29024:18;;:23;;29045:2;29024:23;:::i;:::-;29006:41;;28946:113;29071:12;29145:23;29230:1;29210:17;29189:18;;29171:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;29145:86;-1:-1:-1;29244:51:0;29261:33;29145:86;29261:15;:33;:::i;:::-;29244:16;:51::i;:::-;29480:18;;29329:21;;;;29308:18;;29480:20;;29499:1;;29480:20;:::i;:::-;29459:42;;:17;:42;:::i;:::-;29443:12;;29430:25;;:10;:25;:::i;:::-;:72;;;;:::i;:::-;29410:92;;29513:23;29614:1;29595:18;;:20;;;;:::i;:::-;29574:42;;:17;:42;:::i;:::-;29552:18;;29539:31;;:10;:31;:::i;:::-;:78;;;;:::i;:::-;29513:104;-1:-1:-1;29649:27:0;29513:104;29649:9;:27;:::i;:::-;29630:46;;;;:::i;:::-;29710:1;29689:18;:22;;;29722:12;:16;;;29749:18;:22;29630:46;-1:-1:-1;29787:19:0;;;;;:42;;;29828:1;29810:15;:19;29787:42;29784:119;;;29845:46;29858:15;29875;29845:12;:46::i;:::-;29936:13;;29928:49;;-1:-1:-1;;;;;29936:13:0;;;;29963:9;;29928:49;;;;29963:9;29936:13;29928:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;30009:15:0;;30001:63;;29915:62;;-1:-1:-1;;;;;;30009:15:0;;30038:21;;30001:63;;;;30038:21;30009:15;30001:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;28678:1396:0:o;3682:191::-;3775:6;;;-1:-1:-1;;;;;3792:17:0;;;-1:-1:-1;;;;;;3792:17:0;;;;;;;3825:40;;3775:6;;;3792:17;3775:6;;3825:40;;3756:16;;3825:40;3745:128;3682:191;:::o;35319:240::-;-1:-1:-1;;;;;35402:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;35402:39:0;;;;;;;35454;35402:31;:39;35454:26;:39::i;15080:806::-;-1:-1:-1;;;;;15177:18:0;;15169:68;;;;-1:-1:-1;;;15169:68:0;;17690:2:1;15169:68:0;;;17672:21:1;17729:2;17709:18;;;17702:30;17768:34;17748:18;;;17741:62;-1:-1:-1;;;17819:18:1;;;17812:35;17864:19;;15169:68:0;17488:401:1;15169:68:0;-1:-1:-1;;;;;15256:16:0;;15248:64;;;;-1:-1:-1;;;15248:64:0;;18096:2:1;15248:64:0;;;18078:21:1;18135:2;18115:18;;;18108:30;18174:34;18154:18;;;18147:62;-1:-1:-1;;;18225:18:1;;;18218:33;18268:19;;15248:64:0;17894:399:1;15248:64:0;-1:-1:-1;;;;;15398:15:0;;15376:19;15398:15;;;;;;;;;;;15432:21;;;;15424:72;;;;-1:-1:-1;;;15424:72:0;;18500:2:1;15424:72:0;;;18482:21:1;18539:2;18519:18;;;18512:30;18578:34;18558:18;;;18551:62;-1:-1:-1;;;18629:18:1;;;18622:36;18675:19;;15424:72:0;18298:402:1;15424:72:0;-1:-1:-1;;;;;15532:15:0;;;:9;:15;;;;;;;;;;;15550:20;;;15532:38;;15750:13;;;;;;;;;;:23;;;;;;15802:26;;1894:25:1;;;15750:13:0;;15802:26;;1867:18:1;15802:26:0;;;;;;;15841:37;34145:423;31125:593;31277:16;;;31291:1;31277:16;;;;;;;;31253:21;;31277:16;;;;;;;;;;-1:-1:-1;31277:16:0;31253:40;;31322:4;31304;31309:1;31304:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;31304:23:0;;;:7;;;;;;;;;;:23;;;;31348:15;;:22;;;-1:-1:-1;;;31348:22:0;;;;:15;;;;;:20;;:22;;;;;31304:7;;31348:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31338:4;31343:1;31338:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;31338:32:0;;;:7;;;;;;;;;:32;31415:15;;31383:62;;31400:4;;31415:15;31433:11;31383:8;:62::i;:::-;31484:15;;:224;;-1:-1:-1;;;31484:224:0;;-1:-1:-1;;;;;31484:15:0;;;;:66;;:224;;31565:11;;31484:15;;31635:4;;31662;;31682:15;;31484:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31180:538;31125:593;:::o;30119:521::-;30299:15;;30267:62;;30284:4;;-1:-1:-1;;;;;30299:15:0;30317:11;30267:8;:62::i;:::-;30372:15;;:260;;-1:-1:-1;;;30372:260:0;;30444:4;30372:260;;;19633:34:1;19683:18;;;19676:34;;;30372:15:0;19726:18:1;;;19719:34;;;19769:18;;;19762:34;30584:6:0;19812:19:1;;;19805:44;30606:15:0;19865:19:1;;;19858:35;-1:-1:-1;;;;;30372:15:0;;;;:31;;30411:9;;19567:19:1;;30372:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;30119:521;;:::o;30916:201::-;-1:-1:-1;;;;;31002:37:0;;;;;;:31;:37;;;;;;;;;:50;;-1:-1:-1;;31002:50:0;;;;;;;;;;31068:41;;20383:51:1;;;20450:18;;;20443:50;31068:41:0;;20356:18:1;31068:41:0;20215:284:1;14:597;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;:::-;1500:5;1264:247;-1:-1:-1;;;1264:247:1:o;1930:456::-;2007:6;2015;2023;2076:2;2064:9;2055:7;2051:23;2047:32;2044:52;;;2092:1;2089;2082:12;2044:52;2131:9;2118:23;2150:31;2175:5;2150:31;:::i;:::-;2200:5;-1:-1:-1;2257:2:1;2242:18;;2229:32;2270:33;2229:32;2270:33;:::i;:::-;1930:456;;2322:7;;-1:-1:-1;;;2376:2:1;2361:18;;;;2348:32;;1930:456::o;2391:180::-;2450:6;2503:2;2491:9;2482:7;2478:23;2474:32;2471:52;;;2519:1;2516;2509:12;2471:52;-1:-1:-1;2542:23:1;;2391:180;-1:-1:-1;2391:180:1:o;2973:388::-;3041:6;3049;3102:2;3090:9;3081:7;3077:23;3073:32;3070:52;;;3118:1;3115;3108:12;3070:52;3157:9;3144:23;3176:31;3201:5;3176:31;:::i;:::-;3226:5;-1:-1:-1;3283:2:1;3268:18;;3255:32;3296:33;3255:32;3296:33;:::i;:::-;3348:7;3338:17;;;2973:388;;;;;:::o;3366:416::-;3431:6;3439;3492:2;3480:9;3471:7;3467:23;3463:32;3460:52;;;3508:1;3505;3498:12;3460:52;3547:9;3534:23;3566:31;3591:5;3566:31;:::i;:::-;3616:5;-1:-1:-1;3673:2:1;3658:18;;3645:32;3715:15;;3708:23;3696:36;;3686:64;;3746:1;3743;3736:12;3787:316;3864:6;3872;3880;3933:2;3921:9;3912:7;3908:23;3904:32;3901:52;;;3949:1;3946;3939:12;3901:52;-1:-1:-1;;3972:23:1;;;4042:2;4027:18;;4014:32;;-1:-1:-1;4093:2:1;4078:18;;;4065:32;;3787:316;-1:-1:-1;3787:316:1:o;4108:380::-;4187:1;4183:12;;;;4230;;;4251:61;;4305:4;4297:6;4293:17;4283:27;;4251:61;4358:2;4350:6;4347:14;4327:18;4324:38;4321:161;;4404:10;4399:3;4395:20;4392:1;4385:31;4439:4;4436:1;4429:15;4467:4;4464:1;4457:15;4321:161;;4108:380;;;:::o;4493:127::-;4554:10;4549:3;4545:20;4542:1;4535:31;4585:4;4582:1;4575:15;4609:4;4606:1;4599:15;4625:168;4665:7;4731:1;4727;4723:6;4719:14;4716:1;4713:21;4708:1;4701:9;4694:17;4690:45;4687:71;;;4738:18;;:::i;:::-;-1:-1:-1;4778:9:1;;4625:168::o;4798:217::-;4838:1;4864;4854:132;;4908:10;4903:3;4899:20;4896:1;4889:31;4943:4;4940:1;4933:15;4971:4;4968:1;4961:15;4854:132;-1:-1:-1;5000:9:1;;4798:217::o;5430:128::-;5470:3;5501:1;5497:6;5494:1;5491:13;5488:39;;;5507:18;;:::i;:::-;-1:-1:-1;5543:9:1;;5430:128::o;6806:397::-;7008:2;6990:21;;;7047:2;7027:18;;;7020:30;7086:34;7081:2;7066:18;;7059:62;-1:-1:-1;;;7152:2:1;7137:18;;7130:31;7193:3;7178:19;;6806:397::o;11768:251::-;11838:6;11891:2;11879:9;11870:7;11866:23;11862:32;11859:52;;;11907:1;11904;11897:12;11859:52;11939:9;11933:16;11958:31;11983:5;11958:31;:::i;12024:127::-;12085:10;12080:3;12076:20;12073:1;12066:31;12116:4;12113:1;12106:15;12140:4;12137:1;12130:15;12156:461;12209:3;12247:5;12241:12;12274:6;12269:3;12262:19;12300:4;12329:2;12324:3;12320:12;12313:19;;12366:2;12359:5;12355:14;12387:1;12397:195;12411:6;12408:1;12405:13;12397:195;;;12476:13;;-1:-1:-1;;;;;12472:39:1;12460:52;;12532:12;;;;12567:15;;;;12508:1;12426:9;12397:195;;;-1:-1:-1;12608:3:1;;12156:461;-1:-1:-1;;;;;12156:461:1:o;12622:510::-;12893:6;12882:9;12875:25;12936:3;12931:2;12920:9;12916:18;12909:31;12856:4;12957:57;13009:3;12998:9;12994:19;12986:6;12957:57;:::i;:::-;-1:-1:-1;;;;;13050:32:1;;;;13045:2;13030:18;;13023:60;-1:-1:-1;13114:2:1;13099:18;13092:34;12949:65;12622:510;-1:-1:-1;;12622:510:1:o;16997:125::-;17037:4;17065:1;17062;17059:8;17056:34;;;17070:18;;:::i;:::-;-1:-1:-1;17107:9:1;;16997:125::o;18705:582::-;19004:6;18993:9;18986:25;19047:6;19042:2;19031:9;19027:18;19020:34;19090:3;19085:2;19074:9;19070:18;19063:31;18967:4;19111:57;19163:3;19152:9;19148:19;19140:6;19111:57;:::i;:::-;-1:-1:-1;;;;;19204:32:1;;;;19199:2;19184:18;;19177:60;-1:-1:-1;19268:3:1;19253:19;19246:35;19103:65;18705:582;-1:-1:-1;;;18705:582:1:o;19904:306::-;19992:6;20000;20008;20061:2;20049:9;20040:7;20036:23;20032:32;20029:52;;;20077:1;20074;20067:12;20029:52;20106:9;20100:16;20090:26;;20156:2;20145:9;20141:18;20135:25;20125:35;;20200:2;20189:9;20185:18;20179:25;20169:35;;19904:306;;;;;:::o

Swarm Source

ipfs://cdf658f6651d3e6c785d460a072fee4c5c7c54c634710384df49a7290cbd5ae5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.