ETH Price: $3,330.82 (+2.18%)
Gas: 2 Gwei

Token

4to6 (4to6)
 

Overview

Max Total Supply

7,770,000 4to6

Holders

115

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
avoz.eth
Balance
0.990663572581556804 4to6

Value
$0.00
0xbd4703c1c9064bc6486834718646fc710a466c36
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:
FourToSix

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
*/

/**
 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
**/

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

// 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/fourToSix.sol

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 FourToSix 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("4to6", "4to6") {

        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"}]

6080604052600c805460ff60a01b1916600160a01b1790553480156200002457600080fd5b506040805180820182526004808252631a3a379b60e11b60208084018290528451808601909552918452908301529060036200006183826200081a565b5060046200007082826200081a565b5050506200008d620000876200043f60201b60201c565b62000443565b600b80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b81529051339291829163c45a0155916004808201926020929091908290030181865afa158015620000f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200011d9190620008e6565b6001600160a01b031663c9c6539630600b60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000180573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a69190620008e6565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021a9190620008e6565b600c80546001600160a01b0319166001600160a01b039290921691821790556200024690600162000495565b600c546200025f906001600160a01b03166001620004f8565b6a066d5c8b4447a70440000060646200027a8260016200092e565b62000286919062000950565b6008556064620002988260016200092e565b620002a4919062000950565b6009556064620002b68260016200092e565b620002c2919062000950565b600a556103e8620002d58260016200092e565b620002e1919062000950565b600d55606460108190556101f4600f81905560b1601181905591620003069162000973565b62000312919062000973565b600e55606460148190556102a56013819055610309601581905591620003389162000973565b62000344919062000973565b601255600680546001600160a01b031990811673d52534fcfa5c53b5eafa7224c0585395d6ee1b139081179092556007805490911673529c7796158ba9a9354692a1053d39b32313a5cd1790556200039e90600162000495565b600754620003b7906001600160a01b0316600162000495565b620003c430600162000495565b620003d183600162000564565b600654620003ea906001600160a01b0316600162000564565b60075462000403906001600160a01b0316600162000564565b6200041030600162000564565b6200041f61dead600162000564565b6200042b8382620005cd565b620004368362000694565b5050506200098e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601a6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b6001600160a01b0382166000908152601b60205260409020805460ff191682151517905562000528828262000495565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6200056e62000713565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006295760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200063d919062000973565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6200069e62000713565b6001600160a01b038116620007055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000620565b620007108162000443565b50565b6005546001600160a01b031633146200076f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000620565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007a157607f821691505b602082108103620007c257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200077157600081815260208120601f850160051c81016020861015620007f15750805b601f850160051c820191505b818110156200081257828155600101620007fd565b505050505050565b81516001600160401b0381111562000836576200083662000776565b6200084e816200084784546200078c565b84620007c8565b602080601f8311600181146200088657600084156200086d5750858301515b600019600386901b1c1916600185901b17855562000812565b600085815260208120601f198616915b82811015620008b75788860151825594840194600190910190840162000896565b5085821015620008d65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620008f957600080fd5b81516001600160a01b03811681146200091157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200094b576200094b62000918565b500290565b6000826200096e57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000989576200098962000918565b500190565b612b10806200099e6000396000f3fe6080604052600436106102e85760003560e01c806395d89b4111610190578063d257b34f116100dc578063e8ddfddf11610095578063f48c36f41161006f578063f48c36f414610876578063f5648a4f14610897578063f6374342146108ac578063fc155d1d146108c257600080fd5b8063e8ddfddf14610820578063f11a24d314610840578063f2fde38b1461085657600080fd5b8063d257b34f1461077e578063d729715f1461079e578063d85ba063146107b4578063dc3f0d0f146107ca578063dd62ed3e146107ea578063e2f456051461080a57600080fd5b8063aa4bde2811610149578063c024666811610123578063c024666814610708578063c17b5b8c14610728578063c18bc19514610748578063ccf288c61461076857600080fd5b8063aa4bde28146106a2578063aa4c3461146106b8578063b62496f5146106d857600080fd5b806395d89b41146106015780639a7a23d6146106165780639c2e4ac6146106365780639fccce321461064c578063a457c2d714610662578063a9059cbb1461068257600080fd5b8063452ed4f11161024f578063715018a6116102085780637e832ea9116101e25780637e832ea9146105975780638095d564146105ad57806388e765ff146105cd5780638da5cb5b146105e357600080fd5b8063715018a61461054d578063751039fc146105625780637571336a1461057757600080fd5b8063452ed4f1146104965780634a863f41146104b657806351f205e4146104d657806366d602ae146104eb5780636a486a8e1461050157806370a082311461051757600080fd5b80631f3fed8f116102a15780631f3fed8f146103ec57806323b872dd146104025780632be32b61146104225780632c8f86d214610444578063313ce5671461045a578063395093511461047657600080fd5b806306fdde03146102f4578063095ea7b31461031f57806310d5de531461034f5780631694505e1461037f57806318160ddd146103b75780631a8145bb146103d657600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b506103096108d5565b6040516103169190612717565b60405180910390f35b34801561032b57600080fd5b5061033f61033a366004612781565b610967565b6040519015158152602001610316565b34801561035b57600080fd5b5061033f61036a3660046127ad565b601a6020526000908152604090205460ff1681565b34801561038b57600080fd5b50600b5461039f906001600160a01b031681565b6040516001600160a01b039091168152602001610316565b3480156103c357600080fd5b506002545b604051908152602001610316565b3480156103e257600080fd5b506103c860185481565b3480156103f857600080fd5b506103c860165481565b34801561040e57600080fd5b5061033f61041d3660046127d1565b61097f565b34801561042e57600080fd5b5061044261043d366004612812565b6109a3565b005b34801561045057600080fd5b506103c8600f5481565b34801561046657600080fd5b5060405160128152602001610316565b34801561048257600080fd5b5061033f610491366004612781565b610a93565b3480156104a257600080fd5b50600c5461039f906001600160a01b031681565b3480156104c257600080fd5b506104426104d136600461282b565b610ab5565b3480156104e257600080fd5b50610442610b97565b3480156104f757600080fd5b506103c860095481565b34801561050d57600080fd5b506103c860125481565b34801561052357600080fd5b506103c86105323660046127ad565b6001600160a01b031660009081526020819052604090205490565b34801561055957600080fd5b50610442610c8f565b34801561056e57600080fd5b50610442610ca3565b34801561058357600080fd5b50610442610592366004612864565b610ce3565b3480156105a357600080fd5b506103c860135481565b3480156105b957600080fd5b506104426105c8366004612897565b610d89565b3480156105d957600080fd5b506103c860085481565b3480156105ef57600080fd5b506005546001600160a01b031661039f565b34801561060d57600080fd5b50610309610e31565b34801561062257600080fd5b50610442610631366004612864565b610e40565b34801561064257600080fd5b506103c860105481565b34801561065857600080fd5b506103c860175481565b34801561066e57600080fd5b5061033f61067d366004612781565b610f12565b34801561068e57600080fd5b5061033f61069d366004612781565b610f8d565b3480156106ae57600080fd5b506103c8600a5481565b3480156106c457600080fd5b5060075461039f906001600160a01b031681565b3480156106e457600080fd5b5061033f6106f33660046127ad565b601b6020526000908152604090205460ff1681565b34801561071457600080fd5b50610442610723366004612864565b610f9b565b34801561073457600080fd5b50610442610743366004612897565b611002565b34801561075457600080fd5b50610442610763366004612812565b6110a5565b34801561077457600080fd5b506103c861271081565b34801561078a57600080fd5b50610442610799366004612812565b61118c565b3480156107aa57600080fd5b506103c860145481565b3480156107c057600080fd5b506103c8600e5481565b3480156107d657600080fd5b506104426107e5366004612812565b6112b5565b3480156107f657600080fd5b506103c861080536600461282b565b61139a565b34801561081657600080fd5b506103c8600d5481565b34801561082c57600080fd5b5060065461039f906001600160a01b031681565b34801561084c57600080fd5b506103c860115481565b34801561086257600080fd5b506104426108713660046127ad565b6113c5565b34801561088257600080fd5b50600c5461033f90600160a01b900460ff1681565b3480156108a357600080fd5b5061044261143e565b3480156108b857600080fd5b506103c860155481565b6104426108d0366004612812565b611493565b6060600380546108e4906128c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610910906128c3565b801561095d5780601f106109325761010080835404028352916020019161095d565b820191906000526020600020905b81548152906001019060200180831161094057829003601f168201915b5050505050905090565b60003361097581858561174c565b5060019392505050565b60003361098d858285611870565b6109988585856118e4565b506001949350505050565b6109ab612024565b670de0b6b3a76400006103e86109c060025490565b6109cb906002612913565b6109d59190612932565b6109df9190612932565b811015610a455760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f776572206044820152687468616e20302e322560b81b60648201526084015b60405180910390fd5b610a5781670de0b6b3a7640000612913565b60088190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b600033610975818585610aa6838361139a565b610ab09190612954565b61174c565b610abd612024565b6001600160a01b038216610b135760405162461bcd60e51b815260206004820152601e60248201527f616464726573732063616e6e6f74206265207a65726f206164647265737300006044820152606401610a3c565b6001600160a01b038116610b695760405162461bcd60e51b815260206004820152601e60248201527f616464726573732063616e6e6f74206265207a65726f206164647265737300006044820152606401610a3c565b600680546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b610b9f612024565b600d54306000908152602081905260409020541015610c325760405162461bcd60e51b815260206004820152604360248201527f436f6e74726163742073686f756c642068617665206120746f6b656e20616d6f60448201527f756e74207468617420697320686967686572207468616e20726573747269637460648201526234b7b760e91b608482015260a401610a3c565b600c805460ff60a81b1916600160a81b179055610c4d61207e565b600c805460ff60a81b191690556040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a1565b610c97612024565b610ca1600061228b565b565b610cab612024565b600c805460ff60a01b191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b610ceb612024565b80610d5e57600c546001600160a01b0390811690831603610d5e5760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b6064820152608401610a3c565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b610d91612024565b60c8831115610db25760405162461bcd60e51b8152600401610a3c9061296c565b6010839055600f829055601181905580610dcc8385612954565b610dd69190612954565b600e8190556109c41015610e2c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610a3c565b505050565b6060600480546108e4906128c3565b610e48612024565b600c546001600160a01b0390811690831603610ecc5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a3c565b610ed682826122dd565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60003381610f20828661139a565b905083811015610f805760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a3c565b610998828686840361174c565b6000336109758185856118e4565b610fa3612024565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61100a612024565b60c883111561102b5760405162461bcd60e51b8152600401610a3c9061296c565b601483905560138290556015819055806110458385612954565b61104f9190612954565b60128190556109c41015610e2c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610a3c565b6110ad612024565b670de0b6b3a76400006103e86110c260025490565b6110cd906003612913565b6110d79190612932565b6110e19190612932565b8110156111455760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201526b6572207468616e20302e332560a01b6064820152608401610a3c565b61115781670de0b6b3a7640000612913565b600a8190556040519081527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610a88565b611194612024565b620186a06111a160025490565b6111ac906001612913565b6111b69190612932565b8110156112235760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a3c565b6103e861122f60025490565b61123a906001612913565b6112449190612932565b8111156112b05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171892903a37ba30b61039bab838363c9760611b6064820152608401610a3c565b600d55565b6112bd612024565b670de0b6b3a76400006103e86112d260025490565b6112dd906002612913565b6112e79190612932565b6112f19190612932565b8110156113535760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f776572604482015269207468616e20302e322560b01b6064820152608401610a3c565b61136581670de0b6b3a7640000612913565b60098190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610a88565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6113cd612024565b6001600160a01b0381166114325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3c565b61143b8161228b565b50565b611446612024565b604051600090339047908381818185875af1925050503d8060008114611488576040519150601f19603f3d011682016040523d82523d6000602084013e61148d565b606091505b50505050565b6005546001600160a01b03163314806114b657506007546001600160a01b031633145b6115325760405162461bcd60e51b815260206004820152604160248201527f4f6e6c7920746865206f776e6572206f722062657474696e6720636f6e74726160448201527f6374206d616e616765722063616e2063616c6c20746869732066756e6374696f6064820152603760f91b608482015260a401610a3c565b678ac7230489e800008111156115c05760405162461bcd60e51b815260206004820152604760248201527f4d6179206e6f7420627579206d6f7265207468616e2031302045544820696e2060448201527f612073696e676c652062757920746f207265647563652073616e64776963682060648201526661747461636b7360c81b608482015260a401610a3c565b6040805160028082526060820183526000926020830190803683375050600b54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa15801561162a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164e91906129ad565b81600081518110611661576116616129ca565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611695576116956129ca565b6001600160a01b039283166020918202929092010152600b5460405163b6f9de9560e01b815291169063b6f9de959084906116dd90600090869061dead904290600401612a24565b6000604051808303818588803b1580156116f657600080fd5b505af115801561170a573d6000803e3d6000fd5b50505050507fa017c1567cfcdd2d750a8c01e39fe2a846bcebc293c7d078477014d6848205688260405161174091815260200190565b60405180910390a15050565b6001600160a01b0383166117ae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3c565b6001600160a01b03821661180f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a3c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061187c848461139a565b9050600019811461148d57818110156118d75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a3c565b61148d848484840361174c565b6001600160a01b0383166119485760405162461bcd60e51b815260206004820152602560248201527f63616e6e6f74207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a3c565b6001600160a01b0382166119aa5760405162461bcd60e51b815260206004820152602360248201527f63616e6e6f74207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a3c565b600081116119fa5760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610a3c565b600c54600160a01b900460ff1615611d13576005546001600160a01b03848116911614801590611a3857506005546001600160a01b03838116911614155b8015611a4c57506001600160a01b03821615155b8015611a6357506001600160a01b03821661dead14155b8015611a8857506001600160a01b03831660009081526019602052604090205460ff16155b8015611aad57506001600160a01b03821660009081526019602052604090205460ff16155b15611d13576001600160a01b0383166000908152601b602052604090205460ff168015611af357506001600160a01b0382166000908152601a602052604090205460ff16155b15611bd457600854811115611b5b5760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526736b0bc10313abc9760c11b6064820152608401610a3c565b600a546001600160a01b038316600090815260208190526040902054611b819083612954565b1115611bcf5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420457863656564206d61782077616c6c657400000000000000006044820152606401610a3c565b611d13565b6001600160a01b0382166000908152601b602052604090205460ff168015611c1557506001600160a01b0383166000908152601a602052604090205460ff16155b15611c7f57600954811115611bcf5760405162461bcd60e51b815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152691036b0bc1039b2b6361760b11b6064820152608401610a3c565b6001600160a01b0382166000908152601a602052604090205460ff16611d1357600a546001600160a01b038316600090815260208190526040902054611cc59083612954565b1115611d135760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420457863656564206d617820616d6f756e7400000000000000006044820152606401610a3c565b30600090815260208190526040902054600d5481108015908190611d415750600c54600160a81b900460ff16155b8015611d6657506001600160a01b0385166000908152601b602052604090205460ff16155b8015611d8b57506001600160a01b03851660009081526019602052604090205460ff16155b8015611db057506001600160a01b03841660009081526019602052604090205460ff16155b15611dde57600c805460ff60a81b1916600160a81b179055611dd061207e565b600c805460ff60a81b191690555b6001600160a01b03851660009081526019602052604090205460019060ff1680611e2057506001600160a01b03851660009081526019602052604090205460ff165b15611e29575060005b60008115612010576001600160a01b0386166000908152601b602052604090205460ff168015611e5b57506000601254115b15611f145761271060125486611e719190612913565b611e7b9190612932565b905060125460145482611e8e9190612913565b611e989190612932565b60176000828254611ea99190612954565b9091555050601254601354611ebe9083612913565b611ec89190612932565b60166000828254611ed99190612954565b9091555050601254601554611eee9083612913565b611ef89190612932565b60186000828254611f099190612954565b90915550611ff29050565b6001600160a01b0387166000908152601b602052604090205460ff168015611f3e57506000600e54115b15611ff257612710600e5486611f549190612913565b611f5e9190612932565b9050600e5460105482611f719190612913565b611f7b9190612932565b60176000828254611f8c9190612954565b9091555050600e54600f54611fa19083612913565b611fab9190612932565b60166000828254611fbc9190612954565b9091555050600e54601154611fd19083612913565b611fdb9190612932565b60186000828254611fec9190612954565b90915550505b80156120035761200387308361230b565b61200d8186612a59565b94505b61201b87878761230b565b50505050505050565b6005546001600160a01b03163314610ca15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a3c565b30600090815260208190526040812054905060006018546016546017546120a59190612954565b6120af9190612954565b90508115806120bc575080155b156120c5575050565b600d546120d3906014612913565b8211156120eb57600d546120e8906014612913565b91505b600080600283601854866120ff9190612913565b6121099190612932565b6121139190612932565b90506121276121228286612a59565b6124af565b6018544790819060009061213d90600290612932565b6121479087612a59565b6017546121549085612913565b61215e9190612932565b9050600060026018546121719190612932565b61217b9088612a59565b6016546121889086612913565b6121929190612932565b905061219e8183612954565b6121a89084612a59565b600060188190556017819055601655925084158015906121c85750600083115b156121d7576121d78584612609565b6006546040516001600160a01b03909116908390600081818185875af1925050503d8060008114612224576040519150601f19603f3d011682016040523d82523d6000602084013e612229565b606091505b50506007546040519197506001600160a01b0316904790600081818185875af1925050503d8060008114612279576040519150601f19603f3d011682016040523d82523d6000602084013e61227e565b606091505b5050505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601b60205260409020805460ff1916821515179055610ed682826126bb565b6001600160a01b03831661236f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a3c565b6001600160a01b0382166123d15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a3c565b6001600160a01b038316600090815260208190526040902054818110156124495760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a3c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361148d565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124e4576124e46129ca565b6001600160a01b03928316602091820292909201810191909152600b54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561253d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256191906129ad565b81600181518110612574576125746129ca565b6001600160a01b039283166020918202929092010152600b5461259a913091168461174c565b600b5460405163791ac94760e01b81526001600160a01b039091169063791ac947906125d3908590600090869030904290600401612a70565b600060405180830381600087803b1580156125ed57600080fd5b505af1158015612601573d6000803e3d6000fd5b505050505050565b600b546126219030906001600160a01b03168461174c565b600b5460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af115801561268f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126b49190612aac565b5050505050565b6001600160a01b0382166000818152601a6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd67469101611740565b600060208083528351808285015260005b8181101561274457858101830151858201604001528201612728565b81811115612756576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461143b57600080fd5b6000806040838503121561279457600080fd5b823561279f8161276c565b946020939093013593505050565b6000602082840312156127bf57600080fd5b81356127ca8161276c565b9392505050565b6000806000606084860312156127e657600080fd5b83356127f18161276c565b925060208401356128018161276c565b929592945050506040919091013590565b60006020828403121561282457600080fd5b5035919050565b6000806040838503121561283e57600080fd5b82356128498161276c565b915060208301356128598161276c565b809150509250929050565b6000806040838503121561287757600080fd5b82356128828161276c565b91506020830135801515811461285957600080fd5b6000806000606084860312156128ac57600080fd5b505081359360208301359350604090920135919050565b600181811c908216806128d757607f821691505b6020821081036128f757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561292d5761292d6128fd565b500290565b60008261294f57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612967576129676128fd565b500190565b60208082526021908201527f7465616d206665652063616e6e6f74206265206c6172676572207468616e20326040820152602560f81b606082015260800190565b6000602082840312156129bf57600080fd5b81516127ca8161276c565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015612a195781516001600160a01b0316875295820195908201906001016129f4565b509495945050505050565b848152608060208201526000612a3d60808301866129e0565b6001600160a01b03949094166040830152506060015292915050565b600082821015612a6b57612a6b6128fd565b500390565b85815284602082015260a060408201526000612a8f60a08301866129e0565b6001600160a01b0394909416606083015250608001529392505050565b600080600060608486031215612ac157600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220ffa2987f279ba56ff2519efe2ff060eaf510f98ba1db1c3013e25f78314448eb64736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106102e85760003560e01c806395d89b4111610190578063d257b34f116100dc578063e8ddfddf11610095578063f48c36f41161006f578063f48c36f414610876578063f5648a4f14610897578063f6374342146108ac578063fc155d1d146108c257600080fd5b8063e8ddfddf14610820578063f11a24d314610840578063f2fde38b1461085657600080fd5b8063d257b34f1461077e578063d729715f1461079e578063d85ba063146107b4578063dc3f0d0f146107ca578063dd62ed3e146107ea578063e2f456051461080a57600080fd5b8063aa4bde2811610149578063c024666811610123578063c024666814610708578063c17b5b8c14610728578063c18bc19514610748578063ccf288c61461076857600080fd5b8063aa4bde28146106a2578063aa4c3461146106b8578063b62496f5146106d857600080fd5b806395d89b41146106015780639a7a23d6146106165780639c2e4ac6146106365780639fccce321461064c578063a457c2d714610662578063a9059cbb1461068257600080fd5b8063452ed4f11161024f578063715018a6116102085780637e832ea9116101e25780637e832ea9146105975780638095d564146105ad57806388e765ff146105cd5780638da5cb5b146105e357600080fd5b8063715018a61461054d578063751039fc146105625780637571336a1461057757600080fd5b8063452ed4f1146104965780634a863f41146104b657806351f205e4146104d657806366d602ae146104eb5780636a486a8e1461050157806370a082311461051757600080fd5b80631f3fed8f116102a15780631f3fed8f146103ec57806323b872dd146104025780632be32b61146104225780632c8f86d214610444578063313ce5671461045a578063395093511461047657600080fd5b806306fdde03146102f4578063095ea7b31461031f57806310d5de531461034f5780631694505e1461037f57806318160ddd146103b75780631a8145bb146103d657600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b506103096108d5565b6040516103169190612717565b60405180910390f35b34801561032b57600080fd5b5061033f61033a366004612781565b610967565b6040519015158152602001610316565b34801561035b57600080fd5b5061033f61036a3660046127ad565b601a6020526000908152604090205460ff1681565b34801561038b57600080fd5b50600b5461039f906001600160a01b031681565b6040516001600160a01b039091168152602001610316565b3480156103c357600080fd5b506002545b604051908152602001610316565b3480156103e257600080fd5b506103c860185481565b3480156103f857600080fd5b506103c860165481565b34801561040e57600080fd5b5061033f61041d3660046127d1565b61097f565b34801561042e57600080fd5b5061044261043d366004612812565b6109a3565b005b34801561045057600080fd5b506103c8600f5481565b34801561046657600080fd5b5060405160128152602001610316565b34801561048257600080fd5b5061033f610491366004612781565b610a93565b3480156104a257600080fd5b50600c5461039f906001600160a01b031681565b3480156104c257600080fd5b506104426104d136600461282b565b610ab5565b3480156104e257600080fd5b50610442610b97565b3480156104f757600080fd5b506103c860095481565b34801561050d57600080fd5b506103c860125481565b34801561052357600080fd5b506103c86105323660046127ad565b6001600160a01b031660009081526020819052604090205490565b34801561055957600080fd5b50610442610c8f565b34801561056e57600080fd5b50610442610ca3565b34801561058357600080fd5b50610442610592366004612864565b610ce3565b3480156105a357600080fd5b506103c860135481565b3480156105b957600080fd5b506104426105c8366004612897565b610d89565b3480156105d957600080fd5b506103c860085481565b3480156105ef57600080fd5b506005546001600160a01b031661039f565b34801561060d57600080fd5b50610309610e31565b34801561062257600080fd5b50610442610631366004612864565b610e40565b34801561064257600080fd5b506103c860105481565b34801561065857600080fd5b506103c860175481565b34801561066e57600080fd5b5061033f61067d366004612781565b610f12565b34801561068e57600080fd5b5061033f61069d366004612781565b610f8d565b3480156106ae57600080fd5b506103c8600a5481565b3480156106c457600080fd5b5060075461039f906001600160a01b031681565b3480156106e457600080fd5b5061033f6106f33660046127ad565b601b6020526000908152604090205460ff1681565b34801561071457600080fd5b50610442610723366004612864565b610f9b565b34801561073457600080fd5b50610442610743366004612897565b611002565b34801561075457600080fd5b50610442610763366004612812565b6110a5565b34801561077457600080fd5b506103c861271081565b34801561078a57600080fd5b50610442610799366004612812565b61118c565b3480156107aa57600080fd5b506103c860145481565b3480156107c057600080fd5b506103c8600e5481565b3480156107d657600080fd5b506104426107e5366004612812565b6112b5565b3480156107f657600080fd5b506103c861080536600461282b565b61139a565b34801561081657600080fd5b506103c8600d5481565b34801561082c57600080fd5b5060065461039f906001600160a01b031681565b34801561084c57600080fd5b506103c860115481565b34801561086257600080fd5b506104426108713660046127ad565b6113c5565b34801561088257600080fd5b50600c5461033f90600160a01b900460ff1681565b3480156108a357600080fd5b5061044261143e565b3480156108b857600080fd5b506103c860155481565b6104426108d0366004612812565b611493565b6060600380546108e4906128c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610910906128c3565b801561095d5780601f106109325761010080835404028352916020019161095d565b820191906000526020600020905b81548152906001019060200180831161094057829003601f168201915b5050505050905090565b60003361097581858561174c565b5060019392505050565b60003361098d858285611870565b6109988585856118e4565b506001949350505050565b6109ab612024565b670de0b6b3a76400006103e86109c060025490565b6109cb906002612913565b6109d59190612932565b6109df9190612932565b811015610a455760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f776572206044820152687468616e20302e322560b81b60648201526084015b60405180910390fd5b610a5781670de0b6b3a7640000612913565b60088190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b600033610975818585610aa6838361139a565b610ab09190612954565b61174c565b610abd612024565b6001600160a01b038216610b135760405162461bcd60e51b815260206004820152601e60248201527f616464726573732063616e6e6f74206265207a65726f206164647265737300006044820152606401610a3c565b6001600160a01b038116610b695760405162461bcd60e51b815260206004820152601e60248201527f616464726573732063616e6e6f74206265207a65726f206164647265737300006044820152606401610a3c565b600680546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b610b9f612024565b600d54306000908152602081905260409020541015610c325760405162461bcd60e51b815260206004820152604360248201527f436f6e74726163742073686f756c642068617665206120746f6b656e20616d6f60448201527f756e74207468617420697320686967686572207468616e20726573747269637460648201526234b7b760e91b608482015260a401610a3c565b600c805460ff60a81b1916600160a81b179055610c4d61207e565b600c805460ff60a81b191690556040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a1565b610c97612024565b610ca1600061228b565b565b610cab612024565b600c805460ff60a01b191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b610ceb612024565b80610d5e57600c546001600160a01b0390811690831603610d5e5760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b6064820152608401610a3c565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b610d91612024565b60c8831115610db25760405162461bcd60e51b8152600401610a3c9061296c565b6010839055600f829055601181905580610dcc8385612954565b610dd69190612954565b600e8190556109c41015610e2c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610a3c565b505050565b6060600480546108e4906128c3565b610e48612024565b600c546001600160a01b0390811690831603610ecc5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a3c565b610ed682826122dd565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60003381610f20828661139a565b905083811015610f805760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a3c565b610998828686840361174c565b6000336109758185856118e4565b610fa3612024565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61100a612024565b60c883111561102b5760405162461bcd60e51b8152600401610a3c9061296c565b601483905560138290556015819055806110458385612954565b61104f9190612954565b60128190556109c41015610e2c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610a3c565b6110ad612024565b670de0b6b3a76400006103e86110c260025490565b6110cd906003612913565b6110d79190612932565b6110e19190612932565b8110156111455760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201526b6572207468616e20302e332560a01b6064820152608401610a3c565b61115781670de0b6b3a7640000612913565b600a8190556040519081527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610a88565b611194612024565b620186a06111a160025490565b6111ac906001612913565b6111b69190612932565b8110156112235760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a3c565b6103e861122f60025490565b61123a906001612913565b6112449190612932565b8111156112b05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171892903a37ba30b61039bab838363c9760611b6064820152608401610a3c565b600d55565b6112bd612024565b670de0b6b3a76400006103e86112d260025490565b6112dd906002612913565b6112e79190612932565b6112f19190612932565b8110156113535760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f776572604482015269207468616e20302e322560b01b6064820152608401610a3c565b61136581670de0b6b3a7640000612913565b60098190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610a88565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6113cd612024565b6001600160a01b0381166114325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3c565b61143b8161228b565b50565b611446612024565b604051600090339047908381818185875af1925050503d8060008114611488576040519150601f19603f3d011682016040523d82523d6000602084013e61148d565b606091505b50505050565b6005546001600160a01b03163314806114b657506007546001600160a01b031633145b6115325760405162461bcd60e51b815260206004820152604160248201527f4f6e6c7920746865206f776e6572206f722062657474696e6720636f6e74726160448201527f6374206d616e616765722063616e2063616c6c20746869732066756e6374696f6064820152603760f91b608482015260a401610a3c565b678ac7230489e800008111156115c05760405162461bcd60e51b815260206004820152604760248201527f4d6179206e6f7420627579206d6f7265207468616e2031302045544820696e2060448201527f612073696e676c652062757920746f207265647563652073616e64776963682060648201526661747461636b7360c81b608482015260a401610a3c565b6040805160028082526060820183526000926020830190803683375050600b54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa15801561162a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164e91906129ad565b81600081518110611661576116616129ca565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611695576116956129ca565b6001600160a01b039283166020918202929092010152600b5460405163b6f9de9560e01b815291169063b6f9de959084906116dd90600090869061dead904290600401612a24565b6000604051808303818588803b1580156116f657600080fd5b505af115801561170a573d6000803e3d6000fd5b50505050507fa017c1567cfcdd2d750a8c01e39fe2a846bcebc293c7d078477014d6848205688260405161174091815260200190565b60405180910390a15050565b6001600160a01b0383166117ae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3c565b6001600160a01b03821661180f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a3c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061187c848461139a565b9050600019811461148d57818110156118d75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a3c565b61148d848484840361174c565b6001600160a01b0383166119485760405162461bcd60e51b815260206004820152602560248201527f63616e6e6f74207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a3c565b6001600160a01b0382166119aa5760405162461bcd60e51b815260206004820152602360248201527f63616e6e6f74207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a3c565b600081116119fa5760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610a3c565b600c54600160a01b900460ff1615611d13576005546001600160a01b03848116911614801590611a3857506005546001600160a01b03838116911614155b8015611a4c57506001600160a01b03821615155b8015611a6357506001600160a01b03821661dead14155b8015611a8857506001600160a01b03831660009081526019602052604090205460ff16155b8015611aad57506001600160a01b03821660009081526019602052604090205460ff16155b15611d13576001600160a01b0383166000908152601b602052604090205460ff168015611af357506001600160a01b0382166000908152601a602052604090205460ff16155b15611bd457600854811115611b5b5760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526736b0bc10313abc9760c11b6064820152608401610a3c565b600a546001600160a01b038316600090815260208190526040902054611b819083612954565b1115611bcf5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420457863656564206d61782077616c6c657400000000000000006044820152606401610a3c565b611d13565b6001600160a01b0382166000908152601b602052604090205460ff168015611c1557506001600160a01b0383166000908152601a602052604090205460ff16155b15611c7f57600954811115611bcf5760405162461bcd60e51b815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152691036b0bc1039b2b6361760b11b6064820152608401610a3c565b6001600160a01b0382166000908152601a602052604090205460ff16611d1357600a546001600160a01b038316600090815260208190526040902054611cc59083612954565b1115611d135760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420457863656564206d617820616d6f756e7400000000000000006044820152606401610a3c565b30600090815260208190526040902054600d5481108015908190611d415750600c54600160a81b900460ff16155b8015611d6657506001600160a01b0385166000908152601b602052604090205460ff16155b8015611d8b57506001600160a01b03851660009081526019602052604090205460ff16155b8015611db057506001600160a01b03841660009081526019602052604090205460ff16155b15611dde57600c805460ff60a81b1916600160a81b179055611dd061207e565b600c805460ff60a81b191690555b6001600160a01b03851660009081526019602052604090205460019060ff1680611e2057506001600160a01b03851660009081526019602052604090205460ff165b15611e29575060005b60008115612010576001600160a01b0386166000908152601b602052604090205460ff168015611e5b57506000601254115b15611f145761271060125486611e719190612913565b611e7b9190612932565b905060125460145482611e8e9190612913565b611e989190612932565b60176000828254611ea99190612954565b9091555050601254601354611ebe9083612913565b611ec89190612932565b60166000828254611ed99190612954565b9091555050601254601554611eee9083612913565b611ef89190612932565b60186000828254611f099190612954565b90915550611ff29050565b6001600160a01b0387166000908152601b602052604090205460ff168015611f3e57506000600e54115b15611ff257612710600e5486611f549190612913565b611f5e9190612932565b9050600e5460105482611f719190612913565b611f7b9190612932565b60176000828254611f8c9190612954565b9091555050600e54600f54611fa19083612913565b611fab9190612932565b60166000828254611fbc9190612954565b9091555050600e54601154611fd19083612913565b611fdb9190612932565b60186000828254611fec9190612954565b90915550505b80156120035761200387308361230b565b61200d8186612a59565b94505b61201b87878761230b565b50505050505050565b6005546001600160a01b03163314610ca15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a3c565b30600090815260208190526040812054905060006018546016546017546120a59190612954565b6120af9190612954565b90508115806120bc575080155b156120c5575050565b600d546120d3906014612913565b8211156120eb57600d546120e8906014612913565b91505b600080600283601854866120ff9190612913565b6121099190612932565b6121139190612932565b90506121276121228286612a59565b6124af565b6018544790819060009061213d90600290612932565b6121479087612a59565b6017546121549085612913565b61215e9190612932565b9050600060026018546121719190612932565b61217b9088612a59565b6016546121889086612913565b6121929190612932565b905061219e8183612954565b6121a89084612a59565b600060188190556017819055601655925084158015906121c85750600083115b156121d7576121d78584612609565b6006546040516001600160a01b03909116908390600081818185875af1925050503d8060008114612224576040519150601f19603f3d011682016040523d82523d6000602084013e612229565b606091505b50506007546040519197506001600160a01b0316904790600081818185875af1925050503d8060008114612279576040519150601f19603f3d011682016040523d82523d6000602084013e61227e565b606091505b5050505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601b60205260409020805460ff1916821515179055610ed682826126bb565b6001600160a01b03831661236f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a3c565b6001600160a01b0382166123d15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a3c565b6001600160a01b038316600090815260208190526040902054818110156124495760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a3c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361148d565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124e4576124e46129ca565b6001600160a01b03928316602091820292909201810191909152600b54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561253d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256191906129ad565b81600181518110612574576125746129ca565b6001600160a01b039283166020918202929092010152600b5461259a913091168461174c565b600b5460405163791ac94760e01b81526001600160a01b039091169063791ac947906125d3908590600090869030904290600401612a70565b600060405180830381600087803b1580156125ed57600080fd5b505af1158015612601573d6000803e3d6000fd5b505050505050565b600b546126219030906001600160a01b03168461174c565b600b5460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af115801561268f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126b49190612aac565b5050505050565b6001600160a01b0382166000818152601a6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd67469101611740565b600060208083528351808285015260005b8181101561274457858101830151858201604001528201612728565b81811115612756576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461143b57600080fd5b6000806040838503121561279457600080fd5b823561279f8161276c565b946020939093013593505050565b6000602082840312156127bf57600080fd5b81356127ca8161276c565b9392505050565b6000806000606084860312156127e657600080fd5b83356127f18161276c565b925060208401356128018161276c565b929592945050506040919091013590565b60006020828403121561282457600080fd5b5035919050565b6000806040838503121561283e57600080fd5b82356128498161276c565b915060208301356128598161276c565b809150509250929050565b6000806040838503121561287757600080fd5b82356128828161276c565b91506020830135801515811461285957600080fd5b6000806000606084860312156128ac57600080fd5b505081359360208301359350604090920135919050565b600181811c908216806128d757607f821691505b6020821081036128f757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561292d5761292d6128fd565b500290565b60008261294f57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612967576129676128fd565b500190565b60208082526021908201527f7465616d206665652063616e6e6f74206265206c6172676572207468616e20326040820152602560f81b606082015260800190565b6000602082840312156129bf57600080fd5b81516127ca8161276c565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015612a195781516001600160a01b0316875295820195908201906001016129f4565b509495945050505050565b848152608060208201526000612a3d60808301866129e0565b6001600160a01b03949094166040830152506060015292915050565b600082821015612a6b57612a6b6128fd565b500390565b85815284602082015260a060408201526000612a8f60a08301866129e0565b6001600160a01b0394909416606083015250608001529392505050565b600080600060608486031215612ac157600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220ffa2987f279ba56ff2519efe2ff060eaf510f98ba1db1c3013e25f78314448eb64736f6c634300080f0033

Deployed Bytecode Sourcemap

21742:14423:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9640:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12000:201;;;;;;;;;;-1:-1:-1;12000:201:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;12000:201:0;1072:187:1;22714:64:0;;;;;;;;;;-1:-1:-1;22714:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21966:39;;;;;;;;;;-1:-1:-1;21966:39:0;;;;-1:-1:-1;;;;;21966:39:0;;;;;;-1:-1:-1;;;;;1704:32:1;;;1686:51;;1674:2;1659:18;21966:39:0;1516:227:1;10769:108:0;;;;;;;;;;-1:-1:-1;10857:12:0;;10769:108;;;1894:25:1;;;1882:2;1867:18;10769:108:0;1748:177:1;22612:33:0;;;;;;;;;;;;;;;;22538;;;;;;;;;;;;;;;;12781:261;;;;;;;;;;-1:-1:-1;12781:261:0;;;;;:::i;:::-;;:::i;33296:269::-;;;;;;;;;;-1:-1:-1;33296:269:0;;;;;:::i;:::-;;:::i;:::-;;22296:24;;;;;;;;;;;;;;;;10611:93;;;;;;;;;;-1:-1:-1;10611:93:0;;10694:2;2718:36:1;;2706:2;2691:18;10611:93:0;2576:184:1;13451:238:0;;;;;;;;;;-1:-1:-1;13451:238:0;;;;;:::i;:::-;;:::i;22014:21::-;;;;;;;;;;-1:-1:-1;22014:21:0;;;;-1:-1:-1;;;;;22014:21:0;;;32204:372;;;;;;;;;;-1:-1:-1;32204:372:0;;;;;:::i;:::-;;:::i;31480:315::-;;;;;;;;;;;;;:::i;21894:28::-;;;;;;;;;;;;;;;;22398;;;;;;;;;;;;;;;;10940:127;;;;;;;;;;-1:-1:-1;10940:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11041:18:0;11014:7;11041:18;;;;;;;;;;;;10940:127;3081:103;;;;;;;;;;;;;:::i;35318:110::-;;;;;;;;;;;;;:::i;30358:260::-;;;;;;;;;;-1:-1:-1;30358:260:0;;;;;:::i;:::-;;:::i;22433:25::-;;;;;;;;;;;;;;;;33855:423;;;;;;;;;;-1:-1:-1;33855:423:0;;;;;:::i;:::-;;:::i;21860:27::-;;;;;;;;;;;;;;;;2440:87;;;;;;;;;;-1:-1:-1;2513:6:0;;-1:-1:-1;;;;;2513:6:0;2440:87;;9859:104;;;;;;;;;;;;;:::i;34726:295::-;;;;;;;;;;-1:-1:-1;34726:295:0;;;;;:::i;:::-;;:::i;22327:25::-;;;;;;;;;;;;;;;;22578:27;;;;;;;;;;;;;;;;14192:436;;;;;;;;;;-1:-1:-1;14192:436:0;;;;;:::i;:::-;;:::i;11273:193::-;;;;;;;;;;-1:-1:-1;11273:193:0;;;;;:::i;:::-;;:::i;21929:30::-;;;;;;;;;;;;;;;;21821;;;;;;;;;;-1:-1:-1;21821:30:0;;;;-1:-1:-1;;;;;21821:30:0;;;22934:58;;;;;;;;;;-1:-1:-1;22934:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32014:182;;;;;;;;;;-1:-1:-1;32014:182:0;;;;;:::i;:::-;;:::i;34286:432::-;;;;;;;;;;-1:-1:-1;34286:432:0;;;;;:::i;:::-;;:::i;33004:284::-;;;;;;;;;;-1:-1:-1;33004:284:0;;;;;:::i;:::-;;:::i;22149:44::-;;;;;;;;;;;;22188:5;22149:44;;32646:350;;;;;;;;;;-1:-1:-1;32646:350:0;;;;;:::i;:::-;;:::i;22465:26::-;;;;;;;;;;;;;;;;22262:27;;;;;;;;;;;;;;;;33573:274;;;;;;;;;;-1:-1:-1;33573:274:0;;;;;:::i;:::-;;:::i;11529:151::-;;;;;;;;;;-1:-1:-1;11529:151:0;;;;;:::i;:::-;;:::i;22107:33::-;;;;;;;;;;;;;;;;21786:28;;;;;;;;;;-1:-1:-1;21786:28:0;;;;-1:-1:-1;;;;;21786:28:0;;;22359:30;;;;;;;;;;;;;;;;3339:201;;;;;;;;;;-1:-1:-1;3339:201:0;;;;;:::i;:::-;;:::i;22044:28::-;;;;;;;;;;-1:-1:-1;22044:28:0;;;;-1:-1:-1;;;22044:28:0;;;;;;31846:160;;;;;;;;;;;;;:::i;22498:31::-;;;;;;;;;;;;;;;;35531:629;;;;;;:::i;:::-;;:::i;9640:100::-;9694:13;9727:5;9720:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9640:100;:::o;12000:201::-;12083:4;1067:10;12139:32;1067:10;12155:7;12164:6;12139:8;:32::i;:::-;-1:-1:-1;12189:4:0;;12000:201;-1:-1:-1;;;12000:201:0:o;12781:261::-;12878:4;1067:10;12936:38;12952:4;1067:10;12967:6;12936:15;:38::i;:::-;12985:27;12995:4;13001:2;13005:6;12985:9;:27::i;:::-;-1:-1:-1;13030:4:0;;12781:261;-1:-1:-1;;;;12781:261:0:o;33296:269::-;2326:13;:11;:13::i;:::-;33415:4:::1;33409;33389:13;10857:12:::0;;;10769:108;33389:13:::1;:17;::::0;33405:1:::1;33389:17;:::i;:::-;:24;;;;:::i;:::-;33388:31;;;;:::i;:::-;33378:6;:41;;33370:95;;;::::0;-1:-1:-1;;;33370:95:0;;5222:2:1;33370: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;;33370:95:0::1;;;;;;;;;33491:17;:6:::0;33501::::1;33491:17;:::i;:::-;33476:12;:32:::0;;;33524:33:::1;::::0;1894:25:1;;;33524:33:0::1;::::0;1882:2:1;1867:18;33524:33:0::1;;;;;;;;33296:269:::0;:::o;13451:238::-;13539:4;1067:10;13595:64;1067:10;13611:7;13648:10;13620:25;1067:10;13611:7;13620:9;:25::i;:::-;:38;;;;:::i;:::-;13595:8;:64::i;32204:372::-;2326:13;:11;:13::i;:::-;-1:-1:-1;;;;;32319:26:0;::::1;32311:68;;;::::0;-1:-1:-1;;;32311:68:0;;5765:2:1;32311:68:0::1;::::0;::::1;5747:21:1::0;5804:2;5784:18;;;5777:30;5843:32;5823:18;;;5816:60;5893:18;;32311:68:0::1;5563:354:1::0;32311:68:0::1;-1:-1:-1::0;;;;;32398:30:0;::::1;32390:72;;;::::0;-1:-1:-1;;;32390:72:0;;5765:2:1;32390:72:0::1;::::0;::::1;5747:21:1::0;5804:2;5784:18;;;5777:30;5843:32;5823:18;;;5816:60;5893:18;;32390:72:0::1;5563:354:1::0;32390:72:0::1;32475:13;:37:::0;;-1:-1:-1;;;;;32475:37:0;;::::1;-1:-1:-1::0;;;;;;32475:37:0;;::::1;;::::0;;;32523:15:::1;:43:::0;;;;;::::1;::::0;::::1;;::::0;;32204:372::o;31480:315::-;2326:13;:11;:13::i;:::-;31571:18:::1;::::0;31561:4:::1;11014:7:::0;11041:18;;;;;;;;;;;31543:46:::1;;31535:126;;;::::0;-1:-1:-1;;;31535:126:0;;6124:2:1;31535: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;;31535:126:0::1;5922:471:1::0;31535:126:0::1;31672:8;:15:::0;;-1:-1:-1;;;;31672:15:0::1;-1:-1:-1::0;;;31672:15:0::1;::::0;;31698:10:::1;:8;:10::i;:::-;31719:8;:16:::0;;-1:-1:-1;;;;31719:16:0::1;::::0;;31751:36:::1;::::0;31771:15:::1;1894:25:1::0;;31751:36:0::1;::::0;1882:2:1;1867:18;31751:36:0::1;;;;;;;31480:315::o:0;3081:103::-;2326:13;:11;:13::i;:::-;3146:30:::1;3173:1;3146:18;:30::i;:::-;3081:103::o:0;35318:110::-;2326:13;:11;:13::i;:::-;35372:9:::1;:17:::0;;-1:-1:-1;;;;35372:17:0::1;::::0;;35405:15:::1;::::0;::::1;::::0;35384:5:::1;::::0;35405:15:::1;35318:110::o:0;30358:260::-;2326:13;:11;:13::i;:::-;30454:4:::1;30450:104;;30492:6;::::0;-1:-1:-1;;;;;30492:6:0;;::::1;30482:16:::0;;::::1;::::0;30474:68:::1;;;::::0;-1:-1:-1;;;30474:68:0;;6600:2:1;30474: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;;30474:68:0::1;6398:403:1::0;30474:68:0::1;-1:-1:-1::0;;;;;30564:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;30564:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30358:260::o;33855:423::-;2326:13;:11;:13::i;:::-;33986:3:::1;33974:8;:15;;33966:61;;;;-1:-1:-1::0;;;33966:61:0::1;;;;;;;:::i;:::-;34038:10;:21:::0;;;34070:9:::1;:19:::0;;;34100:15:::1;:31:::0;;;34118:13;34157:22:::1;34082:7:::0;34051:8;34157:22:::1;:::i;:::-;:40;;;;:::i;:::-;34142:12;:55:::0;;;34232:4:::1;-1:-1:-1::0;34216:20:0::1;34208:62;;;::::0;-1:-1:-1;;;34208:62:0;;7410:2:1;34208:62:0::1;::::0;::::1;7392:21:1::0;7449:2;7429:18;;;7422:30;7488:31;7468:18;;;7461:59;7537:18;;34208:62:0::1;7208:353:1::0;34208:62:0::1;33855:423:::0;;;:::o;9859:104::-;9915:13;9948:7;9941:14;;;;;:::i;34726:295::-;2326:13;:11;:13::i;:::-;34835:6:::1;::::0;-1:-1:-1;;;;;34835:6:0;;::::1;34827:14:::0;;::::1;::::0;34819:84:::1;;;::::0;-1:-1:-1;;;34819:84:0;;7768:2:1;34819: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;;34819:84:0::1;7566:421:1::0;34819:84:0::1;34916:41;34945:4;34951:5;34916:28;:41::i;:::-;34973:40;::::0;;::::1;;::::0;-1:-1:-1;;;;;34973:40:0;::::1;::::0;::::1;::::0;;;::::1;34726:295:::0;;:::o;14192:436::-;14285:4;1067:10;14285:4;14368:25;1067:10;14385:7;14368:9;:25::i;:::-;14341:52;;14432:15;14412:16;:35;;14404:85;;;;-1:-1:-1;;;14404:85:0;;8194:2:1;14404: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;;14404:85:0;7992:401:1;14404:85:0;14525:60;14534:5;14541:7;14569:15;14550:16;:34;14525:8;:60::i;11273:193::-;11352:4;1067:10;11408:28;1067:10;11425:2;11429:6;11408:9;:28::i;32014:182::-;2326:13;:11;:13::i;:::-;-1:-1:-1;;;;;32099:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;32099:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32154:34;;1212:41:1;;;32154:34:0::1;::::0;1185:18:1;32154:34:0::1;;;;;;;32014:182:::0;;:::o;34286:432::-;2326:13;:11;:13::i;:::-;34418:3:::1;34406:8;:15;;34398:61;;;;-1:-1:-1::0;;;34398:61:0::1;;;;;;;:::i;:::-;34470:11;:22:::0;;;34503:10:::1;:20:::0;;;34534:16:::1;:32:::0;;;34553:13;34593:24:::1;34516:7:::0;34484:8;34593:24:::1;:::i;:::-;:43;;;;:::i;:::-;34577:13;:59:::0;;;34672:4:::1;-1:-1:-1::0;34655:21:0::1;34647:63;;;::::0;-1:-1:-1;;;34647:63:0;;7410:2:1;34647:63:0::1;::::0;::::1;7392:21:1::0;7449:2;7429:18;;;7422:30;7488:31;7468:18;;;7461:59;7537:18;;34647:63:0::1;7208:353:1::0;33004:284:0;2326:13;:11;:13::i;:::-;33126:4:::1;33120;33100:13;10857:12:::0;;;10769:108;33100:13:::1;:17;::::0;33116:1:::1;33100:17;:::i;:::-;:24;;;;:::i;:::-;33099:31;;;;:::i;:::-;33089:6;:41;;33081:98;;;::::0;-1:-1:-1;;;33081:98:0;;8600:2:1;33081: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;;33081:98:0::1;8398:408:1::0;33081:98:0::1;33208:17;:6:::0;33218::::1;33208:17;:::i;:::-;33190:15;:35:::0;;;33241:39:::1;::::0;1894:25:1;;;33241:39:0::1;::::0;1882:2:1;1867:18;33241:39:0::1;1748:177:1::0;32646:350:0;2326:13;:11;:13::i;:::-;32770:6:::1;32750:13;10857:12:::0;;;10769:108;32750:13:::1;:17;::::0;32766:1:::1;32750:17;:::i;:::-;:26;;;;:::i;:::-;32737:9;:39;;32729:105;;;::::0;-1:-1:-1;;;32729:105:0;;9013:2:1;32729: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;;32729:105:0::1;8811:417:1::0;32729:105:0::1;32886:4;32866:13;10857:12:::0;;;10769:108;32866:13:::1;:17;::::0;32882:1:::1;32866:17;:::i;:::-;:24;;;;:::i;:::-;32853:9;:37;;32845:102;;;::::0;-1:-1:-1;;;32845:102:0;;9435:2:1;32845: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;;32845:102:0::1;9233:416:1::0;32845:102:0::1;32958:18;:30:::0;32646:350::o;33573:274::-;2326:13;:11;:13::i;:::-;33693:4:::1;33687;33667:13;10857:12:::0;;;10769:108;33667:13:::1;:17;::::0;33683:1:::1;33667:17;:::i;:::-;:24;;;;:::i;:::-;33666:31;;;;:::i;:::-;33656:6;:41;;33648:96;;;::::0;-1:-1:-1;;;33648:96:0;;9856:2:1;33648: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;;33648:96:0::1;9654:406:1::0;33648:96:0::1;33771:17;:6:::0;33781::::1;33771:17;:::i;:::-;33755:13;:33:::0;;;33804:35:::1;::::0;1894:25:1;;;33804:35:0::1;::::0;1882:2:1;1867:18;33804:35:0::1;1748:177:1::0;11529:151:0;-1:-1:-1;;;;;11645:18:0;;;11618:7;11645:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11529:151::o;3339:201::-;2326:13;:11;:13::i;:::-;-1:-1:-1;;;;;3428:22:0;::::1;3420:73;;;::::0;-1:-1:-1;;;3420:73:0;;10267:2:1;3420: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;;3420:73:0::1;10065:402:1::0;3420:73:0::1;3504:28;3523:8;3504:18;:28::i;:::-;3339:201:::0;:::o;31846:160::-;2326:13;:11;:13::i;:::-;31940:58:::1;::::0;31904:12:::1;::::0;31948:10:::1;::::0;31972:21:::1;::::0;31904:12;31940:58;31904:12;31940:58;31972:21;31948:10;31940:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;31846:160:0:o;35531:629::-;2513:6;;-1:-1:-1;;;;;2513:6:0;23576:10;:21;;:54;;-1:-1:-1;23615:15:0;;-1:-1:-1;;;;;23615:15:0;23601:10;:29;23576:54;23568:132;;;;-1:-1:-1;;;23568:132:0;;10884:2:1;23568: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;;23568:132:0;10682:469:1;23568:132:0;35653:8:::1;35638:11;:23;;35630:107;;;::::0;-1:-1:-1;;;35630:107:0;;11358:2:1;35630: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;;35630:107:0::1;11156:475:1::0;35630:107:0::1;35774:16;::::0;;35788:1:::1;35774:16:::0;;;;;::::1;::::0;;35750:21:::1;::::0;35774:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;35811:15:0::1;::::0;:22:::1;::::0;;-1:-1:-1;;;35811:22:0;;;;35750:40;;-1:-1:-1;;;;;;35811:15:0;;::::1;::::0;:20:::1;::::0;-1:-1:-1;35811:22:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35801:4;35806:1;35801:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;35801:32:0::1;;;-1:-1:-1::0;;;;;35801:32:0::1;;;::::0;::::1;35862:4;35844;35849:1;35844:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35844:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;35880:15:::1;::::0;:225:::1;::::0;-1:-1:-1;;;35880:225:0;;:15;::::1;::::0;:66:::1;::::0;35954:11;;35880:225:::1;::::0;:15:::1;::::0;36030:4;;36057:6:::1;::::0;36079:15:::1;::::0;35880:225:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;36123:29;36140:11;36123:29;;;;1894:25:1::0;;1882:2;1867:18;;1748:177;36123:29:0::1;;;;;;;;35619:541;35531:629:::0;:::o;18185:346::-;-1:-1:-1;;;;;18287:19:0;;18279:68;;;;-1:-1:-1;;;18279:68:0;;13339:2:1;18279: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;;18279:68:0;13137:400:1;18279:68:0;-1:-1:-1;;;;;18366:21:0;;18358:68;;;;-1:-1:-1;;;18358:68:0;;13744:2:1;18358: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;;18358:68:0;13542:398:1;18358:68:0;-1:-1:-1;;;;;18439:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18491:32;;1894:25:1;;;18491:32:0;;1867:18:1;18491:32:0;;;;;;;18185:346;;;:::o;18822:419::-;18923:24;18950:25;18960:5;18967:7;18950:9;:25::i;:::-;18923:52;;-1:-1:-1;;18990:16:0;:37;18986:248;;19072:6;19052:16;:26;;19044:68;;;;-1:-1:-1;;;19044:68:0;;14147:2:1;19044:68:0;;;14129:21:1;14186:2;14166:18;;;14159:30;14225:31;14205:18;;;14198:59;14274:18;;19044:68:0;13945:353:1;19044:68:0;19156:51;19165:5;19172:7;19200:6;19181:16;:25;19156:8;:51::i;25505:2875::-;-1:-1:-1;;;;;25603:18:0;;25595:68;;;;-1:-1:-1;;;25595:68:0;;14505:2:1;25595: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;;25595:68:0;14303:401:1;25595:68:0;-1:-1:-1;;;;;25682:16:0;;25674:64;;;;-1:-1:-1;;;25674:64:0;;14911:2:1;25674: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;;25674:64:0;14709:399:1;25674:64:0;25766:1;25757:6;:10;25749:52;;;;-1:-1:-1;;;25749:52:0;;15315:2:1;25749:52:0;;;15297:21:1;15354:2;15334:18;;;15327:30;15393:31;15373:18;;;15366:59;15442:18;;25749:52:0;15113:353:1;25749:52:0;25865:9;;-1:-1:-1;;;25865:9:0;;;;25862:1009;;;2513:6;;-1:-1:-1;;;;;25893:15:0;;;2513:6;;25893:15;;;;:32;;-1:-1:-1;2513:6:0;;-1:-1:-1;;;;;25912:13:0;;;2513:6;;25912:13;;25893:32;:52;;;;-1:-1:-1;;;;;;25929:16:0;;;;25893:52;:77;;;;-1:-1:-1;;;;;;25949:21:0;;25963:6;25949:21;;25893:77;:107;;;;-1:-1:-1;;;;;;25975:25:0;;;;;;:19;:25;;;;;;;;25974:26;25893:107;:135;;;;-1:-1:-1;;;;;;26005:23:0;;;;;;:19;:23;;;;;;;;26004:24;25893:135;25890:970;;;-1:-1:-1;;;;;26082:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;26118:35:0;;;;;;:31;:35;;;;;;;;26117:36;26082:71;26078:767;;;26196:12;;26186:6;:22;;26178:75;;;;-1:-1:-1;;;26178:75:0;;15673:2:1;26178: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;;26178:75:0;15471:404:1;26178:75:0;26310:15;;-1:-1:-1;;;;;11041:18:0;;11014:7;11041:18;;;;;;;;;;;26284:22;;:6;:22;:::i;:::-;:41;;26276:78;;;;-1:-1:-1;;;26276:78:0;;16082:2:1;26276:78:0;;;16064:21:1;16121:2;16101:18;;;16094:30;16160:26;16140:18;;;16133:54;16204:18;;26276:78:0;15880:348:1;26276:78:0;26078:767;;;-1:-1:-1;;;;;26432:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;26466:37:0;;;;;;:31;:37;;;;;;;;26465:38;26432:71;26428:417;;;26546:13;;26536:6;:23;;26528:78;;;;-1:-1:-1;;;26528:78:0;;16435:2:1;26528: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;;26528:78:0;16233:406:1;26428:417:0;-1:-1:-1;;;;;26688:35:0;;;;;;:31;:35;;;;;;;;26684:161;;26781:15;;-1:-1:-1;;;;;11041:18:0;;11014:7;11041:18;;;;;;;;;;;26755:22;;:6;:22;:::i;:::-;:41;;26747:78;;;;-1:-1:-1;;;26747:78:0;;16846:2:1;26747:78:0;;;16828:21:1;16885:2;16865:18;;;16858:30;16924:26;16904:18;;;16897:54;16968:18;;26747:78:0;16644:348:1;26747:78:0;26932:4;26883:28;11041:18;;;;;;;;;;;26990;;26966:42;;;;;;;27024:20;;-1:-1:-1;27036:8:0;;-1:-1:-1;;;27036:8:0;;;;27035:9;27024:20;:56;;;;-1:-1:-1;;;;;;27049:31:0;;;;;;:25;:31;;;;;;;;27048:32;27024:56;:86;;;;-1:-1:-1;;;;;;27085:25:0;;;;;;:19;:25;;;;;;;;27084:26;27024:86;:114;;;;-1:-1:-1;;;;;;27115:23:0;;;;;;:19;:23;;;;;;;;27114:24;27024:114;27021:217;;;27155:8;:15;;-1:-1:-1;;;;27155:15:0;-1:-1:-1;;;27155:15:0;;;27185:10;:8;:10::i;:::-;27210:8;:16;;-1:-1:-1;;;;27210:16:0;;;27021:217;-1:-1:-1;;;;;27285:25:0;;27250:12;27285:25;;;:19;:25;;;;;;27265:4;;27285:25;;;:52;;-1:-1:-1;;;;;;27314:23:0;;;;;;:19;:23;;;;;;;;27285:52;27282:98;;;-1:-1:-1;27363:5:0;27282:98;27392:12;27424:7;27421:904;;;-1:-1:-1;;;;;27451:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;27500:1;27484:13;;:17;27451:50;27447:727;;;22188:5;27537:13;;27528:6;:22;;;;:::i;:::-;:37;;;;:::i;:::-;27521:44;;27621:13;;27607:11;;27600:4;:18;;;;:::i;:::-;:34;;;;:::i;:::-;27584:12;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;27695:13:0;;27682:10;;27675:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;27653:18;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;27775:13:0;;27756:16;;27749:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;27727:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;27447:727:0;;-1:-1:-1;27447:727:0;;-1:-1:-1;;;;;27826:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;27876:1;27861:12;;:16;27826:51;27823:351;;;22188:5;27914:12;;27905:6;:21;;;;:::i;:::-;:36;;;;:::i;:::-;27898:43;;27996:12;;27983:10;;27976:4;:17;;;;:::i;:::-;:32;;;;:::i;:::-;27960:12;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;28068:12:0;;28056:9;;28049:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;28027:18;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;28146:12:0;;28128:15;;28121:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;28099:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;27823:351:0;28193:8;;28190:91;;28223:42;28239:4;28253;28260;28223:15;:42::i;:::-;28297:14;28307:4;28297:14;;:::i;:::-;;;27421:904;28337:33;28353:4;28359:2;28363:6;28337:15;:33::i;:::-;25584:2796;;;;25505:2875;;;:::o;2605:132::-;2513:6;;-1:-1:-1;;;;;2513:6:0;1067:10;2669:23;2661:68;;;;-1:-1:-1;;;2661:68:0;;17329:2:1;2661:68:0;;;17311:21:1;;;17348:18;;;17341:30;17407:34;17387:18;;;17380:62;17459:18;;2661:68:0;17127:356:1;28388:1396:0;28473:4;28429:23;11041:18;;;;;;;;;;;28429:50;;28490:25;28554:18;;28533;;28518:12;;:33;;;;:::i;:::-;:54;;;;:::i;:::-;28490:82;-1:-1:-1;28588:20:0;;;:46;;-1:-1:-1;28612:22:0;;28588:46;28585:59;;;28636:7;;28388:1396::o;28585:59::-;28677:18;;:23;;28698:2;28677:23;:::i;:::-;28659:15;:41;28656:113;;;28734:18;;:23;;28755:2;28734:23;:::i;:::-;28716:41;;28656:113;28781:12;28855:23;28940:1;28920:17;28899:18;;28881:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;28855:86;-1:-1:-1;28954:51:0;28971:33;28855:86;28971:15;:33;:::i;:::-;28954:16;:51::i;:::-;29190:18;;29039:21;;;;29018:18;;29190:20;;29209:1;;29190:20;:::i;:::-;29169:42;;:17;:42;:::i;:::-;29153:12;;29140:25;;:10;:25;:::i;:::-;:72;;;;:::i;:::-;29120:92;;29223:23;29324:1;29305:18;;:20;;;;:::i;:::-;29284:42;;:17;:42;:::i;:::-;29262:18;;29249:31;;:10;:31;:::i;:::-;:78;;;;:::i;:::-;29223:104;-1:-1:-1;29359:27:0;29223:104;29359:9;:27;:::i;:::-;29340:46;;;;:::i;:::-;29420:1;29399:18;:22;;;29432:12;:16;;;29459:18;:22;29340:46;-1:-1:-1;29497:19:0;;;;;:42;;;29538:1;29520:15;:19;29497:42;29494:119;;;29555:46;29568:15;29585;29555:12;:46::i;:::-;29646:13;;29638:49;;-1:-1:-1;;;;;29646:13:0;;;;29673:9;;29638:49;;;;29673:9;29646:13;29638:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;29719:15:0;;29711:63;;29625:62;;-1:-1:-1;;;;;;29719:15:0;;29748:21;;29711:63;;;;29748:21;29719:15;29711:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;28388:1396:0:o;3700:191::-;3793:6;;;-1:-1:-1;;;;;3810:17:0;;;-1:-1:-1;;;;;;3810:17:0;;;;;;;3843:40;;3793:6;;;3810:17;3793:6;;3843:40;;3774:16;;3843:40;3763:128;3700:191;:::o;35029:240::-;-1:-1:-1;;;;;35112:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;35112:39:0;;;;;;;35164;35112:31;:39;35164:26;:39::i;15098:806::-;-1:-1:-1;;;;;15195:18:0;;15187:68;;;;-1:-1:-1;;;15187:68:0;;17690:2:1;15187: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;;15187:68:0;17488:401:1;15187:68:0;-1:-1:-1;;;;;15274:16:0;;15266:64;;;;-1:-1:-1;;;15266:64:0;;18096:2:1;15266: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;;15266:64:0;17894:399:1;15266:64:0;-1:-1:-1;;;;;15416:15:0;;15394:19;15416:15;;;;;;;;;;;15450:21;;;;15442:72;;;;-1:-1:-1;;;15442:72:0;;18500:2:1;15442: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;;15442:72:0;18298:402:1;15442:72:0;-1:-1:-1;;;;;15550:15:0;;;:9;:15;;;;;;;;;;;15568:20;;;15550:38;;15768:13;;;;;;;;;;:23;;;;;;15820:26;;1894:25:1;;;15768:13:0;;15820:26;;1867:18:1;15820:26:0;;;;;;;15859:37;33855:423;30835:593;30987:16;;;31001:1;30987:16;;;;;;;;30963:21;;30987:16;;;;;;;;;;-1:-1:-1;30987:16:0;30963:40;;31032:4;31014;31019:1;31014:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;31014:23:0;;;:7;;;;;;;;;;:23;;;;31058:15;;:22;;;-1:-1:-1;;;31058:22:0;;;;:15;;;;;:20;;:22;;;;;31014:7;;31058:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31048:4;31053:1;31048:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;31048:32:0;;;:7;;;;;;;;;:32;31125:15;;31093:62;;31110:4;;31125:15;31143:11;31093:8;:62::i;:::-;31194:15;;:224;;-1:-1:-1;;;31194:224:0;;-1:-1:-1;;;;;31194:15:0;;;;:66;;:224;;31275:11;;31194:15;;31345:4;;31372;;31392:15;;31194:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30890:538;30835:593;:::o;29829:521::-;30009:15;;29977:62;;29994:4;;-1:-1:-1;;;;;30009:15:0;30027:11;29977:8;:62::i;:::-;30082:15;;:260;;-1:-1:-1;;;30082:260:0;;30154:4;30082:260;;;19633:34:1;19683:18;;;19676:34;;;30082:15:0;19726:18:1;;;19719:34;;;19769:18;;;19762:34;30294:6:0;19812:19:1;;;19805:44;30316:15:0;19865:19:1;;;19858:35;-1:-1:-1;;;;;30082:15:0;;;;:31;;30121:9;;19567:19:1;;30082:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;29829:521;;:::o;30626:201::-;-1:-1:-1;;;;;30712:37:0;;;;;;:31;:37;;;;;;;;;:50;;-1:-1:-1;;30712:50:0;;;;;;;;;;30778:41;;20383:51:1;;;20450:18;;;20443:50;30778:41:0;;20356:18:1;30778: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://ffa2987f279ba56ff2519efe2ff060eaf510f98ba1db1c3013e25f78314448eb
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.