ETH Price: $2,432.84 (+3.18%)

Token

OlympicDOGE (ODOGE)
 

Overview

Max Total Supply

100,000,000 ODOGE

Holders

728

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2.926449210235015561 ODOGE

Value
$0.00
0x22169bB244577772EE9fe9eaA52Ca4d7a475543e
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:
OlympicDOGE

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-27
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

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

// pragma solidity ^0.8.0;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


abstract contract Ownable is Context {
    address private _owner;

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

   
    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 OlympicDOGE 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 OlympicDOGE 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);
    }
}

// OpenZeppelin Contracts (last updated v4.6.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);
}

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

// pragma solidity ^0.8.0;

// import "../IERC20.sol";

/**
 * @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);
}

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

// pragma solidity ^0.8.0;

// import "./IERC20.sol";
// import "./extensions/IERC20Metadata.sol";
// import "../../utils/Context.sol";

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

    uint256 public _maxlSupply;

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

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    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;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    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;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20:OlympicDOGE transfer from the zero address");
        require(to != address(0), "OlympicDOGEERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    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);
    }

    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);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the OlympicDOGEzero address");
        require(spender != address(0), "ERC20:OlympicDOGE approve to the zero address");

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

    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);
            }
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers,OlympicDOGE with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers,OlympicDOGE reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsignedOlympicDOGE integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this functionOlympicDOGE uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses aOlympicDOGE `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,   bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,  address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,    address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

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

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

contract OlympicDOGE is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    address public marketingWallet;
    address public developmentWallet;
    address public liquidityWallet;
    address public constant deadAddress = address(0xdead);

    bool public tradingEnabled;
    bool public swapEnabled;
    bool private _swapping;

    uint256 public swapTokensAtAmount;

    uint256 public buyTotalFees;
    uint256 private _buyMarketingFee;
    uint256 private _buyDevelopmentFee;
    uint256 private _buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private _sellMarketingFee;
    uint256 private _sellDevelopmentFee;
    uint256 private _sellLiquidityFee;

    uint256 private _tokensForMarketing;
    uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;
    uint256 private _previousFee;

    mapping (address => bool) private _isExcludedFromEnableTrad;
    mapping(address => bool) private _automatedMarketMakerPairs;
    

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event developmentWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event liquidityWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event TokensAirdropped(uint256 totalWallets, uint256 totalTokens);

    constructor() ERC20("OlympicDOGE", "ODOGE") {

        uint256 totalSupply = 100000000 * (10 ** 18);

        uniswapV2Router = IUniswapV2Router02(0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);


        _buyMarketingFee = 0;
        _buyDevelopmentFee = 0;
        _buyLiquidityFee = 0;
        buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee;

        _sellMarketingFee = 0;
        _sellDevelopmentFee = 0;
        _sellLiquidityFee = 0;
        sellTotalFees = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee;
        _previousFee = sellTotalFees;

        
        _isExcludedFromEnableTrad[owner()] = true;
        _isExcludedFromEnableTrad[address(this)] = true;
        _isExcludedFromEnableTrad[deadAddress] = true;

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function Opentrade() public onlyOwner {
        require(!tradingEnabled, "Trading already OlympicDOGE active.");
        tradingEnabled = true;
        swapEnabled = true;
    }


   function excludeFromTrade(address[] memory accounts, bool excluded) external onlyOwner {
    for (uint256 i = 0; i < accounts.length; i++) {
        _isExcludedFromEnableTrad[accounts[i]] = excluded;
        emit ExcludeFromFees(accounts[i], excluded);
    }
}

   function setAutomatedMarketMakerPair(address[] memory pairs, bool value) public onlyOwner {
    for (uint256 i = 0; i < pairs.length; i++) {
        require(pairs[i] != uniswapV2Pair, "The Exchange pair cannot be removed from OlympicDOGE automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pairs[i], value);
    }
}


    function _setAutomatedMarketMakerPair(address pair, bool value) internal {
        _automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(tradingEnabled || _isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to], "Trading OlympicDOGE not yet enabled!");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&!_swapping&&_automatedMarketMakerPairs[from] &&
            !_isExcludedFromEnableTrad[from] &&
            !_isExcludedFromEnableTrad[to]
        ) {
            _swapping = true;

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

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

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (_automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(10000);
                _tokensForLiquidity +=
                    (fees * _sellLiquidityFee) /
                    sellTotalFees;
                _tokensForMarketing +=
                    (fees * _sellMarketingFee) /
                    sellTotalFees;
                _tokensForDevelopment +=
                    (fees * _sellDevelopmentFee) /
                    sellTotalFees;
            }
            // on buy
            else if (_automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(10000);
                _tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees;
                _tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees;
                _tokensForDevelopment +=
                    (fees * _buyDevelopmentFee) /
                    buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = _previousFee;
    }

    function _swapTokensForETH(uint256 tokenAmount) internal {
        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,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }

    function _swapBack() internal {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity +
            _tokensForMarketing +
            _tokensForDevelopment;
        bool success;


        uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        _swapTokensForETH(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(
            totalTokensToSwap
        );

        uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                _tokensForLiquidity
            );
        }

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}("");

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

}

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":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","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":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"TokensAirdropped","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":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"Opentrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"}],"name":"balanceOf","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":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromTrade","outputs":[],"stateMutability":"nonpayable","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":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"pairs","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b506040518060400160405280600b81526020017f4f6c796d706963444f47450000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4f444f474500000000000000000000000000000000000000000000000000000081525081600490816200008f9190620009d3565b508060059081620000a19190620009d3565b505050620000c4620000b86200031960201b60201c565b6200032160201b60201c565b60006a52b7d2dcc80cd2e40000009050734752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000151306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e760201b60201c565b6000600d819055506000600e819055506000600f81905550600f54600e54600d546200017e919062000ae9565b6200018a919062000ae9565b600c81905550600060118190555060006012819055506000601381905550601354601254601154620001bd919062000ae9565b620001c9919062000ae9565b601081905550601054601781905550600160186000620001ee620005b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031262000305620005b860201b60201c565b82620005e260201b60201c565b5062000d05565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004509062000bab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c29062000c43565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005ab919062000c76565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000654576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064b9062000ce3565b60405180910390fd5b62000668600083836200074f60201b60201c565b80600260008282546200067c919062000ae9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200072f919062000c76565b60405180910390a36200074b600083836200075460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007db57607f821691505b602082108103620007f157620007f062000793565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081c565b6200086786836200081c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b4620008ae620008a8846200087f565b62000889565b6200087f565b9050919050565b6000819050919050565b620008d08362000893565b620008e8620008df82620008bb565b84845462000829565b825550505050565b600090565b620008ff620008f0565b6200090c818484620008c5565b505050565b5b81811015620009345762000928600082620008f5565b60018101905062000912565b5050565b601f82111562000983576200094d81620007f7565b62000958846200080c565b8101602085101562000968578190505b6200098062000977856200080c565b83018262000911565b50505b505050565b600082821c905092915050565b6000620009a86000198460080262000988565b1980831691505092915050565b6000620009c3838362000995565b9150826002028217905092915050565b620009de8262000759565b67ffffffffffffffff811115620009fa57620009f962000764565b5b62000a068254620007c2565b62000a1382828562000938565b600060209050601f83116001811462000a4b576000841562000a36578287015190505b62000a428582620009b5565b86555062000ab2565b601f19841662000a5b86620007f7565b60005b8281101562000a855784890151825560018201915060208501945060208101905062000a5e565b8683101562000aa5578489015162000aa1601f89168262000995565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af6826200087f565b915062000b03836200087f565b925082820190508082111562000b1e5762000b1d62000aba565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865204f6c796d7069634460008201527f4f47457a65726f20616464726573730000000000000000000000000000000000602082015250565b600062000b93602f8362000b24565b915062000ba08262000b35565b604082019050919050565b6000602082019050818103600083015262000bc68162000b84565b9050919050565b7f45524332303a4f6c796d706963444f474520617070726f766520746f2074686560008201527f207a65726f206164647265737300000000000000000000000000000000000000602082015250565b600062000c2b602d8362000b24565b915062000c388262000bcd565b604082019050919050565b6000602082019050818103600083015262000c5e8162000c1c565b9050919050565b62000c70816200087f565b82525050565b600060208201905062000c8d600083018462000c65565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ccb601f8362000b24565b915062000cd88262000c93565b602082019050919050565b6000602082019050818103600083015262000cfe8162000cbc565b9050919050565b60805161348a62000d44600039600081816107b801528181611f94015281816120750152818161209c01528181612138015261215f015261348a6000f3fe6080604052600436106101c65760003560e01c806370a08231116100f7578063a9059cbb11610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a9059cbb14610589578063c04a5414146105c6578063d2c72191146105f1578063d46980161461061a576101cd565b80638da5cb5b116100d15780638da5cb5b146104cb57806393ec52de146104f657806395d89b4114610521578063a457c2d71461054c576101cd565b806370a082311461044c578063715018a61461048957806375f0a874146104a0576101cd565b8063313ce5671161016457806349bd5a5e1161013e57806349bd5a5e146103a05780634ada218b146103cb5780636a486a8e146103f65780636ddd171314610421576101cd565b8063313ce5671461030f57806336fd07a71461033a5780633950935114610363576101cd565b806318160ddd116101a057806318160ddd146102655780631aa85bfc1461029057806323b872dd146102a757806327c8f835146102e4576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f491906122be565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612388565b610793565b60405161023191906123e3565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c919061245d565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b6040516102879190612487565b60405180910390f35b34801561029c57600080fd5b506102a56107e4565b005b3480156102b357600080fd5b506102ce60048036038101906102c991906124a2565b610874565b6040516102db91906123e3565b60405180910390f35b3480156102f057600080fd5b506102f96108a3565b6040516103069190612504565b60405180910390f35b34801561031b57600080fd5b506103246108a9565b604051610331919061253b565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906126ca565b6108b2565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612388565b6109b7565b60405161039791906123e3565b60405180910390f35b3480156103ac57600080fd5b506103b56109ee565b6040516103c29190612504565b60405180910390f35b3480156103d757600080fd5b506103e0610a14565b6040516103ed91906123e3565b60405180910390f35b34801561040257600080fd5b5061040b610a27565b6040516104189190612487565b60405180910390f35b34801561042d57600080fd5b50610436610a2d565b60405161044391906123e3565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612726565b610a40565b6040516104809190612487565b60405180910390f35b34801561049557600080fd5b5061049e610a88565b005b3480156104ac57600080fd5b506104b5610a9c565b6040516104c29190612504565b60405180910390f35b3480156104d757600080fd5b506104e0610ac2565b6040516104ed9190612504565b60405180910390f35b34801561050257600080fd5b5061050b610aec565b6040516105189190612487565b60405180910390f35b34801561052d57600080fd5b50610536610af2565b60405161054391906122be565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612388565b610b84565b60405161058091906123e3565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612388565b610bfb565b6040516105bd91906123e3565b60405180910390f35b3480156105d257600080fd5b506105db610c1e565b6040516105e89190612504565b60405180910390f35b3480156105fd57600080fd5b50610618600480360381019061061391906126ca565b610c44565b005b34801561062657600080fd5b5061062f610d3e565b60405161063c9190612504565b60405180910390f35b34801561065157600080fd5b5061065a610d64565b6040516106679190612487565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612753565b610d6a565b6040516106a49190612487565b60405180910390f35b3480156106b957600080fd5b506106c2610df1565b6040516106cf9190612487565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612726565b610df7565b005b606060048054610710906127c2565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906127c2565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610e7a565b90506107ab818585610e82565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6107ec61104b565b600a60149054906101000a900460ff161561083c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083390612865565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b60008061087f610e7a565b905061088c8582856110c9565b610897858585611155565b60019150509392505050565b61dead81565b60006012905090565b6108ba61104b565b60005b82518110156109b25781601860008584815181106108de576108dd612885565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555082818151811061094a57610949612885565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78360405161099791906123e3565b60405180910390a280806109aa906128e3565b9150506108bd565b505050565b6000806109c2610e7a565b90506109e38185856109d48589610d6a565b6109de919061292b565b610e82565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a9061104b565b610a9a600061182a565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610b01906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2d906127c2565b8015610b7a5780601f10610b4f57610100808354040283529160200191610b7a565b820191906000526020600020905b815481529060010190602001808311610b5d57829003601f168201915b5050505050905090565b600080610b8f610e7a565b90506000610b9d8286610d6a565b905083811015610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd9906129d1565b60405180910390fd5b610bef8286868403610e82565b60019250505092915050565b600080610c06610e7a565b9050610c13818585611155565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c4c61104b565b60005b8251811015610d3957600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16838281518110610ca457610ca3612885565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990612a89565b60405180910390fd5b610d26838281518110610d1857610d17612885565b5b6020026020010151836118f0565b8080610d31906128e3565b915050610c4f565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610dff61104b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590612b1b565b60405180910390fd5b610e778161182a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890612bad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790612c3f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161103e9190612487565b60405180910390a3505050565b611053610e7a565b73ffffffffffffffffffffffffffffffffffffffff16611071610ac2565b73ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90612cab565b60405180910390fd5b565b60006110d58484610d6a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461114f5781811015611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890612d17565b60405180910390fd5b61114e8484848403610e82565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90612da9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90612e3b565b60405180910390fd5b600a60149054906101000a900460ff16806112975750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112eb5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190612ecd565b60405180910390fd5b600081036113435761133e83836000611991565b611825565b600061134e30610a40565b90506000600b5482101590508080156113735750600a60159054906101000a900460ff165b801561138c5750600a60169054906101000a900460ff16155b80156113e15750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156114375750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561148d5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114d1576001600a60166101000a81548160ff0219169083151502179055506114b5611c07565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115875750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561159157600090505b6000811561180c57601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f457506000601054115b156116c25761162261271061161460105488611ea990919063ffffffff16565b611ebf90919063ffffffff16565b9050601054601354826116359190612eed565b61163f9190612f5e565b60166000828254611650919061292b565b92505081905550601054601154826116689190612eed565b6116729190612f5e565b60146000828254611683919061292b565b925050819055506010546012548261169b9190612eed565b6116a59190612f5e565b601560008282546116b6919061292b565b925050819055506117e8565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561171d57506000600c54115b156117e75761174b61271061173d600c5488611ea990919063ffffffff16565b611ebf90919063ffffffff16565b9050600c54600f548261175e9190612eed565b6117689190612f5e565b60166000828254611779919061292b565b92505081905550600c54600d54826117919190612eed565b61179b9190612f5e565b601460008282546117ac919061292b565b92505081905550600c54600e54826117c49190612eed565b6117ce9190612f5e565b601560008282546117df919061292b565b925050819055505b5b60008111156117fd576117fc873083611991565b5b80856118099190612f8f565b94505b611817878787611991565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790613035565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a66906130c7565b60405180910390fd5b611a7a838383611ed5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790613159565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bee9190612487565b60405180910390a3611c01848484611eda565b50505050565b6000611c1230610a40565b90506000601554601454601654611c29919061292b565b611c33919061292b565b905060008060028360165486611c499190612eed565b611c539190612f5e565b611c5d9190612f5e565b90506000611c748286611edf90919063ffffffff16565b90506000479050611c8482611ef5565b6000611c998247611edf90919063ffffffff16565b90506000611cc487611cb660145485611ea990919063ffffffff16565b611ebf90919063ffffffff16565b90506000611cef88611ce160155486611ea990919063ffffffff16565b611ebf90919063ffffffff16565b90506000818385611d009190612f8f565b611d0a9190612f8f565b9050600060168190555060006014819055506000601581905550600087118015611d345750600081115b15611d8157611d438782612132565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611d7893929190613179565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611dc7906131e1565b60006040518083038185875af1925050503d8060008114611e04576040519150601f19603f3d011682016040523d82523d6000602084013e611e09565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611e55906131e1565b60006040518083038185875af1925050503d8060008114611e92576040519150601f19603f3d011682016040523d82523d6000602084013e611e97565b606091505b50508098505050505050505050505050565b60008183611eb79190612eed565b905092915050565b60008183611ecd9190612f5e565b905092915050565b505050565b505050565b60008183611eed9190612f8f565b905092915050565b6000600267ffffffffffffffff811115611f1257611f1161255b565b5b604051908082528060200260200182016040528015611f405781602001602082028036833780820191505090505b5090503081600081518110611f5857611f57612885565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ffd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612021919061320b565b8160018151811061203557612034612885565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061209a307f000000000000000000000000000000000000000000000000000000000000000084610e82565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120fc959493929190613331565b600060405180830381600087803b15801561211657600080fd5b505af115801561212a573d6000803e3d6000fd5b505050505050565b61215d307f000000000000000000000000000000000000000000000000000000000000000084610e82565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121e49695949392919061338b565b60606040518083038185885af1158015612202573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906122279190613401565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561226857808201518184015260208101905061224d565b60008484015250505050565b6000601f19601f8301169050919050565b60006122908261222e565b61229a8185612239565b93506122aa81856020860161224a565b6122b381612274565b840191505092915050565b600060208201905081810360008301526122d88184612285565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061231f826122f4565b9050919050565b61232f81612314565b811461233a57600080fd5b50565b60008135905061234c81612326565b92915050565b6000819050919050565b61236581612352565b811461237057600080fd5b50565b6000813590506123828161235c565b92915050565b6000806040838503121561239f5761239e6122ea565b5b60006123ad8582860161233d565b92505060206123be85828601612373565b9150509250929050565b60008115159050919050565b6123dd816123c8565b82525050565b60006020820190506123f860008301846123d4565b92915050565b6000819050919050565b600061242361241e612419846122f4565b6123fe565b6122f4565b9050919050565b600061243582612408565b9050919050565b60006124478261242a565b9050919050565b6124578161243c565b82525050565b6000602082019050612472600083018461244e565b92915050565b61248181612352565b82525050565b600060208201905061249c6000830184612478565b92915050565b6000806000606084860312156124bb576124ba6122ea565b5b60006124c98682870161233d565b93505060206124da8682870161233d565b92505060406124eb86828701612373565b9150509250925092565b6124fe81612314565b82525050565b600060208201905061251960008301846124f5565b92915050565b600060ff82169050919050565b6125358161251f565b82525050565b6000602082019050612550600083018461252c565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61259382612274565b810181811067ffffffffffffffff821117156125b2576125b161255b565b5b80604052505050565b60006125c56122e0565b90506125d1828261258a565b919050565b600067ffffffffffffffff8211156125f1576125f061255b565b5b602082029050602081019050919050565b600080fd5b600061261a612615846125d6565b6125bb565b9050808382526020820190506020840283018581111561263d5761263c612602565b5b835b818110156126665780612652888261233d565b84526020840193505060208101905061263f565b5050509392505050565b600082601f83011261268557612684612556565b5b8135612695848260208601612607565b91505092915050565b6126a7816123c8565b81146126b257600080fd5b50565b6000813590506126c48161269e565b92915050565b600080604083850312156126e1576126e06122ea565b5b600083013567ffffffffffffffff8111156126ff576126fe6122ef565b5b61270b85828601612670565b925050602061271c858286016126b5565b9150509250929050565b60006020828403121561273c5761273b6122ea565b5b600061274a8482850161233d565b91505092915050565b6000806040838503121561276a576127696122ea565b5b60006127788582860161233d565b92505060206127898582860161233d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127da57607f821691505b6020821081036127ed576127ec612793565b5b50919050565b7f54726164696e6720616c7265616479204f6c796d706963444f4745206163746960008201527f76652e0000000000000000000000000000000000000000000000000000000000602082015250565b600061284f602383612239565b915061285a826127f3565b604082019050919050565b6000602082019050818103600083015261287e81612842565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128ee82612352565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036129205761291f6128b4565b5b600182019050919050565b600061293682612352565b915061294183612352565b9250828201905080821115612959576129586128b4565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006129bb602583612239565b91506129c68261295f565b604082019050919050565b600060208201905081810360008301526129ea816129ae565b9050919050565b7f5468652045786368616e676520706169722063616e6e6f742062652072656d6f60008201527f7665642066726f6d204f6c796d706963444f4745206175746f6d617465644d6160208201527f726b65744d616b65725061697273000000000000000000000000000000000000604082015250565b6000612a73604e83612239565b9150612a7e826129f1565b606082019050919050565b60006020820190508181036000830152612aa281612a66565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f204f60008201527f6c796d706963444f474520616464726573730000000000000000000000000000602082015250565b6000612b05603283612239565b9150612b1082612aa9565b604082019050919050565b60006020820190508181036000830152612b3481612af8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865204f6c796d7069634460008201527f4f47457a65726f20616464726573730000000000000000000000000000000000602082015250565b6000612b97602f83612239565b9150612ba282612b3b565b604082019050919050565b60006020820190508181036000830152612bc681612b8a565b9050919050565b7f45524332303a4f6c796d706963444f474520617070726f766520746f2074686560008201527f207a65726f206164647265737300000000000000000000000000000000000000602082015250565b6000612c29602d83612239565b9150612c3482612bcd565b604082019050919050565b60006020820190508181036000830152612c5881612c1c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c95602083612239565b9150612ca082612c5f565b602082019050919050565b60006020820190508181036000830152612cc481612c88565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612d01601d83612239565b9150612d0c82612ccb565b602082019050919050565b60006020820190508181036000830152612d3081612cf4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d93602583612239565b9150612d9e82612d37565b604082019050919050565b60006020820190508181036000830152612dc281612d86565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612e25602383612239565b9150612e3082612dc9565b604082019050919050565b60006020820190508181036000830152612e5481612e18565b9050919050565b7f54726164696e67204f6c796d706963444f4745206e6f742079657420656e616260008201527f6c65642100000000000000000000000000000000000000000000000000000000602082015250565b6000612eb7602483612239565b9150612ec282612e5b565b604082019050919050565b60006020820190508181036000830152612ee681612eaa565b9050919050565b6000612ef882612352565b9150612f0383612352565b9250828202612f1181612352565b91508282048414831517612f2857612f276128b4565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f6982612352565b9150612f7483612352565b925082612f8457612f83612f2f565b5b828204905092915050565b6000612f9a82612352565b9150612fa583612352565b9250828203905081811115612fbd57612fbc6128b4565b5b92915050565b7f45524332303a4f6c796d706963444f4745207472616e736665722066726f6d2060008201527f746865207a65726f206164647265737300000000000000000000000000000000602082015250565b600061301f603083612239565b915061302a82612fc3565b604082019050919050565b6000602082019050818103600083015261304e81613012565b9050919050565b7f4f6c796d706963444f474545524332303a207472616e7366657220746f20746860008201527f65207a65726f2061646472657373000000000000000000000000000000000000602082015250565b60006130b1602e83612239565b91506130bc82613055565b604082019050919050565b600060208201905081810360008301526130e0816130a4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74204f6c796d706963444f60008201527f4745657863656564732062616c616e6365000000000000000000000000000000602082015250565b6000613143603183612239565b915061314e826130e7565b604082019050919050565b6000602082019050818103600083015261317281613136565b9050919050565b600060608201905061318e6000830186612478565b61319b6020830185612478565b6131a86040830184612478565b949350505050565b600081905092915050565b50565b60006131cb6000836131b0565b91506131d6826131bb565b600082019050919050565b60006131ec826131be565b9150819050919050565b60008151905061320581612326565b92915050565b600060208284031215613221576132206122ea565b5b600061322f848285016131f6565b91505092915050565b6000819050919050565b600061325d61325861325384613238565b6123fe565b612352565b9050919050565b61326d81613242565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6132a881612314565b82525050565b60006132ba838361329f565b60208301905092915050565b6000602082019050919050565b60006132de82613273565b6132e8818561327e565b93506132f38361328f565b8060005b8381101561332457815161330b88826132ae565b9750613316836132c6565b9250506001810190506132f7565b5085935050505092915050565b600060a0820190506133466000830188612478565b6133536020830187613264565b818103604083015261336581866132d3565b905061337460608301856124f5565b6133816080830184612478565b9695505050505050565b600060c0820190506133a060008301896124f5565b6133ad6020830188612478565b6133ba6040830187613264565b6133c76060830186613264565b6133d460808301856124f5565b6133e160a0830184612478565b979650505050505050565b6000815190506133fb8161235c565b92915050565b60008060006060848603121561341a576134196122ea565b5b6000613428868287016133ec565b9350506020613439868287016133ec565b925050604061344a868287016133ec565b915050925092509256fea26469706673582212206df0fc9fb705c993a58d798997d1230f433b93d1eba9dce0ca0b58afd38bf2dd64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806370a08231116100f7578063a9059cbb11610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a9059cbb14610589578063c04a5414146105c6578063d2c72191146105f1578063d46980161461061a576101cd565b80638da5cb5b116100d15780638da5cb5b146104cb57806393ec52de146104f657806395d89b4114610521578063a457c2d71461054c576101cd565b806370a082311461044c578063715018a61461048957806375f0a874146104a0576101cd565b8063313ce5671161016457806349bd5a5e1161013e57806349bd5a5e146103a05780634ada218b146103cb5780636a486a8e146103f65780636ddd171314610421576101cd565b8063313ce5671461030f57806336fd07a71461033a5780633950935114610363576101cd565b806318160ddd116101a057806318160ddd146102655780631aa85bfc1461029057806323b872dd146102a757806327c8f835146102e4576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f491906122be565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612388565b610793565b60405161023191906123e3565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c919061245d565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b6040516102879190612487565b60405180910390f35b34801561029c57600080fd5b506102a56107e4565b005b3480156102b357600080fd5b506102ce60048036038101906102c991906124a2565b610874565b6040516102db91906123e3565b60405180910390f35b3480156102f057600080fd5b506102f96108a3565b6040516103069190612504565b60405180910390f35b34801561031b57600080fd5b506103246108a9565b604051610331919061253b565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906126ca565b6108b2565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612388565b6109b7565b60405161039791906123e3565b60405180910390f35b3480156103ac57600080fd5b506103b56109ee565b6040516103c29190612504565b60405180910390f35b3480156103d757600080fd5b506103e0610a14565b6040516103ed91906123e3565b60405180910390f35b34801561040257600080fd5b5061040b610a27565b6040516104189190612487565b60405180910390f35b34801561042d57600080fd5b50610436610a2d565b60405161044391906123e3565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612726565b610a40565b6040516104809190612487565b60405180910390f35b34801561049557600080fd5b5061049e610a88565b005b3480156104ac57600080fd5b506104b5610a9c565b6040516104c29190612504565b60405180910390f35b3480156104d757600080fd5b506104e0610ac2565b6040516104ed9190612504565b60405180910390f35b34801561050257600080fd5b5061050b610aec565b6040516105189190612487565b60405180910390f35b34801561052d57600080fd5b50610536610af2565b60405161054391906122be565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612388565b610b84565b60405161058091906123e3565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612388565b610bfb565b6040516105bd91906123e3565b60405180910390f35b3480156105d257600080fd5b506105db610c1e565b6040516105e89190612504565b60405180910390f35b3480156105fd57600080fd5b50610618600480360381019061061391906126ca565b610c44565b005b34801561062657600080fd5b5061062f610d3e565b60405161063c9190612504565b60405180910390f35b34801561065157600080fd5b5061065a610d64565b6040516106679190612487565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612753565b610d6a565b6040516106a49190612487565b60405180910390f35b3480156106b957600080fd5b506106c2610df1565b6040516106cf9190612487565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612726565b610df7565b005b606060048054610710906127c2565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906127c2565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610e7a565b90506107ab818585610e82565b600191505092915050565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2481565b6000600254905090565b6107ec61104b565b600a60149054906101000a900460ff161561083c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083390612865565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b60008061087f610e7a565b905061088c8582856110c9565b610897858585611155565b60019150509392505050565b61dead81565b60006012905090565b6108ba61104b565b60005b82518110156109b25781601860008584815181106108de576108dd612885565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555082818151811061094a57610949612885565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78360405161099791906123e3565b60405180910390a280806109aa906128e3565b9150506108bd565b505050565b6000806109c2610e7a565b90506109e38185856109d48589610d6a565b6109de919061292b565b610e82565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a9061104b565b610a9a600061182a565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610b01906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2d906127c2565b8015610b7a5780601f10610b4f57610100808354040283529160200191610b7a565b820191906000526020600020905b815481529060010190602001808311610b5d57829003601f168201915b5050505050905090565b600080610b8f610e7a565b90506000610b9d8286610d6a565b905083811015610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd9906129d1565b60405180910390fd5b610bef8286868403610e82565b60019250505092915050565b600080610c06610e7a565b9050610c13818585611155565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c4c61104b565b60005b8251811015610d3957600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16838281518110610ca457610ca3612885565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990612a89565b60405180910390fd5b610d26838281518110610d1857610d17612885565b5b6020026020010151836118f0565b8080610d31906128e3565b915050610c4f565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610dff61104b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590612b1b565b60405180910390fd5b610e778161182a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890612bad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790612c3f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161103e9190612487565b60405180910390a3505050565b611053610e7a565b73ffffffffffffffffffffffffffffffffffffffff16611071610ac2565b73ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90612cab565b60405180910390fd5b565b60006110d58484610d6a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461114f5781811015611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890612d17565b60405180910390fd5b61114e8484848403610e82565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90612da9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90612e3b565b60405180910390fd5b600a60149054906101000a900460ff16806112975750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112eb5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190612ecd565b60405180910390fd5b600081036113435761133e83836000611991565b611825565b600061134e30610a40565b90506000600b5482101590508080156113735750600a60159054906101000a900460ff165b801561138c5750600a60169054906101000a900460ff16155b80156113e15750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156114375750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561148d5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114d1576001600a60166101000a81548160ff0219169083151502179055506114b5611c07565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115875750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561159157600090505b6000811561180c57601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f457506000601054115b156116c25761162261271061161460105488611ea990919063ffffffff16565b611ebf90919063ffffffff16565b9050601054601354826116359190612eed565b61163f9190612f5e565b60166000828254611650919061292b565b92505081905550601054601154826116689190612eed565b6116729190612f5e565b60146000828254611683919061292b565b925050819055506010546012548261169b9190612eed565b6116a59190612f5e565b601560008282546116b6919061292b565b925050819055506117e8565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561171d57506000600c54115b156117e75761174b61271061173d600c5488611ea990919063ffffffff16565b611ebf90919063ffffffff16565b9050600c54600f548261175e9190612eed565b6117689190612f5e565b60166000828254611779919061292b565b92505081905550600c54600d54826117919190612eed565b61179b9190612f5e565b601460008282546117ac919061292b565b92505081905550600c54600e54826117c49190612eed565b6117ce9190612f5e565b601560008282546117df919061292b565b925050819055505b5b60008111156117fd576117fc873083611991565b5b80856118099190612f8f565b94505b611817878787611991565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790613035565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a66906130c7565b60405180910390fd5b611a7a838383611ed5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790613159565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bee9190612487565b60405180910390a3611c01848484611eda565b50505050565b6000611c1230610a40565b90506000601554601454601654611c29919061292b565b611c33919061292b565b905060008060028360165486611c499190612eed565b611c539190612f5e565b611c5d9190612f5e565b90506000611c748286611edf90919063ffffffff16565b90506000479050611c8482611ef5565b6000611c998247611edf90919063ffffffff16565b90506000611cc487611cb660145485611ea990919063ffffffff16565b611ebf90919063ffffffff16565b90506000611cef88611ce160155486611ea990919063ffffffff16565b611ebf90919063ffffffff16565b90506000818385611d009190612f8f565b611d0a9190612f8f565b9050600060168190555060006014819055506000601581905550600087118015611d345750600081115b15611d8157611d438782612132565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611d7893929190613179565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611dc7906131e1565b60006040518083038185875af1925050503d8060008114611e04576040519150601f19603f3d011682016040523d82523d6000602084013e611e09565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611e55906131e1565b60006040518083038185875af1925050503d8060008114611e92576040519150601f19603f3d011682016040523d82523d6000602084013e611e97565b606091505b50508098505050505050505050505050565b60008183611eb79190612eed565b905092915050565b60008183611ecd9190612f5e565b905092915050565b505050565b505050565b60008183611eed9190612f8f565b905092915050565b6000600267ffffffffffffffff811115611f1257611f1161255b565b5b604051908082528060200260200182016040528015611f405781602001602082028036833780820191505090505b5090503081600081518110611f5857611f57612885565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ffd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612021919061320b565b8160018151811061203557612034612885565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061209a307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610e82565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120fc959493929190613331565b600060405180830381600087803b15801561211657600080fd5b505af115801561212a573d6000803e3d6000fd5b505050505050565b61215d307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610e82565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121e49695949392919061338b565b60606040518083038185885af1158015612202573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906122279190613401565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561226857808201518184015260208101905061224d565b60008484015250505050565b6000601f19601f8301169050919050565b60006122908261222e565b61229a8185612239565b93506122aa81856020860161224a565b6122b381612274565b840191505092915050565b600060208201905081810360008301526122d88184612285565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061231f826122f4565b9050919050565b61232f81612314565b811461233a57600080fd5b50565b60008135905061234c81612326565b92915050565b6000819050919050565b61236581612352565b811461237057600080fd5b50565b6000813590506123828161235c565b92915050565b6000806040838503121561239f5761239e6122ea565b5b60006123ad8582860161233d565b92505060206123be85828601612373565b9150509250929050565b60008115159050919050565b6123dd816123c8565b82525050565b60006020820190506123f860008301846123d4565b92915050565b6000819050919050565b600061242361241e612419846122f4565b6123fe565b6122f4565b9050919050565b600061243582612408565b9050919050565b60006124478261242a565b9050919050565b6124578161243c565b82525050565b6000602082019050612472600083018461244e565b92915050565b61248181612352565b82525050565b600060208201905061249c6000830184612478565b92915050565b6000806000606084860312156124bb576124ba6122ea565b5b60006124c98682870161233d565b93505060206124da8682870161233d565b92505060406124eb86828701612373565b9150509250925092565b6124fe81612314565b82525050565b600060208201905061251960008301846124f5565b92915050565b600060ff82169050919050565b6125358161251f565b82525050565b6000602082019050612550600083018461252c565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61259382612274565b810181811067ffffffffffffffff821117156125b2576125b161255b565b5b80604052505050565b60006125c56122e0565b90506125d1828261258a565b919050565b600067ffffffffffffffff8211156125f1576125f061255b565b5b602082029050602081019050919050565b600080fd5b600061261a612615846125d6565b6125bb565b9050808382526020820190506020840283018581111561263d5761263c612602565b5b835b818110156126665780612652888261233d565b84526020840193505060208101905061263f565b5050509392505050565b600082601f83011261268557612684612556565b5b8135612695848260208601612607565b91505092915050565b6126a7816123c8565b81146126b257600080fd5b50565b6000813590506126c48161269e565b92915050565b600080604083850312156126e1576126e06122ea565b5b600083013567ffffffffffffffff8111156126ff576126fe6122ef565b5b61270b85828601612670565b925050602061271c858286016126b5565b9150509250929050565b60006020828403121561273c5761273b6122ea565b5b600061274a8482850161233d565b91505092915050565b6000806040838503121561276a576127696122ea565b5b60006127788582860161233d565b92505060206127898582860161233d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127da57607f821691505b6020821081036127ed576127ec612793565b5b50919050565b7f54726164696e6720616c7265616479204f6c796d706963444f4745206163746960008201527f76652e0000000000000000000000000000000000000000000000000000000000602082015250565b600061284f602383612239565b915061285a826127f3565b604082019050919050565b6000602082019050818103600083015261287e81612842565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128ee82612352565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036129205761291f6128b4565b5b600182019050919050565b600061293682612352565b915061294183612352565b9250828201905080821115612959576129586128b4565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006129bb602583612239565b91506129c68261295f565b604082019050919050565b600060208201905081810360008301526129ea816129ae565b9050919050565b7f5468652045786368616e676520706169722063616e6e6f742062652072656d6f60008201527f7665642066726f6d204f6c796d706963444f4745206175746f6d617465644d6160208201527f726b65744d616b65725061697273000000000000000000000000000000000000604082015250565b6000612a73604e83612239565b9150612a7e826129f1565b606082019050919050565b60006020820190508181036000830152612aa281612a66565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f204f60008201527f6c796d706963444f474520616464726573730000000000000000000000000000602082015250565b6000612b05603283612239565b9150612b1082612aa9565b604082019050919050565b60006020820190508181036000830152612b3481612af8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865204f6c796d7069634460008201527f4f47457a65726f20616464726573730000000000000000000000000000000000602082015250565b6000612b97602f83612239565b9150612ba282612b3b565b604082019050919050565b60006020820190508181036000830152612bc681612b8a565b9050919050565b7f45524332303a4f6c796d706963444f474520617070726f766520746f2074686560008201527f207a65726f206164647265737300000000000000000000000000000000000000602082015250565b6000612c29602d83612239565b9150612c3482612bcd565b604082019050919050565b60006020820190508181036000830152612c5881612c1c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c95602083612239565b9150612ca082612c5f565b602082019050919050565b60006020820190508181036000830152612cc481612c88565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612d01601d83612239565b9150612d0c82612ccb565b602082019050919050565b60006020820190508181036000830152612d3081612cf4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d93602583612239565b9150612d9e82612d37565b604082019050919050565b60006020820190508181036000830152612dc281612d86565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612e25602383612239565b9150612e3082612dc9565b604082019050919050565b60006020820190508181036000830152612e5481612e18565b9050919050565b7f54726164696e67204f6c796d706963444f4745206e6f742079657420656e616260008201527f6c65642100000000000000000000000000000000000000000000000000000000602082015250565b6000612eb7602483612239565b9150612ec282612e5b565b604082019050919050565b60006020820190508181036000830152612ee681612eaa565b9050919050565b6000612ef882612352565b9150612f0383612352565b9250828202612f1181612352565b91508282048414831517612f2857612f276128b4565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f6982612352565b9150612f7483612352565b925082612f8457612f83612f2f565b5b828204905092915050565b6000612f9a82612352565b9150612fa583612352565b9250828203905081811115612fbd57612fbc6128b4565b5b92915050565b7f45524332303a4f6c796d706963444f4745207472616e736665722066726f6d2060008201527f746865207a65726f206164647265737300000000000000000000000000000000602082015250565b600061301f603083612239565b915061302a82612fc3565b604082019050919050565b6000602082019050818103600083015261304e81613012565b9050919050565b7f4f6c796d706963444f474545524332303a207472616e7366657220746f20746860008201527f65207a65726f2061646472657373000000000000000000000000000000000000602082015250565b60006130b1602e83612239565b91506130bc82613055565b604082019050919050565b600060208201905081810360008301526130e0816130a4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74204f6c796d706963444f60008201527f4745657863656564732062616c616e6365000000000000000000000000000000602082015250565b6000613143603183612239565b915061314e826130e7565b604082019050919050565b6000602082019050818103600083015261317281613136565b9050919050565b600060608201905061318e6000830186612478565b61319b6020830185612478565b6131a86040830184612478565b949350505050565b600081905092915050565b50565b60006131cb6000836131b0565b91506131d6826131bb565b600082019050919050565b60006131ec826131be565b9150819050919050565b60008151905061320581612326565b92915050565b600060208284031215613221576132206122ea565b5b600061322f848285016131f6565b91505092915050565b6000819050919050565b600061325d61325861325384613238565b6123fe565b612352565b9050919050565b61326d81613242565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6132a881612314565b82525050565b60006132ba838361329f565b60208301905092915050565b6000602082019050919050565b60006132de82613273565b6132e8818561327e565b93506132f38361328f565b8060005b8381101561332457815161330b88826132ae565b9750613316836132c6565b9250506001810190506132f7565b5085935050505092915050565b600060a0820190506133466000830188612478565b6133536020830187613264565b818103604083015261336581866132d3565b905061337460608301856124f5565b6133816080830184612478565b9695505050505050565b600060c0820190506133a060008301896124f5565b6133ad6020830188612478565b6133ba6040830187613264565b6133c76060830186613264565b6133d460808301856124f5565b6133e160a0830184612478565b979650505050505050565b6000815190506133fb8161235c565b92915050565b60008060006060848603121561341a576134196122ea565b5b6000613428868287016133ec565b9350506020613439868287016133ec565b925050604061344a868287016133ec565b915050925092509256fea26469706673582212206df0fc9fb705c993a58d798997d1230f433b93d1eba9dce0ca0b58afd38bf2dd64736f6c63430008110033

Deployed Bytecode Sourcemap

28513:8820:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8255:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10444:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28594:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9384:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31360:181;;;;;;;;;;;;;:::i;:::-;;10694:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28802:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9226:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31550:265;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10997:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28652:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28864:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29155:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28897:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9555:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1588:103;;;;;;;;;;;;;:::i;:::-;;28689:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;935:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7794:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8474:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11275:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9938:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28726:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31822:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28765:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29000:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10235:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28958:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1846:250;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8255:100;8309:13;8342:5;8335:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8255:100;:::o;10444:242::-;10563:4;10585:13;10601:12;:10;:12::i;:::-;10585:28;;10624:32;10633:5;10640:7;10649:6;10624:8;:32::i;:::-;10674:4;10667:11;;;10444:242;;;;:::o;28594:51::-;;;:::o;9384:108::-;9445:7;9472:12;;9465:19;;9384:108;:::o;31360:181::-;821:13;:11;:13::i;:::-;31418:14:::1;;;;;;;;;;;31417:15;31409:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31500:4;31483:14;;:21;;;;;;;;;;;;;;;;;;31529:4;31515:11;;:18;;;;;;;;;;;;;;;;;;31360:181::o:0;10694:295::-;10825:4;10842:15;10860:12;:10;:12::i;:::-;10842:30;;10883:38;10899:4;10905:7;10914:6;10883:15;:38::i;:::-;10932:27;10942:4;10948:2;10952:6;10932:9;:27::i;:::-;10977:4;10970:11;;;10694:295;;;;;:::o;28802:53::-;28848:6;28802:53;:::o;9226:93::-;9284:5;9309:2;9302:9;;9226:93;:::o;31550:265::-;821:13;:11;:13::i;:::-;31649:9:::1;31644:168;31668:8;:15;31664:1;:19;31644:168;;;31742:8;31701:25;:38;31727:8;31736:1;31727:11;;;;;;;;:::i;:::-;;;;;;;;31701:38;;;;;;;;;;;;;;;;:49;;;;;;;;;;;;;;;;;;31782:8;31791:1;31782:11;;;;;;;;:::i;:::-;;;;;;;;31766:38;;;31795:8;31766:38;;;;;;:::i;:::-;;;;;;;;31685:3;;;;;:::i;:::-;;;;31644:168;;;;31550:265:::0;;:::o;10997:270::-;11112:4;11134:13;11150:12;:10;:12::i;:::-;11134:28;;11173:64;11182:5;11189:7;11226:10;11198:25;11208:5;11215:7;11198:9;:25::i;:::-;:38;;;;:::i;:::-;11173:8;:64::i;:::-;11255:4;11248:11;;;10997:270;;;;:::o;28652:28::-;;;;;;;;;;;;;:::o;28864:26::-;;;;;;;;;;;;;:::o;29155:28::-;;;;:::o;28897:23::-;;;;;;;;;;;;;:::o;9555:177::-;9674:7;9706:9;:18;9716:7;9706:18;;;;;;;;;;;;;;;;9699:25;;9555:177;;;:::o;1588:103::-;821:13;:11;:13::i;:::-;1653:30:::1;1680:1;1653:18;:30::i;:::-;1588:103::o:0;28689:30::-;;;;;;;;;;;;;:::o;935:87::-;981:7;1008:6;;;;;;;;;;;1001:13;;935:87;:::o;7794:26::-;;;;:::o;8474:104::-;8530:13;8563:7;8556:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8474:104;:::o;11275:505::-;11395:4;11417:13;11433:12;:10;:12::i;:::-;11417:28;;11456:24;11483:25;11493:5;11500:7;11483:9;:25::i;:::-;11456:52;;11561:15;11541:16;:35;;11519:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;11677:60;11686:5;11693:7;11721:15;11702:16;:34;11677:8;:60::i;:::-;11768:4;11761:11;;;;11275:505;;;;:::o;9938:234::-;10053:4;10075:13;10091:12;:10;:12::i;:::-;10075:28;;10114;10124:5;10131:2;10135:6;10114:9;:28::i;:::-;10160:4;10153:11;;;9938:234;;;;:::o;28726:32::-;;;;;;;;;;;;;:::o;31822:334::-;821:13;:11;:13::i;:::-;31924:9:::1;31919:234;31943:5;:12;31939:1;:16;31919:234;;;31993:13;;;;;;;;;;;31981:25;;:5;31987:1;31981:8;;;;;;;;:::i;:::-;;;;;;;;:25;;::::0;31973:116:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;32100:45;32129:5;32135:1;32129:8;;;;;;;;:::i;:::-;;;;;;;;32139:5;32100:28;:45::i;:::-;31957:3;;;;;:::i;:::-;;;;31919:234;;;;31822:334:::0;;:::o;28765:30::-;;;;;;;;;;;;;:::o;29000:27::-;;;;:::o;10235:201::-;10369:7;10401:11;:18;10413:5;10401:18;;;;;;;;;;;;;;;:27;10420:7;10401:27;;;;;;;;;;;;;;;;10394:34;;10235:201;;;;:::o;28958:33::-;;;;:::o;1846:250::-;821:13;:11;:13::i;:::-;1969:1:::1;1949:22;;:8;:22;;::::0;1927:122:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2060:28;2079:8;2060:18;:28::i;:::-;1846:250:::0;:::o;218:98::-;271:7;298:10;291:17;;218:98;:::o;13956:402::-;14109:1;14092:19;;:5;:19;;;14084:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;14201:1;14182:21;;:7;:21;;;14174:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;14296:6;14266:11;:18;14278:5;14266:18;;;;;;;;;;;;;;;:27;14285:7;14266:27;;;;;;;;;;;;;;;:36;;;;14334:7;14318:32;;14327:5;14318:32;;;14343:6;14318:32;;;;;;:::i;:::-;;;;;;;;13956:402;;;:::o;1112:132::-;1187:12;:10;:12::i;:::-;1176:23;;:7;:5;:7::i;:::-;:23;;;1168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1112:132::o;14366:502::-;14501:24;14528:25;14538:5;14545:7;14528:9;:25::i;:::-;14501:52;;14588:17;14568:16;:37;14564:297;;14668:6;14648:16;:26;;14622:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;14783:51;14792:5;14799:7;14827:6;14808:16;:25;14783:8;:51::i;:::-;14564:297;14490:378;14366:502;;;:::o;32362:2460::-;32510:1;32494:18;;:4;:18;;;32486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32587:1;32573:16;;:2;:16;;;32565:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32648:14;;;;;;;;;;;:49;;;;32666:25;:31;32692:4;32666:31;;;;;;;;;;;;;;;;;;;;;;;;;32648:49;:82;;;;32701:25;:29;32727:2;32701:29;;;;;;;;;;;;;;;;;;;;;;;;;32648:82;32640:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;32796:1;32786:6;:11;32782:93;;32814:28;32830:4;32836:2;32840:1;32814:15;:28::i;:::-;32857:7;;32782:93;32889:28;32920:24;32938:4;32920:9;:24::i;:::-;32889:55;;32957:12;32996:18;;32972:20;:42;;32957:57;;33045:7;:35;;;;;33069:11;;;;;;;;;;;33045:35;:48;;;;;33084:9;;;;;;;;;;;33083:10;33045:48;:82;;;;;33095:26;:32;33122:4;33095:32;;;;;;;;;;;;;;;;;;;;;;;;;33045:82;:131;;;;;33145:25;:31;33171:4;33145:31;;;;;;;;;;;;;;;;;;;;;;;;;33144:32;33045:131;:178;;;;;33194:25;:29;33220:2;33194:29;;;;;;;;;;;;;;;;;;;;;;;;;33193:30;33045:178;33027:313;;;33262:4;33250:9;;:16;;;;;;;;;;;;;;;;;;33283:11;:9;:11::i;:::-;33323:5;33311:9;;:17;;;;;;;;;;;;;;;;;;33027:313;33352:12;33368:9;;;;;;;;;;;33367:10;33352:25;;33394;:31;33420:4;33394:31;;;;;;;;;;;;;;;;;;;;;;;;;:64;;;;33429:25;:29;33455:2;33429:29;;;;;;;;;;;;;;;;;;;;;;;;;33394:64;33390:112;;;33485:5;33475:15;;33390:112;33514:12;33547:7;33543:1187;;;33599:26;:30;33626:2;33599:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;33649:1;33633:13;;:17;33599:51;33595:986;;;33678:36;33708:5;33678:25;33689:13;;33678:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;33671:43;;33827:13;;33785:17;;33778:4;:24;;;;:::i;:::-;33777:63;;;;:::i;:::-;33733:19;;:107;;;;;;;:::i;:::-;;;;;;;;33953:13;;33911:17;;33904:4;:24;;;;:::i;:::-;33903:63;;;;:::i;:::-;33859:19;;:107;;;;;;;:::i;:::-;;;;;;;;34083:13;;34039:19;;34032:4;:26;;;;:::i;:::-;34031:65;;;;:::i;:::-;33985:21;;:111;;;;;;;:::i;:::-;;;;;;;;33595:986;;;34158:26;:32;34185:4;34158:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;34209:1;34194:12;;:16;34158:52;34154:427;;;34238:35;34267:5;34238:24;34249:12;;34238:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;34231:42;;34343:12;;34323:16;;34316:4;:23;;;;:::i;:::-;34315:40;;;;:::i;:::-;34292:19;;:63;;;;;;;:::i;:::-;;;;;;;;34425:12;;34405:16;;34398:4;:23;;;;:::i;:::-;34397:40;;;;:::i;:::-;34374:19;;:63;;;;;;;:::i;:::-;;;;;;;;34553:12;;34510:18;;34503:4;:25;;;;:::i;:::-;34502:63;;;;:::i;:::-;34456:21;;:109;;;;;;;:::i;:::-;;;;;;;;34154:427;33595:986;34608:1;34601:4;:8;34597:91;;;34630:42;34646:4;34660;34667;34630:15;:42::i;:::-;34597:91;34714:4;34704:14;;;;;:::i;:::-;;;33543:1187;34742:33;34758:4;34764:2;34768:6;34742:15;:33::i;:::-;34802:12;;34786:13;:28;;;;32475:2347;;;;32362:2460;;;;:::o;2256:191::-;2330:16;2349:6;;;;;;;;;;;2330:25;;2375:8;2366:6;;:17;;;;;;;;;;;;;;;;;;2430:8;2399:40;;2420:8;2399:40;;;;;;;;;;;;2319:128;2256:191;:::o;32166:188::-;32285:5;32250:26;:32;32277:4;32250:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;32340:5;32306:40;;32334:4;32306:40;;;;;;;;;;;;32166:188;;:::o;11788:921::-;11935:1;11919:18;;:4;:18;;;11911:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12023:1;12009:16;;:2;:16;;;12001:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;12089:38;12110:4;12116:2;12120:6;12089:20;:38::i;:::-;12140:19;12162:9;:15;12172:4;12162:15;;;;;;;;;;;;;;;;12140:37;;12225:6;12210:11;:21;;12188:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;12376:6;12362:11;:20;12344:9;:15;12354:4;12344:15;;;;;;;;;;;;;;;:38;;;;12590:6;12573:9;:13;12583:2;12573:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12640:2;12625:26;;12634:4;12625:26;;;12644:6;12625:26;;;;;;:::i;:::-;;;;;;;;12664:37;12684:4;12690:2;12694:6;12664:19;:37::i;:::-;11900:809;11788:921;;;:::o;35721:1607::-;35762:23;35788:24;35806:4;35788:9;:24::i;:::-;35762:50;;35823:25;35921:21;;35886:19;;35851;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;35823:119;;35953:12;35980:23;36094:1;36061:17;36025:19;;36007:15;:37;;;;:::i;:::-;36006:72;;;;:::i;:::-;:89;;;;:::i;:::-;35980:115;;36106:26;36135:36;36155:15;36135;:19;;:36;;;;:::i;:::-;36106:65;;36184:25;36212:21;36184:49;;36246:37;36264:18;36246:17;:37::i;:::-;36296:18;36317:44;36343:17;36317:21;:25;;:44;;;;:::i;:::-;36296:65;;36374:23;36400:82;36454:17;36400:35;36415:19;;36400:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;36374:108;;36495:25;36523:84;36579:17;36523:37;36538:21;;36523:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;36495:112;;36620:23;36703:17;36672:15;36646:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;36620:100;;36755:1;36733:19;:23;;;;36789:1;36767:19;:23;;;;36825:1;36801:21;:25;;;;36861:1;36843:15;:19;:42;;;;;36884:1;36866:15;:19;36843:42;36839:280;;;36902:47;36916:15;36933;36902:13;:47::i;:::-;36969:138;37002:18;37039:15;37073:19;;36969:138;;;;;;;;:::i;:::-;;;;;;;;36839:280;37153:17;;;;;;;;;;;37145:31;;37184:17;37145:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37131:75;;;;;37241:15;;;;;;;;;;;37233:29;;37284:21;37233:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37219:101;;;;;35751:1577;;;;;;;;;;35721:1607::o;18517:98::-;18575:7;18606:1;18602;:5;;;;:::i;:::-;18595:12;;18517:98;;;;:::o;18916:::-;18974:7;19005:1;19001;:5;;;;:::i;:::-;18994:12;;18916:98;;;;:::o;14876:125::-;;;;:::o;15009:124::-;;;;:::o;18160:98::-;18218:7;18249:1;18245;:5;;;;:::i;:::-;18238:12;;18160:98;;;;:::o;34830:503::-;34898:21;34936:1;34922:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34898:40;;34967:4;34949;34954:1;34949:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;34993:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34983:4;34988:1;34983:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;35028:62;35045:4;35060:15;35078:11;35028:8;:62::i;:::-;35129:15;:66;;;35210:11;35236:1;35252:4;35279;35299:15;35129:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34887:446;34830:503;:::o;35341:372::-;35424:62;35441:4;35456:15;35474:11;35424:8;:62::i;:::-;35499:15;:31;;;35538:9;35571:4;35591:11;35617:1;35633;35649:15;;;;;;;;;;;35679;35499:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35341:372;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:118::-;5488:24;5506:5;5488:24;:::i;:::-;5483:3;5476:37;5401:118;;:::o;5525:222::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5669:71;5737:1;5726:9;5722:17;5713:6;5669:71;:::i;:::-;5525:222;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:117::-;6292:1;6289;6282:12;6306:180;6354:77;6351:1;6344:88;6451:4;6448:1;6441:15;6475:4;6472:1;6465:15;6492:281;6575:27;6597:4;6575:27;:::i;:::-;6567:6;6563:40;6705:6;6693:10;6690:22;6669:18;6657:10;6654:34;6651:62;6648:88;;;6716:18;;:::i;:::-;6648:88;6756:10;6752:2;6745:22;6535:238;6492:281;;:::o;6779:129::-;6813:6;6840:20;;:::i;:::-;6830:30;;6869:33;6897:4;6889:6;6869:33;:::i;:::-;6779:129;;;:::o;6914:311::-;6991:4;7081:18;7073:6;7070:30;7067:56;;;7103:18;;:::i;:::-;7067:56;7153:4;7145:6;7141:17;7133:25;;7213:4;7207;7203:15;7195:23;;6914:311;;;:::o;7231:117::-;7340:1;7337;7330:12;7371:710;7467:5;7492:81;7508:64;7565:6;7508:64;:::i;:::-;7492:81;:::i;:::-;7483:90;;7593:5;7622:6;7615:5;7608:21;7656:4;7649:5;7645:16;7638:23;;7709:4;7701:6;7697:17;7689:6;7685:30;7738:3;7730:6;7727:15;7724:122;;;7757:79;;:::i;:::-;7724:122;7872:6;7855:220;7889:6;7884:3;7881:15;7855:220;;;7964:3;7993:37;8026:3;8014:10;7993:37;:::i;:::-;7988:3;7981:50;8060:4;8055:3;8051:14;8044:21;;7931:144;7915:4;7910:3;7906:14;7899:21;;7855:220;;;7859:21;7473:608;;7371:710;;;;;:::o;8104:370::-;8175:5;8224:3;8217:4;8209:6;8205:17;8201:27;8191:122;;8232:79;;:::i;:::-;8191:122;8349:6;8336:20;8374:94;8464:3;8456:6;8449:4;8441:6;8437:17;8374:94;:::i;:::-;8365:103;;8181:293;8104:370;;;;:::o;8480:116::-;8550:21;8565:5;8550:21;:::i;:::-;8543:5;8540:32;8530:60;;8586:1;8583;8576:12;8530:60;8480:116;:::o;8602:133::-;8645:5;8683:6;8670:20;8661:29;;8699:30;8723:5;8699:30;:::i;:::-;8602:133;;;;:::o;8741:678::-;8831:6;8839;8888:2;8876:9;8867:7;8863:23;8859:32;8856:119;;;8894:79;;:::i;:::-;8856:119;9042:1;9031:9;9027:17;9014:31;9072:18;9064:6;9061:30;9058:117;;;9094:79;;:::i;:::-;9058:117;9199:78;9269:7;9260:6;9249:9;9245:22;9199:78;:::i;:::-;9189:88;;8985:302;9326:2;9352:50;9394:7;9385:6;9374:9;9370:22;9352:50;:::i;:::-;9342:60;;9297:115;8741:678;;;;;:::o;9425:329::-;9484:6;9533:2;9521:9;9512:7;9508:23;9504:32;9501:119;;;9539:79;;:::i;:::-;9501:119;9659:1;9684:53;9729:7;9720:6;9709:9;9705:22;9684:53;:::i;:::-;9674:63;;9630:117;9425:329;;;;:::o;9760:474::-;9828:6;9836;9885:2;9873:9;9864:7;9860:23;9856:32;9853:119;;;9891:79;;:::i;:::-;9853:119;10011:1;10036:53;10081:7;10072:6;10061:9;10057:22;10036:53;:::i;:::-;10026:63;;9982:117;10138:2;10164:53;10209:7;10200:6;10189:9;10185:22;10164:53;:::i;:::-;10154:63;;10109:118;9760:474;;;;;:::o;10240:180::-;10288:77;10285:1;10278:88;10385:4;10382:1;10375:15;10409:4;10406:1;10399:15;10426:320;10470:6;10507:1;10501:4;10497:12;10487:22;;10554:1;10548:4;10544:12;10575:18;10565:81;;10631:4;10623:6;10619:17;10609:27;;10565:81;10693:2;10685:6;10682:14;10662:18;10659:38;10656:84;;10712:18;;:::i;:::-;10656:84;10477:269;10426:320;;;:::o;10752:222::-;10892:34;10888:1;10880:6;10876:14;10869:58;10961:5;10956:2;10948:6;10944:15;10937:30;10752:222;:::o;10980:366::-;11122:3;11143:67;11207:2;11202:3;11143:67;:::i;:::-;11136:74;;11219:93;11308:3;11219:93;:::i;:::-;11337:2;11332:3;11328:12;11321:19;;10980:366;;;:::o;11352:419::-;11518:4;11556:2;11545:9;11541:18;11533:26;;11605:9;11599:4;11595:20;11591:1;11580:9;11576:17;11569:47;11633:131;11759:4;11633:131;:::i;:::-;11625:139;;11352:419;;;:::o;11777:180::-;11825:77;11822:1;11815:88;11922:4;11919:1;11912:15;11946:4;11943:1;11936:15;11963:180;12011:77;12008:1;12001:88;12108:4;12105:1;12098:15;12132:4;12129:1;12122:15;12149:233;12188:3;12211:24;12229:5;12211:24;:::i;:::-;12202:33;;12257:66;12250:5;12247:77;12244:103;;12327:18;;:::i;:::-;12244:103;12374:1;12367:5;12363:13;12356:20;;12149:233;;;:::o;12388:191::-;12428:3;12447:20;12465:1;12447:20;:::i;:::-;12442:25;;12481:20;12499:1;12481:20;:::i;:::-;12476:25;;12524:1;12521;12517:9;12510:16;;12545:3;12542:1;12539:10;12536:36;;;12552:18;;:::i;:::-;12536:36;12388:191;;;;:::o;12585:224::-;12725:34;12721:1;12713:6;12709:14;12702:58;12794:7;12789:2;12781:6;12777:15;12770:32;12585:224;:::o;12815:366::-;12957:3;12978:67;13042:2;13037:3;12978:67;:::i;:::-;12971:74;;13054:93;13143:3;13054:93;:::i;:::-;13172:2;13167:3;13163:12;13156:19;;12815:366;;;:::o;13187:419::-;13353:4;13391:2;13380:9;13376:18;13368:26;;13440:9;13434:4;13430:20;13426:1;13415:9;13411:17;13404:47;13468:131;13594:4;13468:131;:::i;:::-;13460:139;;13187:419;;;:::o;13612:302::-;13752:34;13748:1;13740:6;13736:14;13729:58;13821:34;13816:2;13808:6;13804:15;13797:59;13890:16;13885:2;13877:6;13873:15;13866:41;13612:302;:::o;13920:366::-;14062:3;14083:67;14147:2;14142:3;14083:67;:::i;:::-;14076:74;;14159:93;14248:3;14159:93;:::i;:::-;14277:2;14272:3;14268:12;14261:19;;13920:366;;;:::o;14292:419::-;14458:4;14496:2;14485:9;14481:18;14473:26;;14545:9;14539:4;14535:20;14531:1;14520:9;14516:17;14509:47;14573:131;14699:4;14573:131;:::i;:::-;14565:139;;14292:419;;;:::o;14717:237::-;14857:34;14853:1;14845:6;14841:14;14834:58;14926:20;14921:2;14913:6;14909:15;14902:45;14717:237;:::o;14960:366::-;15102:3;15123:67;15187:2;15182:3;15123:67;:::i;:::-;15116:74;;15199:93;15288:3;15199:93;:::i;:::-;15317:2;15312:3;15308:12;15301:19;;14960:366;;;:::o;15332:419::-;15498:4;15536:2;15525:9;15521:18;15513:26;;15585:9;15579:4;15575:20;15571:1;15560:9;15556:17;15549:47;15613:131;15739:4;15613:131;:::i;:::-;15605:139;;15332:419;;;:::o;15757:234::-;15897:34;15893:1;15885:6;15881:14;15874:58;15966:17;15961:2;15953:6;15949:15;15942:42;15757:234;:::o;15997:366::-;16139:3;16160:67;16224:2;16219:3;16160:67;:::i;:::-;16153:74;;16236:93;16325:3;16236:93;:::i;:::-;16354:2;16349:3;16345:12;16338:19;;15997:366;;;:::o;16369:419::-;16535:4;16573:2;16562:9;16558:18;16550:26;;16622:9;16616:4;16612:20;16608:1;16597:9;16593:17;16586:47;16650:131;16776:4;16650:131;:::i;:::-;16642:139;;16369:419;;;:::o;16794:232::-;16934:34;16930:1;16922:6;16918:14;16911:58;17003:15;16998:2;16990:6;16986:15;16979:40;16794:232;:::o;17032:366::-;17174:3;17195:67;17259:2;17254:3;17195:67;:::i;:::-;17188:74;;17271:93;17360:3;17271:93;:::i;:::-;17389:2;17384:3;17380:12;17373:19;;17032:366;;;:::o;17404:419::-;17570:4;17608:2;17597:9;17593:18;17585:26;;17657:9;17651:4;17647:20;17643:1;17632:9;17628:17;17621:47;17685:131;17811:4;17685:131;:::i;:::-;17677:139;;17404:419;;;:::o;17829:182::-;17969:34;17965:1;17957:6;17953:14;17946:58;17829:182;:::o;18017:366::-;18159:3;18180:67;18244:2;18239:3;18180:67;:::i;:::-;18173:74;;18256:93;18345:3;18256:93;:::i;:::-;18374:2;18369:3;18365:12;18358:19;;18017:366;;;:::o;18389:419::-;18555:4;18593:2;18582:9;18578:18;18570:26;;18642:9;18636:4;18632:20;18628:1;18617:9;18613:17;18606:47;18670:131;18796:4;18670:131;:::i;:::-;18662:139;;18389:419;;;:::o;18814:179::-;18954:31;18950:1;18942:6;18938:14;18931:55;18814:179;:::o;18999:366::-;19141:3;19162:67;19226:2;19221:3;19162:67;:::i;:::-;19155:74;;19238:93;19327:3;19238:93;:::i;:::-;19356:2;19351:3;19347:12;19340:19;;18999:366;;;:::o;19371:419::-;19537:4;19575:2;19564:9;19560:18;19552:26;;19624:9;19618:4;19614:20;19610:1;19599:9;19595:17;19588:47;19652:131;19778:4;19652:131;:::i;:::-;19644:139;;19371:419;;;:::o;19796:224::-;19936:34;19932:1;19924:6;19920:14;19913:58;20005:7;20000:2;19992:6;19988:15;19981:32;19796:224;:::o;20026:366::-;20168:3;20189:67;20253:2;20248:3;20189:67;:::i;:::-;20182:74;;20265:93;20354:3;20265:93;:::i;:::-;20383:2;20378:3;20374:12;20367:19;;20026:366;;;:::o;20398:419::-;20564:4;20602:2;20591:9;20587:18;20579:26;;20651:9;20645:4;20641:20;20637:1;20626:9;20622:17;20615:47;20679:131;20805:4;20679:131;:::i;:::-;20671:139;;20398:419;;;:::o;20823:222::-;20963:34;20959:1;20951:6;20947:14;20940:58;21032:5;21027:2;21019:6;21015:15;21008:30;20823:222;:::o;21051:366::-;21193:3;21214:67;21278:2;21273:3;21214:67;:::i;:::-;21207:74;;21290:93;21379:3;21290:93;:::i;:::-;21408:2;21403:3;21399:12;21392:19;;21051:366;;;:::o;21423:419::-;21589:4;21627:2;21616:9;21612:18;21604:26;;21676:9;21670:4;21666:20;21662:1;21651:9;21647:17;21640:47;21704:131;21830:4;21704:131;:::i;:::-;21696:139;;21423:419;;;:::o;21848:223::-;21988:34;21984:1;21976:6;21972:14;21965:58;22057:6;22052:2;22044:6;22040:15;22033:31;21848:223;:::o;22077:366::-;22219:3;22240:67;22304:2;22299:3;22240:67;:::i;:::-;22233:74;;22316:93;22405:3;22316:93;:::i;:::-;22434:2;22429:3;22425:12;22418:19;;22077:366;;;:::o;22449:419::-;22615:4;22653:2;22642:9;22638:18;22630:26;;22702:9;22696:4;22692:20;22688:1;22677:9;22673:17;22666:47;22730:131;22856:4;22730:131;:::i;:::-;22722:139;;22449:419;;;:::o;22874:410::-;22914:7;22937:20;22955:1;22937:20;:::i;:::-;22932:25;;22971:20;22989:1;22971:20;:::i;:::-;22966:25;;23026:1;23023;23019:9;23048:30;23066:11;23048:30;:::i;:::-;23037:41;;23227:1;23218:7;23214:15;23211:1;23208:22;23188:1;23181:9;23161:83;23138:139;;23257:18;;:::i;:::-;23138:139;22922:362;22874:410;;;;:::o;23290:180::-;23338:77;23335:1;23328:88;23435:4;23432:1;23425:15;23459:4;23456:1;23449:15;23476:185;23516:1;23533:20;23551:1;23533:20;:::i;:::-;23528:25;;23567:20;23585:1;23567:20;:::i;:::-;23562:25;;23606:1;23596:35;;23611:18;;:::i;:::-;23596:35;23653:1;23650;23646:9;23641:14;;23476:185;;;;:::o;23667:194::-;23707:4;23727:20;23745:1;23727:20;:::i;:::-;23722:25;;23761:20;23779:1;23761:20;:::i;:::-;23756:25;;23805:1;23802;23798:9;23790:17;;23829:1;23823:4;23820:11;23817:37;;;23834:18;;:::i;:::-;23817:37;23667:194;;;;:::o;23867:235::-;24007:34;24003:1;23995:6;23991:14;23984:58;24076:18;24071:2;24063:6;24059:15;24052:43;23867:235;:::o;24108:366::-;24250:3;24271:67;24335:2;24330:3;24271:67;:::i;:::-;24264:74;;24347:93;24436:3;24347:93;:::i;:::-;24465:2;24460:3;24456:12;24449:19;;24108:366;;;:::o;24480:419::-;24646:4;24684:2;24673:9;24669:18;24661:26;;24733:9;24727:4;24723:20;24719:1;24708:9;24704:17;24697:47;24761:131;24887:4;24761:131;:::i;:::-;24753:139;;24480:419;;;:::o;24905:233::-;25045:34;25041:1;25033:6;25029:14;25022:58;25114:16;25109:2;25101:6;25097:15;25090:41;24905:233;:::o;25144:366::-;25286:3;25307:67;25371:2;25366:3;25307:67;:::i;:::-;25300:74;;25383:93;25472:3;25383:93;:::i;:::-;25501:2;25496:3;25492:12;25485:19;;25144:366;;;:::o;25516:419::-;25682:4;25720:2;25709:9;25705:18;25697:26;;25769:9;25763:4;25759:20;25755:1;25744:9;25740:17;25733:47;25797:131;25923:4;25797:131;:::i;:::-;25789:139;;25516:419;;;:::o;25941:236::-;26081:34;26077:1;26069:6;26065:14;26058:58;26150:19;26145:2;26137:6;26133:15;26126:44;25941:236;:::o;26183:366::-;26325:3;26346:67;26410:2;26405:3;26346:67;:::i;:::-;26339:74;;26422:93;26511:3;26422:93;:::i;:::-;26540:2;26535:3;26531:12;26524:19;;26183:366;;;:::o;26555:419::-;26721:4;26759:2;26748:9;26744:18;26736:26;;26808:9;26802:4;26798:20;26794:1;26783:9;26779:17;26772:47;26836:131;26962:4;26836:131;:::i;:::-;26828:139;;26555:419;;;:::o;26980:442::-;27129:4;27167:2;27156:9;27152:18;27144:26;;27180:71;27248:1;27237:9;27233:17;27224:6;27180:71;:::i;:::-;27261:72;27329:2;27318:9;27314:18;27305:6;27261:72;:::i;:::-;27343;27411:2;27400:9;27396:18;27387:6;27343:72;:::i;:::-;26980:442;;;;;;:::o;27428:147::-;27529:11;27566:3;27551:18;;27428:147;;;;:::o;27581:114::-;;:::o;27701:398::-;27860:3;27881:83;27962:1;27957:3;27881:83;:::i;:::-;27874:90;;27973:93;28062:3;27973:93;:::i;:::-;28091:1;28086:3;28082:11;28075:18;;27701:398;;;:::o;28105:379::-;28289:3;28311:147;28454:3;28311:147;:::i;:::-;28304:154;;28475:3;28468:10;;28105:379;;;:::o;28490:143::-;28547:5;28578:6;28572:13;28563:22;;28594:33;28621:5;28594:33;:::i;:::-;28490:143;;;;:::o;28639:351::-;28709:6;28758:2;28746:9;28737:7;28733:23;28729:32;28726:119;;;28764:79;;:::i;:::-;28726:119;28884:1;28909:64;28965:7;28956:6;28945:9;28941:22;28909:64;:::i;:::-;28899:74;;28855:128;28639:351;;;;:::o;28996:85::-;29041:7;29070:5;29059:16;;28996:85;;;:::o;29087:158::-;29145:9;29178:61;29196:42;29205:32;29231:5;29205:32;:::i;:::-;29196:42;:::i;:::-;29178:61;:::i;:::-;29165:74;;29087:158;;;:::o;29251:147::-;29346:45;29385:5;29346:45;:::i;:::-;29341:3;29334:58;29251:147;;:::o;29404:114::-;29471:6;29505:5;29499:12;29489:22;;29404:114;;;:::o;29524:184::-;29623:11;29657:6;29652:3;29645:19;29697:4;29692:3;29688:14;29673:29;;29524:184;;;;:::o;29714:132::-;29781:4;29804:3;29796:11;;29834:4;29829:3;29825:14;29817:22;;29714:132;;;:::o;29852:108::-;29929:24;29947:5;29929:24;:::i;:::-;29924:3;29917:37;29852:108;;:::o;29966:179::-;30035:10;30056:46;30098:3;30090:6;30056:46;:::i;:::-;30134:4;30129:3;30125:14;30111:28;;29966:179;;;;:::o;30151:113::-;30221:4;30253;30248:3;30244:14;30236:22;;30151:113;;;:::o;30300:732::-;30419:3;30448:54;30496:5;30448:54;:::i;:::-;30518:86;30597:6;30592:3;30518:86;:::i;:::-;30511:93;;30628:56;30678:5;30628:56;:::i;:::-;30707:7;30738:1;30723:284;30748:6;30745:1;30742:13;30723:284;;;30824:6;30818:13;30851:63;30910:3;30895:13;30851:63;:::i;:::-;30844:70;;30937:60;30990:6;30937:60;:::i;:::-;30927:70;;30783:224;30770:1;30767;30763:9;30758:14;;30723:284;;;30727:14;31023:3;31016:10;;30424:608;;;30300:732;;;;:::o;31038:831::-;31301:4;31339:3;31328:9;31324:19;31316:27;;31353:71;31421:1;31410:9;31406:17;31397:6;31353:71;:::i;:::-;31434:80;31510:2;31499:9;31495:18;31486:6;31434:80;:::i;:::-;31561:9;31555:4;31551:20;31546:2;31535:9;31531:18;31524:48;31589:108;31692:4;31683:6;31589:108;:::i;:::-;31581:116;;31707:72;31775:2;31764:9;31760:18;31751:6;31707:72;:::i;:::-;31789:73;31857:3;31846:9;31842:19;31833:6;31789:73;:::i;:::-;31038:831;;;;;;;;:::o;31875:807::-;32124:4;32162:3;32151:9;32147:19;32139:27;;32176:71;32244:1;32233:9;32229:17;32220:6;32176:71;:::i;:::-;32257:72;32325:2;32314:9;32310:18;32301:6;32257:72;:::i;:::-;32339:80;32415:2;32404:9;32400:18;32391:6;32339:80;:::i;:::-;32429;32505:2;32494:9;32490:18;32481:6;32429:80;:::i;:::-;32519:73;32587:3;32576:9;32572:19;32563:6;32519:73;:::i;:::-;32602;32670:3;32659:9;32655:19;32646:6;32602:73;:::i;:::-;31875:807;;;;;;;;;:::o;32688:143::-;32745:5;32776:6;32770:13;32761:22;;32792:33;32819:5;32792:33;:::i;:::-;32688:143;;;;:::o;32837:663::-;32925:6;32933;32941;32990:2;32978:9;32969:7;32965:23;32961:32;32958:119;;;32996:79;;:::i;:::-;32958:119;33116:1;33141:64;33197:7;33188:6;33177:9;33173:22;33141:64;:::i;:::-;33131:74;;33087:128;33254:2;33280:64;33336:7;33327:6;33316:9;33312:22;33280:64;:::i;:::-;33270:74;;33225:129;33393:2;33419:64;33475:7;33466:6;33455:9;33451:22;33419:64;:::i;:::-;33409:74;;33364:129;32837:663;;;;;:::o

Swarm Source

ipfs://6df0fc9fb705c993a58d798997d1230f433b93d1eba9dce0ca0b58afd38bf2dd
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.