ETH Price: $3,393.31 (-1.25%)
Gas: 2 Gwei

Token

BEANZ DAO ($BEANZD)
 

Overview

Max Total Supply

1,000,000 $BEANZD

Holders

100

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
4,600 $BEANZD

Value
$0.00
0x02df832f6f4af41c05c8b7e572a70491fe7dd9a0
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:
BEANZD

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-06
*/

/** https://t.me/BEANZD
BEANZD.com
*/
pragma solidity ^0.6.12;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () public {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, 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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: 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 div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: 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 div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

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

/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) public {
        _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 value {ERC20} uses, unless this function is
     * 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 9;
    }

    /**
     * @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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

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

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

    address public constant DEAD_ADDRESS = address(0xdead);
    IUniswapV2Router02 public constant uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    uint256 public buyLiquidityFee = 1;
    uint256 public sellLiquidityFee = 1;
    uint256 public buyTxFee = 7;
    uint256 public sellTxFee = 7;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTax;

    uint256 public _tTotal = 10**6 * 10**9;                         // 1 million
    uint256 public swapAtAmount = _tTotal.mul(10).div(100);       // 0.10% of total supply
    uint256 public maxTxLimit = _tTotal.mul(50).div(100);         // 0.50% of total supply
    uint256 public maxWalletLimit = _tTotal.mul(100).div(100);    // 1.00% of total supply

    address public dev;
    address public uniswapV2Pair;

    uint256 private launchBlock;
    bool private swapping;
    bool public isLaunched;

    // exclude from fees
    mapping (address => bool) public isExcludedFromFees;

    // exclude from max transaction amount
    mapping (address => bool) public isExcludedFromTxLimit;

    // exclude from max wallet limit
    mapping (address => bool) public isExcludedFromWalletLimit;

    // if the account is blacklisted from transacting
    mapping (address => bool) public isBlacklisted;


    constructor(address _dev) public ERC20("BEANZ DAO", "$BEANZD") {

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        _approve(address(this), address(uniswapV2Router), type(uint256).max);


        // exclude from fees, wallet limit and transaction limit
        excludeFromAllLimits(owner(), true);
        excludeFromAllLimits(address(this), true);
        excludeFromWalletLimit(uniswapV2Pair, true);

        dev = _dev;

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), _tTotal);
    }

    function excludeFromFees(address account, bool value) public onlyOwner() {
        require(isExcludedFromFees[account] != value, "Fees: Already set to this value");
        isExcludedFromFees[account] = value;
    }

    function excludeFromTxLimit(address account, bool value) public onlyOwner() {
        require(isExcludedFromTxLimit[account] != value, "TxLimit: Already set to this value");
        isExcludedFromTxLimit[account] = value;
    }

    function excludeFromWalletLimit(address account, bool value) public onlyOwner() {
        require(isExcludedFromWalletLimit[account] != value, "WalletLimit: Already set to this value");
        isExcludedFromWalletLimit[account] = value;
    }

    function excludeFromAllLimits(address account, bool value) public onlyOwner() {
        excludeFromFees(account, value);
        excludeFromTxLimit(account, value);
        excludeFromWalletLimit(account, value);
    }

    function setBuyFee(uint256 liquidityFee, uint256 txFee) external onlyOwner() {
        buyLiquidityFee = liquidityFee;
        buyTxFee = txFee;
    }

    function setSellFee(uint256 liquidityFee, uint256 txFee) external onlyOwner() {
        sellLiquidityFee = liquidityFee;
        sellTxFee = txFee;
    }

    function setMaxTxLimit(uint256 newLimit) external onlyOwner() {
        maxTxLimit = newLimit * (10**9);
    }

    function setMaxWalletLimit(uint256 newLimit) external onlyOwner() {
        maxWalletLimit = newLimit * (10**9);
    }

    function setSwapAtAmount(uint256 amountToSwap) external onlyOwner() {
        swapAtAmount = amountToSwap * (10**9);
    }

    function updateDevWallet(address newWallet) external onlyOwner() {
        dev = newWallet;
    }

    function addBlacklist(address account) external onlyOwner() {
        require(!isBlacklisted[account], "Blacklist: Already blacklisted");
        require(account != uniswapV2Pair, "Cannot blacklist pair");
        _setBlacklist(account, true);
    }

    function removeBlacklist(address account) external onlyOwner() {
        require(isBlacklisted[account], "Blacklist: Not blacklisted");
        _setBlacklist(account, false);
    }

    function launchNow() external onlyOwner() {
        require(!isLaunched, "Contract is already launched");
        isLaunched = true;
        launchBlock = block.number;
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), "transfer from the zero address");
        require(to != address(0), "transfer to the zero address");
        require(amount <= maxTxLimit || isExcludedFromTxLimit[from] || isExcludedFromTxLimit[to], "Tx Amount too large");
        require(balanceOf(to).add(amount) <= maxWalletLimit || isExcludedFromWalletLimit[to], "Transfer will exceed wallet limit");
        require(isLaunched || isExcludedFromFees[from] || isExcludedFromFees[to], "Waiting to go live");
        require(!isBlacklisted[from], "Sender is blacklisted");

        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        uint256 totalTokensForFee = tokensForLiquidity + tokensForTax;
        bool canSwap = totalTokensForFee >= swapAtAmount;

        if(
            from != uniswapV2Pair &&
            canSwap &&
            !swapping
        ) {
            swapping = true;
            swapBack(totalTokensForFee);
            swapping = false;
        } else if(
            from == uniswapV2Pair &&
            to != uniswapV2Pair &&
            block.number < launchBlock + 1 &&
            !isExcludedFromFees[to]
        ) {
            _setBlacklist(to, true);
        }

        bool takeFee = !swapping;

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

        if(takeFee) {
            uint256 fees;
            // on sell
            if (to == uniswapV2Pair) {
                uint256 sellTotalFees = sellLiquidityFee.add(sellTxFee);
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = tokensForLiquidity.add(fees.mul(sellLiquidityFee).div(sellTotalFees));
                tokensForTax = tokensForTax.add(fees.mul(sellTxFee).div(sellTotalFees));
            }
            // on buy & wallet transfers
            else {
                uint256 buyTotalFees = buyLiquidityFee.add(buyTxFee);
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = tokensForLiquidity.add(fees.mul(buyLiquidityFee).div(buyTotalFees));
                tokensForTax = tokensForTax.add(fees.mul(buyTxFee).div(buyTotalFees));
            }

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

        super._transfer(from, to, amount);
    }

    function swapBack(uint256 totalTokensForFee) private {
        uint256 toSwap = swapAtAmount;

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = toSwap.mul(tokensForLiquidity).div(totalTokensForFee).div(2);
        uint256 taxTokens = toSwap.sub(liquidityTokens).sub(liquidityTokens);
        uint256 amountToSwapForETH = toSwap.sub(liquidityTokens);

        _swapTokensForETH(amountToSwapForETH);

        uint256 ethBalance = address(this).balance;
        uint256 ethForTax = ethBalance.mul(taxTokens).div(amountToSwapForETH);
        uint256 ethForLiquidity = ethBalance.sub(ethForTax);

        tokensForLiquidity = tokensForLiquidity.sub(liquidityTokens.mul(2));
        tokensForTax = tokensForTax.sub(toSwap.sub(liquidityTokens.mul(2)));

        payable(address(dev)).transfer(ethForTax);
        _addLiquidity(liquidityTokens, ethForLiquidity);
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {

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

    function _swapTokensForETH(uint256 tokenAmount) private {

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _setBlacklist(address account, bool value) internal {
        isBlacklisted[account] = value;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_dev","type":"address"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBlacklist","outputs":[],"stateMutability":"nonpayable","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":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dev","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromWalletLimit","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":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTxLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"txFee","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setMaxTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"txFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToSwap","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAtAmount","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":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600160065560016007556007600855600760095566038d7ea4c68000600c556200005a606462000046600a600c54620005b560201b62002b061790919060201c565b6200064060201b62002b8c1790919060201c565b600d55620000946064620000806032600c54620005b560201b62002b061790919060201c565b6200064060201b62002b8c1790919060201c565b600e55620000ce6064620000ba6064600c54620005b560201b62002b061790919060201c565b6200064060201b62002b8c1790919060201c565b600f55348015620000de57600080fd5b506040516200589a3803806200589a833981810160405260208110156200010457600080fd5b81019080805190602001909291905050506040518060400160405280600981526020017f4245414e5a2044414f00000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f244245414e5a4400000000000000000000000000000000000000000000000000815250816003908051906020019062000199929190620012aa565b508060049080519060200190620001b2929190620012aa565b5050506000620001c76200069260201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002c157600080fd5b505afa158015620002d6573d6000803e3d6000fd5b505050506040513d6020811015620002ed57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200037557600080fd5b505afa1580156200038a573d6000803e3d6000fd5b505050506040513d6020811015620003a157600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200041c57600080fd5b505af115801562000431573d6000803e3d6000fd5b505050506040513d60208110156200044857600080fd5b8101908080519060200190929190505050601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004e030737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200069a60201b60201c565b62000502620004f46200089560201b60201c565b6001620008bf60201b60201c565b62000515306001620008bf60201b60201c565b6200054a601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620009cc60201b60201c565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005ae6200059f6200089560201b60201c565b600c5462000ba560201b60201c565b5062001350565b600080831415620005ca57600090506200063a565b6000828402905082848281620005dc57fe5b041462000635576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806200582f6021913960400191505060405180910390fd5b809150505b92915050565b60006200068a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525062000d8360201b60201c565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180620058506024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620007aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620057eb6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008cf6200069260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000992576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b620009a4828262000e4e60201b60201c565b620009b682826200104360201b60201c565b620009c88282620009cc60201b60201c565b5050565b620009dc6200069260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000a9f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141562000b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180620058746026913960400191505060405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000c49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000c5d600083836200121c60201b60201c565b62000c79816002546200122160201b62002bd61790919060201c565b60028190555062000cd7816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200122160201b62002bd61790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000808311829062000e33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000df757808201518184015260208101905062000dda565b50505050905090810190601f16801562000e255780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858162000e4057fe5b049050809150509392505050565b62000e5e6200069260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000f21576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141562000fe8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f466565733a20416c72656164792073657420746f20746869732076616c75650081525060200191505060405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b620010536200069260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462001116576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415620011c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806200580d6022913960400191505060405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b505050565b600080828401905083811015620012a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620012ed57805160ff19168380011785556200131e565b828001600101855582156200131e579182015b828111156200131d57825182559160200191906001019062001300565b5b5090506200132d919062001331565b5090565b5b808211156200134c57600081600090555060010162001332565b5090565b61448b80620013606000396000f3fe6080604052600436106102815760003560e01c80638036d5901161014f578063bf95793d116100c1578063eb91e6511161007a578063eb91e65114610e7e578063f11a24d314610ecf578063f2fde38b14610efa578063f637434214610f4b578063fb0ecfa414610f76578063fe575a8714610fbb57610288565b8063bf95793d14610c50578063c024666814610cb7578063cd49513f14610d14578063dd62ed3e14610d71578063e16830a814610df6578063e9b786cb14610e5357610288565b806395d89b411161011357806395d89b41146109fb5780639cfe42da14610a8b578063a457c2d714610adc578063a9059cbb14610b4d578063af465a2714610bbe578063b40f946914610be957610288565b80638036d590146108f857806386917524146109235780638da5cb5b1461094e578063904236d11461098f57806391cca3db146109ba57610288565b806349bd5a5e116101f35780636ac9a870116101ac5780636ac9a870146107ba5780636d7adcad146107ff57806370a082311461082a578063715018a61461088f578063715492aa146108a6578063728d41c9146108bd57610288565b806349bd5a5e146106305780634e6fd6c4146106715780634fbee193146106b25780636402511e1461071957806364f5a5bb1461075457806366a88d961461078f57610288565b80631a8145bb116102455780631a8145bb1461044b57806323b872dd1461047657806330280a7114610507578063307aebc914610564578063313ce5671461059157806339509351146105bf57610288565b806306fdde031461028d578063095ea7b31461031d5780631694505e1461038e57806318160ddd146103cf5780631816467f146103fa57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2611022565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102e25780820151818401526020810190506102c7565b50505050905090810190601f16801561030f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032957600080fd5b506103766004803603604081101561034057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110c4565b60405180821515815260200191505060405180910390f35b34801561039a57600080fd5b506103a36110e2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103db57600080fd5b506103e46110fa565b6040518082815260200191505060405180910390f35b34801561040657600080fd5b506104496004803603602081101561041d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611104565b005b34801561045757600080fd5b50610460611212565b6040518082815260200191505060405180910390f35b34801561048257600080fd5b506104ef6004803603606081101561049957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611218565b60405180821515815260200191505060405180910390f35b34801561051357600080fd5b506105626004803603604081101561052a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506112f1565b005b34801561057057600080fd5b506105796114bf565b60405180821515815260200191505060405180910390f35b34801561059d57600080fd5b506105a66114d2565b604051808260ff16815260200191505060405180910390f35b3480156105cb57600080fd5b50610618600480360360408110156105e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114db565b60405180821515815260200191505060405180910390f35b34801561063c57600080fd5b5061064561158e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561067d57600080fd5b506106866115b4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106be57600080fd5b50610701600480360360208110156106d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115ba565b60405180821515815260200191505060405180910390f35b34801561072557600080fd5b506107526004803603602081101561073c57600080fd5b81019080803590602001909291905050506115da565b005b34801561076057600080fd5b5061078d6004803603602081101561077757600080fd5b81019080803590602001909291905050506116b4565b005b34801561079b57600080fd5b506107a461178e565b6040518082815260200191505060405180910390f35b3480156107c657600080fd5b506107fd600480360360408110156107dd57600080fd5b810190808035906020019092919080359060200190929190505050611794565b005b34801561080b57600080fd5b50610814611870565b6040518082815260200191505060405180910390f35b34801561083657600080fd5b506108796004803603602081101561084d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611876565b6040518082815260200191505060405180910390f35b34801561089b57600080fd5b506108a46118be565b005b3480156108b257600080fd5b506108bb611a49565b005b3480156108c957600080fd5b506108f6600480360360208110156108e057600080fd5b8101908080359060200190929190505050611bba565b005b34801561090457600080fd5b5061090d611c94565b6040518082815260200191505060405180910390f35b34801561092f57600080fd5b50610938611c9a565b6040518082815260200191505060405180910390f35b34801561095a57600080fd5b50610963611ca0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561099b57600080fd5b506109a4611cca565b6040518082815260200191505060405180910390f35b3480156109c657600080fd5b506109cf611cd0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a0757600080fd5b50610a10611cf6565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a50578082015181840152602081019050610a35565b50505050905090810190601f168015610a7d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a9757600080fd5b50610ada60048036036020811015610aae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d98565b005b348015610ae857600080fd5b50610b3560048036036040811015610aff57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ff4565b60405180821515815260200191505060405180910390f35b348015610b5957600080fd5b50610ba660048036036040811015610b7057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506120c1565b60405180821515815260200191505060405180910390f35b348015610bca57600080fd5b50610bd36120df565b6040518082815260200191505060405180910390f35b348015610bf557600080fd5b50610c3860048036036020811015610c0c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120e5565b60405180821515815260200191505060405180910390f35b348015610c5c57600080fd5b50610c9f60048036036020811015610c7357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612105565b60405180821515815260200191505060405180910390f35b348015610cc357600080fd5b50610d1260048036036040811015610cda57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612125565b005b348015610d2057600080fd5b50610d6f60048036036040811015610d3757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612310565b005b348015610d7d57600080fd5b50610de060048036036040811015610d9457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123fc565b6040518082815260200191505060405180910390f35b348015610e0257600080fd5b50610e5160048036036040811015610e1957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612483565b005b348015610e5f57600080fd5b50610e68612651565b6040518082815260200191505060405180910390f35b348015610e8a57600080fd5b50610ecd60048036036020811015610ea157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612657565b005b348015610edb57600080fd5b50610ee46127ee565b6040518082815260200191505060405180910390f35b348015610f0657600080fd5b50610f4960048036036020811015610f1d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127f4565b005b348015610f5757600080fd5b50610f60612a04565b6040518082815260200191505060405180910390f35b348015610f8257600080fd5b50610fb960048036036040811015610f9957600080fd5b810190808035906020019092919080359060200190929190505050612a0a565b005b348015610fc757600080fd5b5061100a60048036036020811015610fde57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612ae6565b60405180821515815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110ba5780601f1061108f576101008083540402835291602001916110ba565b820191906000526020600020905b81548152906001019060200180831161109d57829003601f168201915b5050505050905090565b60006110d86110d1612c5e565b8484612c66565b6001905092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b61110c612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b6000611225848484612e5d565b6112e684611231612c5e565b6112e18560405180606001604052806028815260200161437960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611297612c5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138759092919063ffffffff16565b612c66565b600190509392505050565b6112f9612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611464576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806143366022913960400191505060405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b601360019054906101000a900460ff1681565b60006009905090565b60006115846114e8612c5e565b8461157f85600160006114f9612c5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bd690919063ffffffff16565b612c66565b6001905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61dead81565b60146020528060005260406000206000915054906101000a900460ff1681565b6115e2612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca008102600d8190555050565b6116bc612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461177e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca008102600e8190555050565b600f5481565b61179c612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461185e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600781905550806009819055505050565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118c6612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611988576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611a51612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601360019054906101000a900460ff1615611b96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f436f6e747261637420697320616c7265616479206c61756e636865640000000081525060200191505060405180910390fd5b6001601360016101000a81548160ff02191690831515021790555043601281905550565b611bc2612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c84576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca008102600f8190555050565b600e5481565b600d5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d8e5780601f10611d6357610100808354040283529160200191611d8e565b820191906000526020600020905b815481529060010190602001808311611d7157829003601f168201915b5050505050905090565b611da0612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f22576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f426c61636b6c6973743a20416c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fe6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f43616e6e6f7420626c61636b6c6973742070616972000000000000000000000081525060200191505060405180910390fd5b611ff1816001613935565b50565b60006120b7612001612c5e565b846120b285604051806060016040528060258152602001614431602591396001600061202b612c5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138759092919063ffffffff16565b612c66565b6001905092915050565b60006120d56120ce612c5e565b8484612e5d565b6001905092915050565b600c5481565b60166020528060005260406000206000915054906101000a900460ff1681565b60156020528060005260406000206000915054906101000a900460ff1681565b61212d612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156122b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f466565733a20416c72656164792073657420746f20746869732076616c75650081525060200191505060405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612318612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6123e48282612125565b6123ee82826112f1565b6123f88282612483565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61248b612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461254d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156125f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061440b6026913960400191505060405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60085481565b61265f612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612721576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166127e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f426c61636b6c6973743a204e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b6127eb816000613935565b50565b60065481565b6127fc612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612944576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806142c86026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60075481565b612a12612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ad4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600681905550806008819055505050565b60176020528060005260406000206000915054906101000a900460ff1681565b600080831415612b195760009050612b86565b6000828402905082848281612b2a57fe5b0414612b81576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143586021913960400191505060405180910390fd5b809150505b92915050565b6000612bce83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613990565b905092915050565b600080828401905083811015612c54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806143e76024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d72576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806142ee6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f7472616e736665722066726f6d20746865207a65726f2061646472657373000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fa3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f7472616e7366657220746f20746865207a65726f20616464726573730000000081525060200191505060405180910390fd5b600e5481111580612ffd5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806130515750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6130c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f547820416d6f756e7420746f6f206c617267650000000000000000000000000081525060200191505060405180910390fd5b600f546130e1826130d385611876565b612bd690919063ffffffff16565b1115806131375750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61318c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143a16021913960400191505060405180910390fd5b601360019054906101000a900460ff16806131f05750601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806132445750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6132b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f57616974696e6720746f20676f206c697665000000000000000000000000000081525060200191505060405180910390fd5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613376576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f53656e64657220697320626c61636b6c6973746564000000000000000000000081525060200191505060405180910390fd5b60008114156133905761338b83836000613a56565b613870565b6000600b54600a540190506000600d548210159050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156134005750805b80156134195750601360009054906101000a900460ff16155b15613462576001601360006101000a81548160ff02191690831515021790555061344282613d17565b6000601360006101000a81548160ff021916908315150217905550613585565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561350d5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561351d575060016012540143105b80156135735750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561358457613583846001613935565b5b5b6000601360009054906101000a900460ff16159050601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061363b5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561364557600090505b8015613861576000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561376e5760006136bc600954600754612bd690919063ffffffff16565b90506136e460646136d68389612b0690919063ffffffff16565b612b8c90919063ffffffff16565b91506137216137108261370260075486612b0690919063ffffffff16565b612b8c90919063ffffffff16565b600a54612bd690919063ffffffff16565b600a819055506137626137518261374360095486612b0690919063ffffffff16565b612b8c90919063ffffffff16565b600b54612bd690919063ffffffff16565b600b8190555050613835565b6000613787600854600654612bd690919063ffffffff16565b90506137af60646137a18389612b0690919063ffffffff16565b612b8c90919063ffffffff16565b91506137ec6137db826137cd60065486612b0690919063ffffffff16565b612b8c90919063ffffffff16565b600a54612bd690919063ffffffff16565b600a8190555061382d61381c8261380e60085486612b0690919063ffffffff16565b612b8c90919063ffffffff16565b600b54612bd690919063ffffffff16565b600b81905550505b600081111561385f57613849873083613a56565b61385c8186613ed590919063ffffffff16565b94505b505b61386c868686613a56565b5050505b505050565b6000838311158290613922576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156138e75780820151818401526020810190506138cc565b50505050905090810190601f1680156139145780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008083118290613a3c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a015780820151818401526020810190506139e6565b50505050905090810190601f168015613a2e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613a4857fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613adc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806143c26025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806142a56023913960400191505060405180910390fd5b613b6d838383613f1f565b613bd881604051806060016040528060268152602001614310602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138759092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c6b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bd690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000600d5490506000613d5a6002613d4c85613d3e600a5487612b0690919063ffffffff16565b612b8c90919063ffffffff16565b612b8c90919063ffffffff16565b90506000613d8382613d758486613ed590919063ffffffff16565b613ed590919063ffffffff16565b90506000613d9a8385613ed590919063ffffffff16565b9050613da581613f24565b60004790506000613dd183613dc38685612b0690919063ffffffff16565b612b8c90919063ffffffff16565b90506000613de88284613ed590919063ffffffff16565b9050613e12613e01600288612b0690919063ffffffff16565b600a54613ed590919063ffffffff16565b600a81905550613e52613e41613e32600289612b0690919063ffffffff16565b89613ed590919063ffffffff16565b600b54613ed590919063ffffffff16565b600b81905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015613ec0573d6000803e3d6000fd5b50613ecb868261418f565b5050505050505050565b6000613f1783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613875565b905092915050565b505050565b6060600267ffffffffffffffff81118015613f3e57600080fd5b50604051908082528060200260200182016040528015613f6d5781602001602082028036833780820191505090505b5090503081600081518110613f7e57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561401257600080fd5b505afa158015614026573d6000803e3d6000fd5b505050506040513d602081101561403c57600080fd5b81019080805190602001909291905050508160018151811061405a57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561414a57808201518184015260208101905061412f565b505050509050019650505050505050600060405180830381600087803b15801561417357600080fd5b505af1158015614187573d6000803e3d6000fd5b505050505050565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561424d57600080fd5b505af1158015614261573d6000803e3d6000fd5b50505050506040513d606081101561427857600080fd5b81019080805190602001909291908051906020019092919080519060200190929190505050505050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554784c696d69743a20416c72656164792073657420746f20746869732076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e736665722077696c6c206578636565642077616c6c6574206c696d697445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357616c6c65744c696d69743a20416c72656164792073657420746f20746869732076616c756545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209906b1007e2fda09d17102ee12a6d61ef279bcc00b07793a8c44d53d7bdaabbf64736f6c634300060c003345524332303a20617070726f766520746f20746865207a65726f206164647265737354784c696d69743a20416c72656164792073657420746f20746869732076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357616c6c65744c696d69743a20416c72656164792073657420746f20746869732076616c7565000000000000000000000000261b7f87027b94701a2dde462595a94f598e956c

Deployed Bytecode

0x6080604052600436106102815760003560e01c80638036d5901161014f578063bf95793d116100c1578063eb91e6511161007a578063eb91e65114610e7e578063f11a24d314610ecf578063f2fde38b14610efa578063f637434214610f4b578063fb0ecfa414610f76578063fe575a8714610fbb57610288565b8063bf95793d14610c50578063c024666814610cb7578063cd49513f14610d14578063dd62ed3e14610d71578063e16830a814610df6578063e9b786cb14610e5357610288565b806395d89b411161011357806395d89b41146109fb5780639cfe42da14610a8b578063a457c2d714610adc578063a9059cbb14610b4d578063af465a2714610bbe578063b40f946914610be957610288565b80638036d590146108f857806386917524146109235780638da5cb5b1461094e578063904236d11461098f57806391cca3db146109ba57610288565b806349bd5a5e116101f35780636ac9a870116101ac5780636ac9a870146107ba5780636d7adcad146107ff57806370a082311461082a578063715018a61461088f578063715492aa146108a6578063728d41c9146108bd57610288565b806349bd5a5e146106305780634e6fd6c4146106715780634fbee193146106b25780636402511e1461071957806364f5a5bb1461075457806366a88d961461078f57610288565b80631a8145bb116102455780631a8145bb1461044b57806323b872dd1461047657806330280a7114610507578063307aebc914610564578063313ce5671461059157806339509351146105bf57610288565b806306fdde031461028d578063095ea7b31461031d5780631694505e1461038e57806318160ddd146103cf5780631816467f146103fa57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2611022565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102e25780820151818401526020810190506102c7565b50505050905090810190601f16801561030f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032957600080fd5b506103766004803603604081101561034057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110c4565b60405180821515815260200191505060405180910390f35b34801561039a57600080fd5b506103a36110e2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103db57600080fd5b506103e46110fa565b6040518082815260200191505060405180910390f35b34801561040657600080fd5b506104496004803603602081101561041d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611104565b005b34801561045757600080fd5b50610460611212565b6040518082815260200191505060405180910390f35b34801561048257600080fd5b506104ef6004803603606081101561049957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611218565b60405180821515815260200191505060405180910390f35b34801561051357600080fd5b506105626004803603604081101561052a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506112f1565b005b34801561057057600080fd5b506105796114bf565b60405180821515815260200191505060405180910390f35b34801561059d57600080fd5b506105a66114d2565b604051808260ff16815260200191505060405180910390f35b3480156105cb57600080fd5b50610618600480360360408110156105e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114db565b60405180821515815260200191505060405180910390f35b34801561063c57600080fd5b5061064561158e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561067d57600080fd5b506106866115b4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106be57600080fd5b50610701600480360360208110156106d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115ba565b60405180821515815260200191505060405180910390f35b34801561072557600080fd5b506107526004803603602081101561073c57600080fd5b81019080803590602001909291905050506115da565b005b34801561076057600080fd5b5061078d6004803603602081101561077757600080fd5b81019080803590602001909291905050506116b4565b005b34801561079b57600080fd5b506107a461178e565b6040518082815260200191505060405180910390f35b3480156107c657600080fd5b506107fd600480360360408110156107dd57600080fd5b810190808035906020019092919080359060200190929190505050611794565b005b34801561080b57600080fd5b50610814611870565b6040518082815260200191505060405180910390f35b34801561083657600080fd5b506108796004803603602081101561084d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611876565b6040518082815260200191505060405180910390f35b34801561089b57600080fd5b506108a46118be565b005b3480156108b257600080fd5b506108bb611a49565b005b3480156108c957600080fd5b506108f6600480360360208110156108e057600080fd5b8101908080359060200190929190505050611bba565b005b34801561090457600080fd5b5061090d611c94565b6040518082815260200191505060405180910390f35b34801561092f57600080fd5b50610938611c9a565b6040518082815260200191505060405180910390f35b34801561095a57600080fd5b50610963611ca0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561099b57600080fd5b506109a4611cca565b6040518082815260200191505060405180910390f35b3480156109c657600080fd5b506109cf611cd0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a0757600080fd5b50610a10611cf6565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a50578082015181840152602081019050610a35565b50505050905090810190601f168015610a7d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a9757600080fd5b50610ada60048036036020811015610aae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d98565b005b348015610ae857600080fd5b50610b3560048036036040811015610aff57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ff4565b60405180821515815260200191505060405180910390f35b348015610b5957600080fd5b50610ba660048036036040811015610b7057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506120c1565b60405180821515815260200191505060405180910390f35b348015610bca57600080fd5b50610bd36120df565b6040518082815260200191505060405180910390f35b348015610bf557600080fd5b50610c3860048036036020811015610c0c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120e5565b60405180821515815260200191505060405180910390f35b348015610c5c57600080fd5b50610c9f60048036036020811015610c7357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612105565b60405180821515815260200191505060405180910390f35b348015610cc357600080fd5b50610d1260048036036040811015610cda57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612125565b005b348015610d2057600080fd5b50610d6f60048036036040811015610d3757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612310565b005b348015610d7d57600080fd5b50610de060048036036040811015610d9457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123fc565b6040518082815260200191505060405180910390f35b348015610e0257600080fd5b50610e5160048036036040811015610e1957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612483565b005b348015610e5f57600080fd5b50610e68612651565b6040518082815260200191505060405180910390f35b348015610e8a57600080fd5b50610ecd60048036036020811015610ea157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612657565b005b348015610edb57600080fd5b50610ee46127ee565b6040518082815260200191505060405180910390f35b348015610f0657600080fd5b50610f4960048036036020811015610f1d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127f4565b005b348015610f5757600080fd5b50610f60612a04565b6040518082815260200191505060405180910390f35b348015610f8257600080fd5b50610fb960048036036040811015610f9957600080fd5b810190808035906020019092919080359060200190929190505050612a0a565b005b348015610fc757600080fd5b5061100a60048036036020811015610fde57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612ae6565b60405180821515815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110ba5780601f1061108f576101008083540402835291602001916110ba565b820191906000526020600020905b81548152906001019060200180831161109d57829003601f168201915b5050505050905090565b60006110d86110d1612c5e565b8484612c66565b6001905092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b61110c612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b6000611225848484612e5d565b6112e684611231612c5e565b6112e18560405180606001604052806028815260200161437960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611297612c5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138759092919063ffffffff16565b612c66565b600190509392505050565b6112f9612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611464576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806143366022913960400191505060405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b601360019054906101000a900460ff1681565b60006009905090565b60006115846114e8612c5e565b8461157f85600160006114f9612c5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bd690919063ffffffff16565b612c66565b6001905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61dead81565b60146020528060005260406000206000915054906101000a900460ff1681565b6115e2612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca008102600d8190555050565b6116bc612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461177e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca008102600e8190555050565b600f5481565b61179c612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461185e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600781905550806009819055505050565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118c6612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611988576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611a51612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601360019054906101000a900460ff1615611b96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f436f6e747261637420697320616c7265616479206c61756e636865640000000081525060200191505060405180910390fd5b6001601360016101000a81548160ff02191690831515021790555043601281905550565b611bc2612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c84576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca008102600f8190555050565b600e5481565b600d5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d8e5780601f10611d6357610100808354040283529160200191611d8e565b820191906000526020600020905b815481529060010190602001808311611d7157829003601f168201915b5050505050905090565b611da0612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f22576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f426c61636b6c6973743a20416c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fe6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f43616e6e6f7420626c61636b6c6973742070616972000000000000000000000081525060200191505060405180910390fd5b611ff1816001613935565b50565b60006120b7612001612c5e565b846120b285604051806060016040528060258152602001614431602591396001600061202b612c5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138759092919063ffffffff16565b612c66565b6001905092915050565b60006120d56120ce612c5e565b8484612e5d565b6001905092915050565b600c5481565b60166020528060005260406000206000915054906101000a900460ff1681565b60156020528060005260406000206000915054906101000a900460ff1681565b61212d612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156122b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f466565733a20416c72656164792073657420746f20746869732076616c75650081525060200191505060405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612318612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6123e48282612125565b6123ee82826112f1565b6123f88282612483565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61248b612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461254d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156125f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061440b6026913960400191505060405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60085481565b61265f612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612721576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166127e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f426c61636b6c6973743a204e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b6127eb816000613935565b50565b60065481565b6127fc612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612944576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806142c86026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60075481565b612a12612c5e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ad4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600681905550806008819055505050565b60176020528060005260406000206000915054906101000a900460ff1681565b600080831415612b195760009050612b86565b6000828402905082848281612b2a57fe5b0414612b81576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143586021913960400191505060405180910390fd5b809150505b92915050565b6000612bce83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613990565b905092915050565b600080828401905083811015612c54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806143e76024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d72576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806142ee6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f7472616e736665722066726f6d20746865207a65726f2061646472657373000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fa3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f7472616e7366657220746f20746865207a65726f20616464726573730000000081525060200191505060405180910390fd5b600e5481111580612ffd5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806130515750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6130c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f547820416d6f756e7420746f6f206c617267650000000000000000000000000081525060200191505060405180910390fd5b600f546130e1826130d385611876565b612bd690919063ffffffff16565b1115806131375750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61318c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143a16021913960400191505060405180910390fd5b601360019054906101000a900460ff16806131f05750601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806132445750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6132b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f57616974696e6720746f20676f206c697665000000000000000000000000000081525060200191505060405180910390fd5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613376576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f53656e64657220697320626c61636b6c6973746564000000000000000000000081525060200191505060405180910390fd5b60008114156133905761338b83836000613a56565b613870565b6000600b54600a540190506000600d548210159050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156134005750805b80156134195750601360009054906101000a900460ff16155b15613462576001601360006101000a81548160ff02191690831515021790555061344282613d17565b6000601360006101000a81548160ff021916908315150217905550613585565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561350d5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561351d575060016012540143105b80156135735750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561358457613583846001613935565b5b5b6000601360009054906101000a900460ff16159050601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061363b5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561364557600090505b8015613861576000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561376e5760006136bc600954600754612bd690919063ffffffff16565b90506136e460646136d68389612b0690919063ffffffff16565b612b8c90919063ffffffff16565b91506137216137108261370260075486612b0690919063ffffffff16565b612b8c90919063ffffffff16565b600a54612bd690919063ffffffff16565b600a819055506137626137518261374360095486612b0690919063ffffffff16565b612b8c90919063ffffffff16565b600b54612bd690919063ffffffff16565b600b8190555050613835565b6000613787600854600654612bd690919063ffffffff16565b90506137af60646137a18389612b0690919063ffffffff16565b612b8c90919063ffffffff16565b91506137ec6137db826137cd60065486612b0690919063ffffffff16565b612b8c90919063ffffffff16565b600a54612bd690919063ffffffff16565b600a8190555061382d61381c8261380e60085486612b0690919063ffffffff16565b612b8c90919063ffffffff16565b600b54612bd690919063ffffffff16565b600b81905550505b600081111561385f57613849873083613a56565b61385c8186613ed590919063ffffffff16565b94505b505b61386c868686613a56565b5050505b505050565b6000838311158290613922576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156138e75780820151818401526020810190506138cc565b50505050905090810190601f1680156139145780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008083118290613a3c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a015780820151818401526020810190506139e6565b50505050905090810190601f168015613a2e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613a4857fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613adc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806143c26025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806142a56023913960400191505060405180910390fd5b613b6d838383613f1f565b613bd881604051806060016040528060268152602001614310602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138759092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c6b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bd690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000600d5490506000613d5a6002613d4c85613d3e600a5487612b0690919063ffffffff16565b612b8c90919063ffffffff16565b612b8c90919063ffffffff16565b90506000613d8382613d758486613ed590919063ffffffff16565b613ed590919063ffffffff16565b90506000613d9a8385613ed590919063ffffffff16565b9050613da581613f24565b60004790506000613dd183613dc38685612b0690919063ffffffff16565b612b8c90919063ffffffff16565b90506000613de88284613ed590919063ffffffff16565b9050613e12613e01600288612b0690919063ffffffff16565b600a54613ed590919063ffffffff16565b600a81905550613e52613e41613e32600289612b0690919063ffffffff16565b89613ed590919063ffffffff16565b600b54613ed590919063ffffffff16565b600b81905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015613ec0573d6000803e3d6000fd5b50613ecb868261418f565b5050505050505050565b6000613f1783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613875565b905092915050565b505050565b6060600267ffffffffffffffff81118015613f3e57600080fd5b50604051908082528060200260200182016040528015613f6d5781602001602082028036833780820191505090505b5090503081600081518110613f7e57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561401257600080fd5b505afa158015614026573d6000803e3d6000fd5b505050506040513d602081101561403c57600080fd5b81019080805190602001909291905050508160018151811061405a57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561414a57808201518184015260208101905061412f565b505050509050019650505050505050600060405180830381600087803b15801561417357600080fd5b505af1158015614187573d6000803e3d6000fd5b505050505050565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561424d57600080fd5b505af1158015614261573d6000803e3d6000fd5b50505050506040513d606081101561427857600080fd5b81019080805190602001909291908051906020019092919080519060200190929190505050505050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554784c696d69743a20416c72656164792073657420746f20746869732076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e736665722077696c6c206578636565642077616c6c6574206c696d697445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357616c6c65744c696d69743a20416c72656164792073657420746f20746869732076616c756545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209906b1007e2fda09d17102ee12a6d61ef279bcc00b07793a8c44d53d7bdaabbf64736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000261b7f87027B94701A2dDE462595A94F598E956C

-----Decoded View---------------
Arg [0] : _dev (address): 0x261b7f87027B94701A2dDE462595A94F598E956C

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000261b7f87027B94701A2dDE462595A94F598E956C


Deployed Bytecode Sourcemap

29242:8882:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20639:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22805:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29379:115;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21758:108;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33022:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29655:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23456:355;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31595:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30215:22;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21601:92;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24220:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30116:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29318:54;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30272:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32890:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32642:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29997:57;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32478:156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29695:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21929:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5390:148;;;;;;;;;;;;;:::i;:::-;;33581:178;;;;;;;;;;;;;:::i;:::-;;32762:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29905:52;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29813:54;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4748:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29620:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30091:18;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20858:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33129:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24941:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22269:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29731:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30477:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30376:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31369:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32087:222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22507:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31833:246;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29586:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33390:183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29503:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5693:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29544:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32317:153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30599:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20639:100;20693:13;20726:5;20719:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20639:100;:::o;22805:169::-;22888:4;22905:39;22914:12;:10;:12::i;:::-;22928:7;22937:6;22905:8;:39::i;:::-;22962:4;22955:11;;22805:169;;;;:::o;29379:115::-;29451:42;29379:115;:::o;21758:108::-;21819:7;21846:12;;21839:19;;21758:108;:::o;33022:99::-;4970:12;:10;:12::i;:::-;4960:22;;:6;;;;;;;;;;;:22;;;4952:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33104:9:::1;33098:3;;:15;;;;;;;;;;;;;;;;;;33022:99:::0;:::o;29655:33::-;;;;:::o;23456:355::-;23596:4;23613:36;23623:6;23631:9;23642:6;23613:9;:36::i;:::-;23660:121;23669:6;23677:12;:10;:12::i;:::-;23691:89;23729:6;23691:89;;;;;;;;;;;;;;;;;:11;:19;23703:6;23691:19;;;;;;;;;;;;;;;:33;23711:12;:10;:12::i;:::-;23691:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;23660:8;:121::i;:::-;23799:4;23792:11;;23456:355;;;;;:::o;31595:230::-;4970:12;:10;:12::i;:::-;4960:22;;:6;;;;;;;;;;;:22;;;4952:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31724:5:::1;31690:39;;:21;:30;31712:7;31690:30;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;;31682:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31812:5;31779:21;:30;31801:7;31779:30;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;31595:230:::0;;:::o;30215:22::-;;;;;;;;;;;;;:::o;21601:92::-;21659:5;21684:1;21677:8;;21601:92;:::o;24220:218::-;24308:4;24325:83;24334:12;:10;:12::i;:::-;24348:7;24357:50;24396:10;24357:11;:25;24369:12;:10;:12::i;:::-;24357:25;;;;;;;;;;;;;;;:34;24383:7;24357:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;24325:8;:83::i;:::-;24426:4;24419:11;;24220:218;;;;:::o;30116:28::-;;;;;;;;;;;;;:::o;29318:54::-;29365:6;29318:54;:::o;30272:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;32890:124::-;4970:12;:10;:12::i;:::-;4960:22;;:6;;;;;;;;;;;:22;;;4952:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33000:5:::1;32984:12;:22;32969:12;:37;;;;32890:124:::0;:::o;32642:112::-;4970:12;:10;:12::i;:::-;4960:22;;:6;;;;;;;;;;;:22;;;4952:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32740:5:::1;32728:8;:18;32715:10;:31;;;;32642:112:::0;:::o;29997:57::-;;;;:::o;32478:156::-;4970:12;:10;:12::i;:::-;4960:22;;:6;;;;;;;;;;;:22;;;4952:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32586:12:::1;32567:16;:31;;;;32621:5;32609:9;:17;;;;32478:156:::0;;:::o;29695:27::-;;;;:::o;21929:127::-;22003:7;22030:9;:18;22040:7;22030:18;;;;;;;;;;;;;;;;22023:25;;21929:127;;;:::o;5390:148::-;4970:12;:10;:12::i;:::-;4960:22;;:6;;;;;;;;;;;:22;;;4952:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5497:1:::1;5460:40;;5481:6;;;;;;;;;;;5460:40;;;;;;;;;;;;5528:1;5511:6;;:19;;;;;;;;;;;;;;;;;;5390:148::o:0;33581:178::-;4970:12;:10;:12::i;:::-;4960:22;;:6;;;;;;;;;;;:22;;;4952:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33643:10:::1;;;;;;;;;;;33642:11;33634:52;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33710:4;33697:10;;:17;;;;;;;;;;;;;;;;;;33739:12;33725:11;:26;;;;33581:178::o:0;32762:120::-;4970:12;:10;:12::i;:::-;4960:22;;:6;;;;;;;;;;;:22;;;4952:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32868:5:::1;32856:8;:18;32839:14;:35;;;;32762:120:::0;:::o;29905:52::-;;;;:::o;29813:54::-;;;;:::o;4748:79::-;4786:7;4813:6;;;;;;;;;;;4806:13;;4748:79;:::o;29620:28::-;;;;:::o;30091:18::-;;;;;;;;;;;;;:::o;20858:104::-;20914:13;20947:7;20940:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20858:104;:::o;33129:253::-;4970:12;:10;:12::i;:::-;4960:22;;:6;;;;;;;;;;;:22;;;4952:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33209:13:::1;:22;33223:7;33209:22;;;;;;;;;;;;;;;;;;;;;;;;;33208:23;33200:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33296:13;;;;;;;;;;;33285:24;;:7;:24;;;;33277:58;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33346:28;33360:7;33369:4;33346:13;:28::i;:::-;33129:253:::0;:::o;24941:269::-;25034:4;25051:129;25060:12;:10;:12::i;:::-;25074:7;25083:96;25122:15;25083:96;;;;;;;;;;;;;;;;;:11;:25;25095:12;:10;:12::i;:::-;25083:25;;;;;;;;;;;;;;;:34;25109:7;25083:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;25051:8;:129::i;:::-;25198:4;25191:11;;24941:269;;;;:::o;22269:175::-;22355:4;22372:42;22382:12;:10;:12::i;:::-;22396:9;22407:6;22372:9;:42::i;:::-;22432:4;22425:11;;22269:175;;;;:::o;29731:38::-;;;;:::o;30477:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30376:54::-;;;;;;;;;;;;;;;;;;;;;;:::o;31369:218::-;4970:12;:10;:12::i;:::-;4960:22;;:6;;;;;;;;;;;:22;;;4952:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31492:5:::1;31461:36;;:18;:27;31480:7;31461:27;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;31453:80;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31574:5;31544:18;:27;31563:7;31544:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;31369:218:::0;;:::o;32087:222::-;4970:12;:10;:12::i;:::-;4960:22;;:6;;;;;;;;;;;:22;;;4952:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32176:31:::1;32192:7;32201:5;32176:15;:31::i;:::-;32218:34;32237:7;32246:5;32218:18;:34::i;:::-;32263:38;32286:7;32295:5;32263:22;:38::i;:::-;32087:222:::0;;:::o;22507:151::-;22596:7;22623:11;:18;22635:5;22623:18;;;;;;;;;;;;;;;:27;22642:7;22623:27;;;;;;;;;;;;;;;;22616:34;;22507:151;;;;:::o;31833:246::-;4970:12;:10;:12::i;:::-;4960:22;;:6;;;;;;;;;;;:22;;;4952:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31970:5:::1;31932:43;;:25;:34;31958:7;31932:34;;;;;;;;;;;;;;;;;;;;;;;;;:43;;;;31924:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32066:5;32029:25;:34;32055:7;32029:34;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;31833:246:::0;;:::o;29586:27::-;;;;:::o;33390:183::-;4970:12;:10;:12::i;:::-;4960:22;;:6;;;;;;;;;;;:22;;;4952:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33472:13:::1;:22;33486:7;33472:22;;;;;;;;;;;;;;;;;;;;;;;;;33464:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33536:29;33550:7;33559:5;33536:13;:29::i;:::-;33390:183:::0;:::o;29503:34::-;;;;:::o;5693:244::-;4970:12;:10;:12::i;:::-;4960:22;;:6;;;;;;;;;;;:22;;;4952:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5802:1:::1;5782:22;;:8;:22;;;;5774:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5892:8;5863:38;;5884:6;;;;;;;;;;;5863:38;;;;;;;;;;;;5921:8;5912:6;;:17;;;;;;;;;;;;;;;;;;5693:244:::0;:::o;29544:35::-;;;;:::o;32317:153::-;4970:12;:10;:12::i;:::-;4960:22;;:6;;;;;;;;;;;:22;;;4952:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32423:12:::1;32405:15;:30;;;;32457:5;32446:8;:16;;;;32317:153:::0;;:::o;30599:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;7561:471::-;7619:7;7869:1;7864;:6;7860:47;;;7894:1;7887:8;;;;7860:47;7919:9;7935:1;7931;:5;7919:17;;7964:1;7959;7955;:5;;;;;;:10;7947:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8023:1;8016:8;;;7561:471;;;;;:::o;8508:132::-;8566:7;8593:39;8597:1;8600;8593:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;8586:46;;8508:132;;;;:::o;6207:181::-;6265:7;6285:9;6301:1;6297;:5;6285:17;;6326:1;6321;:6;;6313:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6379:1;6372:8;;;6207:181;;;;:::o;3901:98::-;3954:7;3981:10;3974:17;;3901:98;:::o;28127:380::-;28280:1;28263:19;;:5;:19;;;;28255:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28361:1;28342:21;;:7;:21;;;;28334:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28445:6;28415:11;:18;28427:5;28415:18;;;;;;;;;;;;;;;:27;28434:7;28415:27;;;;;;;;;;;;;;;:36;;;;28483:7;28467:32;;28476:5;28467:32;;;28492:6;28467:32;;;;;;;;;;;;;;;;;;28127:380;;;:::o;33767:2565::-;33881:1;33865:18;;:4;:18;;;;33857:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33951:1;33937:16;;:2;:16;;;;33929:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34015:10;;34005:6;:20;;:51;;;;34029:21;:27;34051:4;34029:27;;;;;;;;;;;;;;;;;;;;;;;;;34005:51;:80;;;;34060:21;:25;34082:2;34060:25;;;;;;;;;;;;;;;;;;;;;;;;;34005:80;33997:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34157:14;;34128:25;34146:6;34128:13;34138:2;34128:9;:13::i;:::-;:17;;:25;;;;:::i;:::-;:43;;:76;;;;34175:25;:29;34201:2;34175:29;;;;;;;;;;;;;;;;;;;;;;;;;34128:76;34120:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34261:10;;;;;;;;;;;:38;;;;34275:18;:24;34294:4;34275:24;;;;;;;;;;;;;;;;;;;;;;;;;34261:38;:64;;;;34303:18;:22;34322:2;34303:22;;;;;;;;;;;;;;;;;;;;;;;;;34261:64;34253:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34368:13;:19;34382:4;34368:19;;;;;;;;;;;;;;;;;;;;;;;;;34367:20;34359:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34439:1;34429:6;:11;34426:92;;;34457:28;34473:4;34479:2;34483:1;34457:15;:28::i;:::-;34500:7;;34426:92;34530:25;34579:12;;34558:18;;:33;34530:61;;34602:12;34638;;34617:17;:33;;34602:48;;34688:13;;;;;;;;;;;34680:21;;:4;:21;;;;:45;;;;;34718:7;34680:45;:71;;;;;34743:8;;;;;;;;;;;34742:9;34680:71;34663:444;;;34789:4;34778:8;;:15;;;;;;;;;;;;;;;;;;34808:27;34817:17;34808:8;:27::i;:::-;34861:5;34850:8;;:16;;;;;;;;;;;;;;;;;;34663:444;;;34909:13;;;;;;;;;;;34901:21;;:4;:21;;;:57;;;;;34945:13;;;;;;;;;;;34939:19;;:2;:19;;;;34901:57;:104;;;;;35004:1;34990:11;;:15;34975:12;:30;34901:104;:144;;;;;35023:18;:22;35042:2;35023:22;;;;;;;;;;;;;;;;;;;;;;;;;35022:23;34901:144;34884:223;;;35072:23;35086:2;35090:4;35072:13;:23::i;:::-;34884:223;34663:444;35119:12;35135:8;;;;;;;;;;;35134:9;35119:24;;35159:18;:24;35178:4;35159:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;35187:18;:22;35206:2;35187:22;;;;;;;;;;;;;;;;;;;;;;;;;35159:50;35156:97;;;35236:5;35226:15;;35156:97;35268:7;35265:1014;;;35292:12;35353:13;;;;;;;;;;;35347:19;;:2;:19;;;35343:776;;;35387:21;35411:31;35432:9;;35411:16;;:20;;:31;;;;:::i;:::-;35387:55;;35468:34;35498:3;35468:25;35479:13;35468:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;35461:41;;35542:69;35565:45;35596:13;35565:26;35574:16;;35565:4;:8;;:26;;;;:::i;:::-;:30;;:45;;;;:::i;:::-;35542:18;;:22;;:69;;;;:::i;:::-;35521:18;:90;;;;35645:56;35662:38;35686:13;35662:19;35671:9;;35662:4;:8;;:19;;;;:::i;:::-;:23;;:38;;;;:::i;:::-;35645:12;;:16;;:56;;;;:::i;:::-;35630:12;:71;;;;35343:776;;;;35797:20;35820:29;35840:8;;35820:15;;:19;;:29;;;;:::i;:::-;35797:52;;35875:33;35904:3;35875:24;35886:12;35875:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;35868:40;;35948:67;35971:43;36001:12;35971:25;35980:15;;35971:4;:8;;:25;;;;:::i;:::-;:29;;:43;;;;:::i;:::-;35948:18;;:22;;:67;;;;:::i;:::-;35927:18;:88;;;;36049:54;36066:36;36089:12;36066:18;36075:8;;36066:4;:8;;:18;;;;:::i;:::-;:22;;:36;;;;:::i;:::-;36049:12;;:16;;:54;;;;:::i;:::-;36034:12;:69;;;;35343:776;;36145:1;36138:4;:8;36135:133;;;36166:42;36182:4;36196;36203;36166:15;:42::i;:::-;36236:16;36247:4;36236:6;:10;;:16;;;;:::i;:::-;36227:25;;36135:133;35265:1014;;36291:33;36307:4;36313:2;36317:6;36291:15;:33::i;:::-;33767:2565;;;;;;;:::o;7110:192::-;7196:7;7229:1;7224;:6;;7232:12;7216:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7256:9;7272:1;7268;:5;7256:17;;7293:1;7286:8;;;7110:192;;;;;:::o;37974:110::-;38071:5;38046:13;:22;38060:7;38046:22;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;37974:110;;:::o;9136:278::-;9222:7;9254:1;9250;:5;9257:12;9242:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9281:9;9297:1;9293;:5;;;;;;9281:17;;9405:1;9398:8;;;9136:278;;;;;:::o;25700:573::-;25858:1;25840:20;;:6;:20;;;;25832:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25942:1;25921:23;;:9;:23;;;;25913:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25997:47;26018:6;26026:9;26037:6;25997:20;:47::i;:::-;26077:71;26099:6;26077:71;;;;;;;;;;;;;;;;;:9;:17;26087:6;26077:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;26057:9;:17;26067:6;26057:17;;;;;;;;;;;;;;;:91;;;;26182:32;26207:6;26182:9;:20;26192:9;26182:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;26159:9;:20;26169:9;26159:20;;;;;;;;;;;;;;;:55;;;;26247:9;26230:35;;26239:6;26230:35;;;26258:6;26230:35;;;;;;;;;;;;;;;;;;25700:573;;;:::o;36340:912::-;36404:14;36421:12;;36404:29;;36495:23;36521:60;36579:1;36521:53;36556:17;36521:30;36532:18;;36521:6;:10;;:30;;;;:::i;:::-;:34;;:53;;;;:::i;:::-;:57;;:60;;;;:::i;:::-;36495:86;;36592:17;36612:48;36644:15;36612:27;36623:15;36612:6;:10;;:27;;;;:::i;:::-;:31;;:48;;;;:::i;:::-;36592:68;;36671:26;36700:27;36711:15;36700:6;:10;;:27;;;;:::i;:::-;36671:56;;36740:37;36758:18;36740:17;:37::i;:::-;36790:18;36811:21;36790:42;;36843:17;36863:49;36893:18;36863:25;36878:9;36863:10;:14;;:25;;;;:::i;:::-;:29;;:49;;;;:::i;:::-;36843:69;;36923:23;36949:25;36964:9;36949:10;:14;;:25;;;;:::i;:::-;36923:51;;37008:46;37031:22;37051:1;37031:15;:19;;:22;;;;:::i;:::-;37008:18;;:22;;:46;;;;:::i;:::-;36987:18;:67;;;;37080:52;37097:34;37108:22;37128:1;37108:15;:19;;:22;;;;:::i;:::-;37097:6;:10;;:34;;;;:::i;:::-;37080:12;;:16;;:52;;;;:::i;:::-;37065:12;:67;;;;37161:3;;;;;;;;;;;37145:30;;:41;37176:9;37145:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37197:47;37211:15;37228;37197:13;:47::i;:::-;36340:912;;;;;;;;:::o;6671:136::-;6729:7;6756:43;6760:1;6763;6756:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;6749:50;;6671:136;;;;:::o;29110:125::-;;;;:::o;37563:403::-;37632:21;37670:1;37656:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37632:40;;37701:4;37683;37688:1;37683:7;;;;;;;;;;;;;:23;;;;;;;;;;;29451:42;37727:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37717:4;37722:1;37717:7;;;;;;;;;;;;;:32;;;;;;;;;;;29451:42;37762:66;;;37843:11;37869:1;37885:4;37912;37932:15;37762:196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37563:403;;:::o;37260:295::-;29451:42;37344:31;;;37383:9;37416:4;37436:11;37462:1;37478;29365:6;37521:15;37344:203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37260:295;;:::o

Swarm Source

ipfs://9906b1007e2fda09d17102ee12a6d61ef279bcc00b07793a8c44d53d7bdaabbf
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.