ETH Price: $2,948.45 (-2.22%)
Gas: 3 Gwei

Token

PLANBLUI (PBLUI)
 

Overview

Max Total Supply

1,000,000,000,000,000 PBLUI

Holders

633

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
21,144,991.12 PBLUI

Value
$0.00
0xd24f5773172e02a11a1734f712d666714b6a6461
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:
PLANBLUI

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-07
*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

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

pragma solidity ^0.8.0;

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

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

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

// File: contracts/IUniswapV2Router02.sol

pragma solidity ^0.8.0;

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

    function WETH() external pure returns (address);

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

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

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

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

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

// File: contracts/IUniswapV2Pair.sol

pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(
        address to
    ) external returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

// File: contracts/IUniswapV2Factory.sol

pragma solidity >=0.8.0;

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol

// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Context.sol

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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC20.sol

pragma solidity ^0.8.0;

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor(string memory name_, string memory symbol_, uint8 decimals_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(
        address owner,
        address spender
    ) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol

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

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic tax.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

pragma solidity ^0.8.0;

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

    bool private swapping;

    address private taxWallet;
    uint256 public maxTransaction;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    mapping(address => uint256) private _holderLastTransferBlock;
    bool public transferDelayEnabled = true;

    uint256 public buyFees;
    uint256 public sellFees;
    uint256 private _maxSwapableTokens;

    uint256 public _preventSwapBefore = 35;
    uint256 public _removeLimitsAt = 30;
    uint256 public _totalBuys = 0;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedmaxTransaction;
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(address indexed newAddress,address indexed oldAddress);
    event SwapAndLiquify(uint256 tokensSwapped,uint256 ethReceived,uint256 tokensIntoLiquidity);
    event setTaxWalletUpdated(address indexed newTaxWallet);
    event setExcludeFromFeesUpdate(address indexed account, bool newStatus);
    event setAutomatedMarketMakerPairUpdate(address indexed pair, bool indexed value);
    event setSwapTokensAtAmountUpdate(uint256 newTokenAmount);
    event setMaxTransactionUpdate(uint256 newTokenAmount);
    event setMaxWalletUpdate(uint256 newTokenAmount);
    event setExcludeFromMaxTransactionUpdate(address newAddress, bool newStatus);
    event setUpdateSwapEnabledUpdate(bool newStatus);
    event setBuyFeeUpdated(uint256 newTaxFee);
    event setSellFeeUpdated(uint256 newTaxFee);

    constructor(address _taxWallet) ERC20("PLANBLUI", "PBLUI", 9) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);

        setExcludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        setExcludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 totalSupply = 1_000_000_000_000_000 * 10 ** decimals();

        maxTransaction = (totalSupply * 50) / 10_000; // 0.5% max transaction at launch
        maxWallet = (totalSupply * 50) / 10_000; // 0.5% max wallet at launch
        swapTokensAtAmount = (totalSupply * 5) / 10_000; // 0.05%
        _maxSwapableTokens = (totalSupply * 50) / 10_000; // 0.5%

        buyFees = 2_500;
        sellFees = 2_500;

        taxWallet = _taxWallet;

        // exclude from paying fees or having max transaction amount
        setExcludeFromFees(owner(), true);
        setExcludeFromFees(address(this), true);
        setExcludeFromFees(address(0xdead), true);

        setExcludeFromMaxTransaction(owner(), true);
        setExcludeFromMaxTransaction(address(this), true);
        setExcludeFromMaxTransaction(address(0xdead), true);

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function enableTrading() external onlyOwner {
        require(!tradingActive, "Token launched");
        tradingActive = true;
        swapEnabled = true;
    }

    function removeLimits() internal returns (bool) {
        limitsInEffect = false;
        buyFees = 300;
        sellFees = 300;
        return true;
    }

    function disableLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

        emit setAutomatedMarketMakerPairUpdate(pair, value);
    }
    
    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

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

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                if (tradingActive && transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferBlock[tx.origin] < block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferBlock[tx.origin] = block.number;
                    }
                }

                if (tradingActive) { 
                    //when buy
                    if (
                        automatedMarketMakerPairs[from] &&
                        !_isExcludedmaxTransaction[to]
                    ) {
                        require(
                            amount <= maxTransaction,
                            "Buy transfer amount exceeds the maxTransaction."
                        );
                        require(
                            amount + balanceOf(to) <= maxWallet,
                            "Max wallet exceeded"
                        );
                    }
                    //when sell
                    else if (
                        automatedMarketMakerPairs[to] &&
                        !_isExcludedmaxTransaction[from]
                    ) {
                        require(
                            amount <= maxTransaction,
                            "Sell transfer amount exceeds the maxTransaction."
                        );
                    } else if (!_isExcludedmaxTransaction[to] && !_isExcludedFromFees[from]) {
                        require(
                            amount + balanceOf(to) <= maxWallet,
                            "Max wallet exceeded"
                        );
                    }
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to] &&
            _totalBuys > _preventSwapBefore
        ) {
            swapping = true;
            swapBack(min(contractTokenBalance, _maxSwapableTokens));
            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellFees > 0) {
                fees = amount.mul(sellFees).div(10_000);
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyFees > 0) {
                fees = amount.mul(buyFees).div(10_000);
                _totalBuys++;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);

        if (_totalBuys >= _removeLimitsAt && limitsInEffect) {
            removeLimits();
        }
    }

    function min(uint256 a, uint256 b) private pure returns (uint256) {
        return (a > b) ? b : a;
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

    function swapBack(uint256 amount) private {
        bool success;

        if (amount == 0) {
            return;
        }

        uint256 amountToSwapForETH = amount;

        swapTokensForEth(amountToSwapForETH);

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

    // ADMIN 
    function setAutomatedMarketMakerPair(address pair, bool newStatus) public onlyOwner {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );
        _setAutomatedMarketMakerPair(pair, newStatus);
        emit setAutomatedMarketMakerPairUpdate(pair, newStatus);
    }

    function setSwapTokensAtAmount(uint256 newTokenAmount) external onlyOwner returns (bool) {
        require(
            newTokenAmount >= (totalSupply() * 1) / 100_000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newTokenAmount <= (totalSupply() * 100) / 10_000,
            "Swap amount cannot be higher than 1% total supply."
        );
        swapTokensAtAmount = newTokenAmount;
        emit setSwapTokensAtAmountUpdate(newTokenAmount);
        return true;
    }

    function setMaxTransaction(uint256 newTokenAmount) external onlyOwner {
        require(
            newTokenAmount >= ((totalSupply() * 10) / 10_000),
            "Cannot set maxTransaction lower than 0.1%"
        );
        maxTransaction = newTokenAmount * (10 ** decimals());
        emit setMaxTransactionUpdate(newTokenAmount);
    }

    function setMaxWallet(uint256 newTokenAmount) external onlyOwner {
        require(
            newTokenAmount >= ((totalSupply() * 50) / 10_000),
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newTokenAmount * (10 ** decimals());
        emit setMaxWalletUpdate(newTokenAmount);
    }

    function setExcludeFromMaxTransaction(address newAddress, bool newStatus) public onlyOwner {
        _isExcludedmaxTransaction[newAddress] = newStatus;
        emit setExcludeFromMaxTransactionUpdate(newAddress, newStatus);
    }

    function setUpdateSwapEnabled(bool newStatus) external onlyOwner {
        swapEnabled = newStatus;
        emit setUpdateSwapEnabledUpdate(newStatus);
    }

    function setBuyFee(uint256 newTaxFee) external onlyOwner {
        buyFees = newTaxFee;
        require(buyFees <= 500);
        emit setBuyFeeUpdated(newTaxFee);
    }

    function setSellFee(uint256 newTaxFee) external onlyOwner {
        sellFees = newTaxFee;
        require(sellFees <= 500);
        emit setSellFeeUpdated(newTaxFee);
    }

    function setExcludeFromFees(address account, bool newStatus) public onlyOwner {
        _isExcludedFromFees[account] = newStatus;
        emit setExcludeFromFeesUpdate(account, newStatus);
    }

    function setTaxWallet(address newTaxWallet) external onlyOwner {
        taxWallet = newTaxWallet;
        emit setTaxWalletUpdated(newTaxWallet);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_taxWallet","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPairUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newTaxFee","type":"uint256"}],"name":"setBuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setExcludeFromFeesUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setExcludeFromMaxTransactionUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newTokenAmount","type":"uint256"}],"name":"setMaxTransactionUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newTokenAmount","type":"uint256"}],"name":"setMaxWalletUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newTaxFee","type":"uint256"}],"name":"setSellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newTokenAmount","type":"uint256"}],"name":"setSwapTokensAtAmountUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newTaxWallet","type":"address"}],"name":"setTaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setUpdateSwapEnabledUpdate","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedmaxTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_preventSwapBefore","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_removeLimitsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalBuys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFees","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":"disableLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","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":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTaxFee","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setExcludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"},{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setExcludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenAmount","type":"uint256"}],"name":"setMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenAmount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTaxFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTaxWallet","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setUpdateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"},{"stateMutability":"payable","type":"receive"}]

60c0604052737a250d5630b4cf539739df2c5dacb4c659f2488d60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b5f6101000a81548160ff0219169083151502179055505f600b60016101000a81548160ff0219169083151502179055505f600b60026101000a81548160ff0219169083151502179055506001600d5f6101000a81548160ff0219169083151502179055506023601155601e6012555f601355348015620000da575f80fd5b506040516200563b3803806200563b833981810160405281019062000100919062000b2f565b6040518060400160405280600881526020017f504c414e424c55490000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f50424c5549000000000000000000000000000000000000000000000000000000815250600982600390816200017f919062000dc3565b50816004908162000191919062000dc3565b508060055f6101000a81548160ff021916908360ff160217905550505050620001cf620001c3620005bc60201b60201c565b620005c360201b60201c565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050620002078160016200068860201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000285573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002ab919062000b2f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000311573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000337919062000b2f565b6040518363ffffffff1660e01b81526004016200035692919062000eb8565b6020604051808303815f875af115801562000373573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000399919062000b2f565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003e160a05160016200068860201b60201c565b620003f660a05160016200072b60201b60201c565b5f62000407620007c960201b60201c565b600a6200041591906200106c565b66038d7ea4c68000620004299190620010bc565b90506127106032826200043d9190620010bc565b62000449919062001133565b600881905550612710603282620004619190620010bc565b6200046d919062001133565b600a81905550612710600582620004859190620010bc565b62000491919062001133565b600981905550612710603282620004a99190620010bc565b620004b5919062001133565b6010819055506109c4600e819055506109c4600f819055508260075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200052f62000521620007de60201b60201c565b60016200080760201b60201c565b620005423060016200080760201b60201c565b6200055761dead60016200080760201b60201c565b620005796200056b620007de60201b60201c565b60016200068860201b60201c565b6200058c3060016200068860201b60201c565b620005a161dead60016200068860201b60201c565b620005b33382620008bf60201b60201c565b5050506200131e565b5f33905090565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200069862000a2f60201b60201c565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f7f654cd58ed27e5f937ca593d4b7b6c2712dd47aae3a8980c67dddf81430257a82826040516200071f92919062001186565b60405180910390a15050565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f6fd08642eb227264836bd314a2faad34ea890d67a077763e0809e9acd2aa892d60405160405180910390a35050565b5f60055f9054906101000a900460ff16905090565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200081762000a2f60201b60201c565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9cc19e08ba758837142b0e92d33f07d6494311434625fa20b5cfc51195abab6182604051620008b39190620011b1565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000927906200122a565b60405180910390fd5b620009435f838362000ac060201b60201c565b8060025f8282546200095691906200124a565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254620009aa91906200124a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a10919062001295565b60405180910390a362000a2b5f838362000ac560201b60201c565b5050565b62000a3f620005bc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a65620007de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000abe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ab590620012fe565b60405180910390fd5b565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000af98262000ace565b9050919050565b62000b0b8162000aed565b811462000b16575f80fd5b50565b5f8151905062000b298162000b00565b92915050565b5f6020828403121562000b475762000b4662000aca565b5b5f62000b568482850162000b19565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000bdb57607f821691505b60208210810362000bf15762000bf062000b96565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000c557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c18565b62000c61868362000c18565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000cab62000ca562000c9f8462000c79565b62000c82565b62000c79565b9050919050565b5f819050919050565b62000cc68362000c8b565b62000cde62000cd58262000cb2565b84845462000c24565b825550505050565b5f90565b62000cf462000ce6565b62000d0181848462000cbb565b505050565b5b8181101562000d285762000d1c5f8262000cea565b60018101905062000d07565b5050565b601f82111562000d775762000d418162000bf7565b62000d4c8462000c09565b8101602085101562000d5c578190505b62000d7462000d6b8562000c09565b83018262000d06565b50505b505050565b5f82821c905092915050565b5f62000d995f198460080262000d7c565b1980831691505092915050565b5f62000db3838362000d88565b9150826002028217905092915050565b62000dce8262000b5f565b67ffffffffffffffff81111562000dea5762000de962000b69565b5b62000df6825462000bc3565b62000e0382828562000d2c565b5f60209050601f83116001811462000e39575f841562000e24578287015190505b62000e30858262000da6565b86555062000e9f565b601f19841662000e498662000bf7565b5f5b8281101562000e725784890151825560018201915060208501945060208101905062000e4b565b8683101562000e92578489015162000e8e601f89168262000d88565b8355505b6001600288020188555050505b505050505050565b62000eb28162000aed565b82525050565b5f60408201905062000ecd5f83018562000ea7565b62000edc602083018462000ea7565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000f6d5780860481111562000f455762000f4462000ee3565b5b600185161562000f555780820291505b808102905062000f658562000f10565b945062000f25565b94509492505050565b5f8262000f87576001905062001059565b8162000f96575f905062001059565b816001811462000faf576002811462000fba5762000ff0565b600191505062001059565b60ff84111562000fcf5762000fce62000ee3565b5b8360020a91508482111562000fe95762000fe862000ee3565b5b5062001059565b5060208310610133831016604e8410600b84101617156200102a5782820a90508381111562001024576200102362000ee3565b5b62001059565b62001039848484600162000f1c565b9250905081840481111562001053576200105262000ee3565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620010788262000c79565b9150620010858362001060565b9250620010b47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000f76565b905092915050565b5f620010c88262000c79565b9150620010d58362000c79565b9250828202620010e58162000c79565b91508282048414831517620010ff57620010fe62000ee3565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6200113f8262000c79565b91506200114c8362000c79565b9250826200115f576200115e62001106565b5b828204905092915050565b5f8115159050919050565b62001180816200116a565b82525050565b5f6040820190506200119b5f83018562000ea7565b620011aa602083018462001175565b9392505050565b5f602082019050620011c65f83018462001175565b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62001212601f83620011cc565b91506200121f82620011dc565b602082019050919050565b5f6020820190508181035f830152620012438162001204565b9050919050565b5f620012568262000c79565b9150620012638362000c79565b92508282019050808211156200127e576200127d62000ee3565b5b92915050565b6200128f8162000c79565b82525050565b5f602082019050620012aa5f83018462001284565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f620012e6602083620011cc565b9150620012f382620012b0565b602082019050919050565b5f6020820190508181035f8301526200131781620012d8565b9050919050565b60805160a0516142d16200136a5f395f8181610d4f015281816110c20152611ebd01525f8181610b7401528181611e6501528181612cad01528181612d8c0152612db301526142d15ff3fe608060405260043610610275575f3560e01c8063a457c2d71161014e578063db9855e8116100c0578063e884f26011610079578063e884f26014610974578063ea414b281461099e578063f2fde38b146109c6578063f887ea40146109ee578063f8b45b0514610a18578063f928364c14610a425761027c565b8063db9855e814610856578063dd62ed3e1461087e578063e0f3ccf5146108ba578063e1bc3394146108e4578063e2f4560514610920578063e4748b9e1461094a5761027c565b8063bbc0c74211610112578063bbc0c7421461075e578063c3f70b5214610788578063c81d9246146107b2578063c876d0b9146107dc578063cfb4357b14610806578063d63cad221461082e5761027c565b8063a457c2d714610646578063a9059cbb14610682578063ab5a1887146106be578063afa4f3b2146106e6578063b62496f5146107225761027c565b80635d0044ca116101e757806373a94292116101ab57806373a94292146105625780638a8c523c1461058c5780638b4cee08146105a25780638da5cb5b146105ca57806395d89b41146105f45780639a7a23d61461061e5761027c565b80635d0044ca1461049457806368018226146104bc5780636ddd1713146104e657806370a0823114610510578063715018a61461054c5761027c565b806323b872dd1161023957806323b872dd14610362578063313ce5671461039e57806339509351146103c857806349bd5a5e146104045780634a62bb651461042e5780634fbee193146104585761027c565b806306fdde0314610280578063095ea7b3146102aa5780630cc835a3146102e65780631694505e1461030e57806318160ddd146103385761027c565b3661027c57005b5f80fd5b34801561028b575f80fd5b50610294610a6c565b6040516102a19190612ecd565b60405180910390f35b3480156102b5575f80fd5b506102d060048036038101906102cb9190612f7e565b610afc565b6040516102dd9190612fd6565b60405180910390f35b3480156102f1575f80fd5b5061030c60048036038101906103079190612fef565b610b19565b005b348015610319575f80fd5b50610322610b72565b60405161032f9190613075565b60405180910390f35b348015610343575f80fd5b5061034c610b96565b604051610359919061309d565b60405180910390f35b34801561036d575f80fd5b50610388600480360381019061038391906130b6565b610b9f565b6040516103959190612fd6565b60405180910390f35b3480156103a9575f80fd5b506103b2610c91565b6040516103bf9190613121565b60405180910390f35b3480156103d3575f80fd5b506103ee60048036038101906103e99190612f7e565b610ca6565b6040516103fb9190612fd6565b60405180910390f35b34801561040f575f80fd5b50610418610d4d565b6040516104259190613149565b60405180910390f35b348015610439575f80fd5b50610442610d71565b60405161044f9190612fd6565b60405180910390f35b348015610463575f80fd5b5061047e60048036038101906104799190613162565b610d83565b60405161048b9190612fd6565b60405180910390f35b34801561049f575f80fd5b506104ba60048036038101906104b59190612fef565b610dd5565b005b3480156104c7575f80fd5b506104d0610e9f565b6040516104dd919061309d565b60405180910390f35b3480156104f1575f80fd5b506104fa610ea5565b6040516105079190612fd6565b60405180910390f35b34801561051b575f80fd5b5061053660048036038101906105319190613162565b610eb8565b604051610543919061309d565b60405180910390f35b348015610557575f80fd5b50610560610efd565b005b34801561056d575f80fd5b50610576610f10565b604051610583919061309d565b60405180910390f35b348015610597575f80fd5b506105a0610f16565b005b3480156105ad575f80fd5b506105c860048036038101906105c39190612fef565b610fa6565b005b3480156105d5575f80fd5b506105de610fff565b6040516105eb9190613149565b60405180910390f35b3480156105ff575f80fd5b50610608611028565b6040516106159190612ecd565b60405180910390f35b348015610629575f80fd5b50610644600480360381019061063f91906131b7565b6110b8565b005b348015610651575f80fd5b5061066c60048036038101906106679190612f7e565b6111a2565b6040516106799190612fd6565b60405180910390f35b34801561068d575f80fd5b506106a860048036038101906106a39190612f7e565b611288565b6040516106b59190612fd6565b60405180910390f35b3480156106c9575f80fd5b506106e460048036038101906106df9190612fef565b6112a5565b005b3480156106f1575f80fd5b5061070c60048036038101906107079190612fef565b61136f565b6040516107199190612fd6565b60405180910390f35b34801561072d575f80fd5b5061074860048036038101906107439190613162565b611486565b6040516107559190612fd6565b60405180910390f35b348015610769575f80fd5b506107726114a3565b60405161077f9190612fd6565b60405180910390f35b348015610793575f80fd5b5061079c6114b6565b6040516107a9919061309d565b60405180910390f35b3480156107bd575f80fd5b506107c66114bc565b6040516107d3919061309d565b60405180910390f35b3480156107e7575f80fd5b506107f06114c2565b6040516107fd9190612fd6565b60405180910390f35b348015610811575f80fd5b5061082c600480360381019061082791906131f5565b6114d4565b005b348015610839575f80fd5b50610854600480360381019061084f91906131b7565b611530565b005b348015610861575f80fd5b5061087c600480360381019061087791906131b7565b6115de565b005b348015610889575f80fd5b506108a4600480360381019061089f9190613220565b611677565b6040516108b1919061309d565b60405180910390f35b3480156108c5575f80fd5b506108ce6116f9565b6040516108db919061309d565b60405180910390f35b3480156108ef575f80fd5b5061090a60048036038101906109059190613162565b6116ff565b6040516109179190612fd6565b60405180910390f35b34801561092b575f80fd5b5061093461171c565b604051610941919061309d565b60405180910390f35b348015610955575f80fd5b5061095e611722565b60405161096b919061309d565b60405180910390f35b34801561097f575f80fd5b50610988611728565b6040516109959190612fd6565b60405180910390f35b3480156109a9575f80fd5b506109c460048036038101906109bf9190613162565b611751565b005b3480156109d1575f80fd5b506109ec60048036038101906109e79190613162565b6117df565b005b3480156109f9575f80fd5b50610a02611861565b604051610a0f9190613149565b60405180910390f35b348015610a23575f80fd5b50610a2c611886565b604051610a39919061309d565b60405180910390f35b348015610a4d575f80fd5b50610a5661188c565b604051610a639190612fd6565b60405180910390f35b606060038054610a7b9061328b565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa79061328b565b8015610af25780601f10610ac957610100808354040283529160200191610af2565b820191905f5260205f20905b815481529060010190602001808311610ad557829003601f168201915b5050505050905090565b5f610b0f610b086118b5565b84846118bc565b6001905092915050565b610b21611a7f565b80600e819055506101f4600e541115610b38575f80fd5b7fa872edbd15308577c98aad0962f729a1875f28e00ab28cba83ab55653ad3d1c381604051610b67919061309d565b60405180910390a150565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b5f610bab848484611afd565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610bf26118b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c689061332b565b60405180910390fd5b610c8585610c7d6118b5565b8584036118bc565b60019150509392505050565b5f60055f9054906101000a900460ff16905090565b5f610d43610cb26118b5565b848460015f610cbf6118b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610d3e9190613376565b6118bc565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5f9054906101000a900460ff1681565b5f60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610ddd611a7f565b6127106032610dea610b96565b610df491906133a9565b610dfe9190613417565b811015610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e37906134b7565b60405180910390fd5b610e48610c91565b600a610e549190613604565b81610e5f91906133a9565b600a819055507f1730415ef59f304dd1da6ed28821f819b979f6efbab42c44aebefaa4b7b5131e81604051610e94919061309d565b60405180910390a150565b60125481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f05611a7f565b610f0e5f612709565b565b60135481565b610f1e611a7f565b600b60019054906101000a900460ff1615610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590613698565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b610fae611a7f565b80600f819055506101f4600f541115610fc5575f80fd5b7fe1435708d333edbd00af16b969ad0814c8a957a37fefc22afda088dfebec2cd081604051610ff4919061309d565b60405180910390a150565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546110379061328b565b80601f01602080910402602001604051908101604052809291908181526020018280546110639061328b565b80156110ae5780601f10611085576101008083540402835291602001916110ae565b820191905f5260205f20905b81548152906001019060200180831161109157829003601f168201915b5050505050905090565b6110c0611a7f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361114e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114590613726565b60405180910390fd5b61115882826127ce565b8015158273ffffffffffffffffffffffffffffffffffffffff167f6fd08642eb227264836bd314a2faad34ea890d67a077763e0809e9acd2aa892d60405160405180910390a35050565b5f8060015f6111af6118b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611260906137b4565b60405180910390fd5b61127d6112746118b5565b858584036118bc565b600191505092915050565b5f61129b6112946118b5565b8484611afd565b6001905092915050565b6112ad611a7f565b612710600a6112ba610b96565b6112c491906133a9565b6112ce9190613417565b811015611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790613842565b60405180910390fd5b611318610c91565b600a6113249190613604565b8161132f91906133a9565b6008819055507f93f578c61e9ff613008cec299dd781e522b70349dcd321ca43de1c00d6778ea481604051611364919061309d565b60405180910390a150565b5f611378611a7f565b620186a06001611386610b96565b61139091906133a9565b61139a9190613417565b8210156113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d3906138d0565b60405180910390fd5b61271060646113e9610b96565b6113f391906133a9565b6113fd9190613417565b82111561143f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114369061395e565b60405180910390fd5b816009819055507f3bd8f1497f38289f05933d46fadc4ebe49ab69ae55fb2cc2efe549e15bb73cf682604051611475919061309d565b60405180910390a160019050919050565b6016602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b60085481565b60115481565b600d5f9054906101000a900460ff1681565b6114dc611a7f565b80600b60026101000a81548160ff0219169083151502179055507f0a02a9777cf03eb2f9c8a2400ac5f4142480e5844e543d81cf6f03416519077d816040516115259190612fd6565b60405180910390a150565b611538611a7f565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9cc19e08ba758837142b0e92d33f07d6494311434625fa20b5cfc51195abab61826040516115d29190612fd6565b60405180910390a25050565b6115e6611a7f565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f7f654cd58ed27e5f937ca593d4b7b6c2712dd47aae3a8980c67dddf81430257a828260405161166b92919061397c565b60405180910390a15050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600f5481565b6015602052805f5260405f205f915054906101000a900460ff1681565b60095481565b600e5481565b5f611731611a7f565b5f600d5f6101000a81548160ff0219169083151502179055506001905090565b611759611a7f565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f856daf618dc47b561b2d9f5801cc5d40b522d5cdfdec2b80ab0503d9393ad56560405160405180910390a250565b6117e7611a7f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90613a13565b60405180910390fd5b61185e81612709565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b5f611895611a7f565b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190613aa1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f90613b2f565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a72919061309d565b60405180910390a3505050565b611a876118b5565b73ffffffffffffffffffffffffffffffffffffffff16611aa5610fff565b73ffffffffffffffffffffffffffffffffffffffff1614611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af290613b97565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613c25565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd090613cb3565b60405180910390fd5b5f8103611bf057611beb83835f61286c565b612704565b600b5f9054906101000a900460ff161561231a57611c0c610fff565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611c7a5750611c4a610fff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611cb257505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611cec575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d055750600660149054906101000a900460ff16155b1561231957600b60019054906101000a900460ff16611df95760145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611db9575060145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def90613d1b565b60405180910390fd5b5b600b60019054906101000a900460ff168015611e205750600d5f9054906101000a900460ff165b15611fd457611e2d610fff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611eb457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f0c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611fd35743600c5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790613dcf565b60405180910390fd5b43600c5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b600b60019054906101000a900460ff16156123185760165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612086575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561212d576008548111156120d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c790613e5d565b60405180910390fd5b600a546120dc83610eb8565b826120e79190613376565b1115612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f90613ec5565b60405180910390fd5b612317565b60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156121ca575060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561221957600854811115612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b90613f53565b60405180910390fd5b612316565b60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156122b7575060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561231557600a546122c883610eb8565b826122d39190613376565b1115612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90613ec5565b60405180910390fd5b5b5b5b5b5b5b5f61232430610eb8565b90505f60095482101590508080156123485750600b60029054906101000a900460ff165b80156123615750600660149054906101000a900460ff16155b80156123b4575060165f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612407575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561245a575060145f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156124695750601154601354115b156124b8576001600660146101000a81548160ff02191690831515021790555061249d61249883601054612ae1565b612af9565b5f600660146101000a81548160ff0219169083151502179055505b5f600660149054906101000a900460ff1615905060145f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612567575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612570575f90505b5f81156126c65760165f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156125ce57505f600f54115b15612603576125fc6127106125ee600f5488612ba990919063ffffffff16565b612bbe90919063ffffffff16565b90506126a3565b60165f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561265a57505f600e54115b156126a25761268861271061267a600e5488612ba990919063ffffffff16565b612bbe90919063ffffffff16565b905060135f81548092919061269c90613f71565b91905055505b5b5f8111156126b7576126b687308361286c565b5b80856126c39190613fb8565b94505b6126d187878761286c565b601254601354101580156126f05750600b5f9054906101000a900460ff165b156126ff576126fd612bd3565b505b505050505b505050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f6fd08642eb227264836bd314a2faad34ea890d67a077763e0809e9acd2aa892d60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d190613c25565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293f90613cb3565b60405180910390fd5b612953838383612c06565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd9061405b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254612a649190613376565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ac8919061309d565b60405180910390a3612adb848484612c0b565b50505050565b5f818311612aef5782612af1565b815b905092915050565b5f808203612b075750612ba6565b5f829050612b1481612c10565b5f47905060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612b5d906140a6565b5f6040518083038185875af1925050503d805f8114612b97576040519150601f19603f3d011682016040523d82523d5f602084013e612b9c565b606091505b5050809350505050505b50565b5f8183612bb691906133a9565b905092915050565b5f8183612bcb9190613417565b905092915050565b5f80600b5f6101000a81548160ff02191690831515021790555061012c600e8190555061012c600f819055506001905090565b505050565b505050565b5f600267ffffffffffffffff811115612c2c57612c2b6140ba565b5b604051908082528060200260200182016040528015612c5a5781602001602082028036833780820191505090505b50905030815f81518110612c7157612c706140e7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d14573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d389190614128565b81600181518110612d4c57612d4b6140e7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612db1307f0000000000000000000000000000000000000000000000000000000000000000846118bc565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612e12959493929190614243565b5f604051808303815f87803b158015612e29575f80fd5b505af1158015612e3b573d5f803e3d5ffd5b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612e7a578082015181840152602081019050612e5f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612e9f82612e43565b612ea98185612e4d565b9350612eb9818560208601612e5d565b612ec281612e85565b840191505092915050565b5f6020820190508181035f830152612ee58184612e95565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612f1a82612ef1565b9050919050565b612f2a81612f10565b8114612f34575f80fd5b50565b5f81359050612f4581612f21565b92915050565b5f819050919050565b612f5d81612f4b565b8114612f67575f80fd5b50565b5f81359050612f7881612f54565b92915050565b5f8060408385031215612f9457612f93612eed565b5b5f612fa185828601612f37565b9250506020612fb285828601612f6a565b9150509250929050565b5f8115159050919050565b612fd081612fbc565b82525050565b5f602082019050612fe95f830184612fc7565b92915050565b5f6020828403121561300457613003612eed565b5b5f61301184828501612f6a565b91505092915050565b5f819050919050565b5f61303d61303861303384612ef1565b61301a565b612ef1565b9050919050565b5f61304e82613023565b9050919050565b5f61305f82613044565b9050919050565b61306f81613055565b82525050565b5f6020820190506130885f830184613066565b92915050565b61309781612f4b565b82525050565b5f6020820190506130b05f83018461308e565b92915050565b5f805f606084860312156130cd576130cc612eed565b5b5f6130da86828701612f37565b93505060206130eb86828701612f37565b92505060406130fc86828701612f6a565b9150509250925092565b5f60ff82169050919050565b61311b81613106565b82525050565b5f6020820190506131345f830184613112565b92915050565b61314381612f10565b82525050565b5f60208201905061315c5f83018461313a565b92915050565b5f6020828403121561317757613176612eed565b5b5f61318484828501612f37565b91505092915050565b61319681612fbc565b81146131a0575f80fd5b50565b5f813590506131b18161318d565b92915050565b5f80604083850312156131cd576131cc612eed565b5b5f6131da85828601612f37565b92505060206131eb858286016131a3565b9150509250929050565b5f6020828403121561320a57613209612eed565b5b5f613217848285016131a3565b91505092915050565b5f806040838503121561323657613235612eed565b5b5f61324385828601612f37565b925050602061325485828601612f37565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806132a257607f821691505b6020821081036132b5576132b461325e565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f613315602883612e4d565b9150613320826132bb565b604082019050919050565b5f6020820190508181035f83015261334281613309565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61338082612f4b565b915061338b83612f4b565b92508282019050808211156133a3576133a2613349565b5b92915050565b5f6133b382612f4b565b91506133be83612f4b565b92508282026133cc81612f4b565b915082820484148315176133e3576133e2613349565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61342182612f4b565b915061342c83612f4b565b92508261343c5761343b6133ea565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f6134a1602483612e4d565b91506134ac82613447565b604082019050919050565b5f6020820190508181035f8301526134ce81613495565b9050919050565b5f8160011c9050919050565b5f808291508390505b600185111561352a5780860481111561350657613505613349565b5b60018516156135155780820291505b8081029050613523856134d5565b94506134ea565b94509492505050565b5f8261354257600190506135fd565b8161354f575f90506135fd565b8160018114613565576002811461356f5761359e565b60019150506135fd565b60ff84111561358157613580613349565b5b8360020a91508482111561359857613597613349565b5b506135fd565b5060208310610133831016604e8410600b84101617156135d35782820a9050838111156135ce576135cd613349565b5b6135fd565b6135e084848460016134e1565b925090508184048111156135f7576135f6613349565b5b81810290505b9392505050565b5f61360e82612f4b565b915061361983613106565b92506136467fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613533565b905092915050565b7f546f6b656e206c61756e636865640000000000000000000000000000000000005f82015250565b5f613682600e83612e4d565b915061368d8261364e565b602082019050919050565b5f6020820190508181035f8301526136af81613676565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f613710603983612e4d565b915061371b826136b6565b604082019050919050565b5f6020820190508181035f83015261373d81613704565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61379e602583612e4d565b91506137a982613744565b604082019050919050565b5f6020820190508181035f8301526137cb81613792565b9050919050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e206c6f776572205f8201527f7468616e20302e31250000000000000000000000000000000000000000000000602082015250565b5f61382c602983612e4d565b9150613837826137d2565b604082019050919050565b5f6020820190508181035f83015261385981613820565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6138ba603583612e4d565b91506138c582613860565b604082019050919050565b5f6020820190508181035f8301526138e7816138ae565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b5f613948603283612e4d565b9150613953826138ee565b604082019050919050565b5f6020820190508181035f8301526139758161393c565b9050919050565b5f60408201905061398f5f83018561313a565b61399c6020830184612fc7565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6139fd602683612e4d565b9150613a08826139a3565b604082019050919050565b5f6020820190508181035f830152613a2a816139f1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613a8b602483612e4d565b9150613a9682613a31565b604082019050919050565b5f6020820190508181035f830152613ab881613a7f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613b19602283612e4d565b9150613b2482613abf565b604082019050919050565b5f6020820190508181035f830152613b4681613b0d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613b81602083612e4d565b9150613b8c82613b4d565b602082019050919050565b5f6020820190508181035f830152613bae81613b75565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613c0f602583612e4d565b9150613c1a82613bb5565b604082019050919050565b5f6020820190508181035f830152613c3c81613c03565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613c9d602383612e4d565b9150613ca882613c43565b604082019050919050565b5f6020820190508181035f830152613cca81613c91565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613d05601683612e4d565b9150613d1082613cd1565b602082019050919050565b5f6020820190508181035f830152613d3281613cf9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f613db9604983612e4d565b9150613dc482613d39565b606082019050919050565b5f6020820190508181035f830152613de681613dad565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e2e0000000000000000000000000000000000602082015250565b5f613e47602f83612e4d565b9150613e5282613ded565b604082019050919050565b5f6020820190508181035f830152613e7481613e3b565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613eaf601383612e4d565b9150613eba82613e7b565b602082019050919050565b5f6020820190508181035f830152613edc81613ea3565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e2e00000000000000000000000000000000602082015250565b5f613f3d603083612e4d565b9150613f4882613ee3565b604082019050919050565b5f6020820190508181035f830152613f6a81613f31565b9050919050565b5f613f7b82612f4b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613fad57613fac613349565b5b600182019050919050565b5f613fc282612f4b565b9150613fcd83612f4b565b9250828203905081811115613fe557613fe4613349565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614045602683612e4d565b915061405082613feb565b604082019050919050565b5f6020820190508181035f83015261407281614039565b9050919050565b5f81905092915050565b50565b5f6140915f83614079565b915061409c82614083565b5f82019050919050565b5f6140b082614086565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061412281612f21565b92915050565b5f6020828403121561413d5761413c612eed565b5b5f61414a84828501614114565b91505092915050565b5f819050919050565b5f61417661417161416c84614153565b61301a565b612f4b565b9050919050565b6141868161415c565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6141be81612f10565b82525050565b5f6141cf83836141b5565b60208301905092915050565b5f602082019050919050565b5f6141f18261418c565b6141fb8185614196565b9350614206836141a6565b805f5b8381101561423657815161421d88826141c4565b9750614228836141db565b925050600181019050614209565b5085935050505092915050565b5f60a0820190506142565f83018861308e565b614263602083018761417d565b818103604083015261427581866141e7565b9050614284606083018561313a565b614291608083018461308e565b969550505050505056fea2646970667358221220ed78700d98a43a79b3d5b24f3790dc6f640db9826053e5d5e353d49841eb33f064736f6c63430008160033000000000000000000000000cdce874c7cbb917e9cf4330fd668e06997d83664

Deployed Bytecode

0x608060405260043610610275575f3560e01c8063a457c2d71161014e578063db9855e8116100c0578063e884f26011610079578063e884f26014610974578063ea414b281461099e578063f2fde38b146109c6578063f887ea40146109ee578063f8b45b0514610a18578063f928364c14610a425761027c565b8063db9855e814610856578063dd62ed3e1461087e578063e0f3ccf5146108ba578063e1bc3394146108e4578063e2f4560514610920578063e4748b9e1461094a5761027c565b8063bbc0c74211610112578063bbc0c7421461075e578063c3f70b5214610788578063c81d9246146107b2578063c876d0b9146107dc578063cfb4357b14610806578063d63cad221461082e5761027c565b8063a457c2d714610646578063a9059cbb14610682578063ab5a1887146106be578063afa4f3b2146106e6578063b62496f5146107225761027c565b80635d0044ca116101e757806373a94292116101ab57806373a94292146105625780638a8c523c1461058c5780638b4cee08146105a25780638da5cb5b146105ca57806395d89b41146105f45780639a7a23d61461061e5761027c565b80635d0044ca1461049457806368018226146104bc5780636ddd1713146104e657806370a0823114610510578063715018a61461054c5761027c565b806323b872dd1161023957806323b872dd14610362578063313ce5671461039e57806339509351146103c857806349bd5a5e146104045780634a62bb651461042e5780634fbee193146104585761027c565b806306fdde0314610280578063095ea7b3146102aa5780630cc835a3146102e65780631694505e1461030e57806318160ddd146103385761027c565b3661027c57005b5f80fd5b34801561028b575f80fd5b50610294610a6c565b6040516102a19190612ecd565b60405180910390f35b3480156102b5575f80fd5b506102d060048036038101906102cb9190612f7e565b610afc565b6040516102dd9190612fd6565b60405180910390f35b3480156102f1575f80fd5b5061030c60048036038101906103079190612fef565b610b19565b005b348015610319575f80fd5b50610322610b72565b60405161032f9190613075565b60405180910390f35b348015610343575f80fd5b5061034c610b96565b604051610359919061309d565b60405180910390f35b34801561036d575f80fd5b50610388600480360381019061038391906130b6565b610b9f565b6040516103959190612fd6565b60405180910390f35b3480156103a9575f80fd5b506103b2610c91565b6040516103bf9190613121565b60405180910390f35b3480156103d3575f80fd5b506103ee60048036038101906103e99190612f7e565b610ca6565b6040516103fb9190612fd6565b60405180910390f35b34801561040f575f80fd5b50610418610d4d565b6040516104259190613149565b60405180910390f35b348015610439575f80fd5b50610442610d71565b60405161044f9190612fd6565b60405180910390f35b348015610463575f80fd5b5061047e60048036038101906104799190613162565b610d83565b60405161048b9190612fd6565b60405180910390f35b34801561049f575f80fd5b506104ba60048036038101906104b59190612fef565b610dd5565b005b3480156104c7575f80fd5b506104d0610e9f565b6040516104dd919061309d565b60405180910390f35b3480156104f1575f80fd5b506104fa610ea5565b6040516105079190612fd6565b60405180910390f35b34801561051b575f80fd5b5061053660048036038101906105319190613162565b610eb8565b604051610543919061309d565b60405180910390f35b348015610557575f80fd5b50610560610efd565b005b34801561056d575f80fd5b50610576610f10565b604051610583919061309d565b60405180910390f35b348015610597575f80fd5b506105a0610f16565b005b3480156105ad575f80fd5b506105c860048036038101906105c39190612fef565b610fa6565b005b3480156105d5575f80fd5b506105de610fff565b6040516105eb9190613149565b60405180910390f35b3480156105ff575f80fd5b50610608611028565b6040516106159190612ecd565b60405180910390f35b348015610629575f80fd5b50610644600480360381019061063f91906131b7565b6110b8565b005b348015610651575f80fd5b5061066c60048036038101906106679190612f7e565b6111a2565b6040516106799190612fd6565b60405180910390f35b34801561068d575f80fd5b506106a860048036038101906106a39190612f7e565b611288565b6040516106b59190612fd6565b60405180910390f35b3480156106c9575f80fd5b506106e460048036038101906106df9190612fef565b6112a5565b005b3480156106f1575f80fd5b5061070c60048036038101906107079190612fef565b61136f565b6040516107199190612fd6565b60405180910390f35b34801561072d575f80fd5b5061074860048036038101906107439190613162565b611486565b6040516107559190612fd6565b60405180910390f35b348015610769575f80fd5b506107726114a3565b60405161077f9190612fd6565b60405180910390f35b348015610793575f80fd5b5061079c6114b6565b6040516107a9919061309d565b60405180910390f35b3480156107bd575f80fd5b506107c66114bc565b6040516107d3919061309d565b60405180910390f35b3480156107e7575f80fd5b506107f06114c2565b6040516107fd9190612fd6565b60405180910390f35b348015610811575f80fd5b5061082c600480360381019061082791906131f5565b6114d4565b005b348015610839575f80fd5b50610854600480360381019061084f91906131b7565b611530565b005b348015610861575f80fd5b5061087c600480360381019061087791906131b7565b6115de565b005b348015610889575f80fd5b506108a4600480360381019061089f9190613220565b611677565b6040516108b1919061309d565b60405180910390f35b3480156108c5575f80fd5b506108ce6116f9565b6040516108db919061309d565b60405180910390f35b3480156108ef575f80fd5b5061090a60048036038101906109059190613162565b6116ff565b6040516109179190612fd6565b60405180910390f35b34801561092b575f80fd5b5061093461171c565b604051610941919061309d565b60405180910390f35b348015610955575f80fd5b5061095e611722565b60405161096b919061309d565b60405180910390f35b34801561097f575f80fd5b50610988611728565b6040516109959190612fd6565b60405180910390f35b3480156109a9575f80fd5b506109c460048036038101906109bf9190613162565b611751565b005b3480156109d1575f80fd5b506109ec60048036038101906109e79190613162565b6117df565b005b3480156109f9575f80fd5b50610a02611861565b604051610a0f9190613149565b60405180910390f35b348015610a23575f80fd5b50610a2c611886565b604051610a39919061309d565b60405180910390f35b348015610a4d575f80fd5b50610a5661188c565b604051610a639190612fd6565b60405180910390f35b606060038054610a7b9061328b565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa79061328b565b8015610af25780601f10610ac957610100808354040283529160200191610af2565b820191905f5260205f20905b815481529060010190602001808311610ad557829003601f168201915b5050505050905090565b5f610b0f610b086118b5565b84846118bc565b6001905092915050565b610b21611a7f565b80600e819055506101f4600e541115610b38575f80fd5b7fa872edbd15308577c98aad0962f729a1875f28e00ab28cba83ab55653ad3d1c381604051610b67919061309d565b60405180910390a150565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b5f610bab848484611afd565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610bf26118b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c689061332b565b60405180910390fd5b610c8585610c7d6118b5565b8584036118bc565b60019150509392505050565b5f60055f9054906101000a900460ff16905090565b5f610d43610cb26118b5565b848460015f610cbf6118b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610d3e9190613376565b6118bc565b6001905092915050565b7f0000000000000000000000009fc4831cc3c5d86b816d19bd0f55561cd80a520781565b600b5f9054906101000a900460ff1681565b5f60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610ddd611a7f565b6127106032610dea610b96565b610df491906133a9565b610dfe9190613417565b811015610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e37906134b7565b60405180910390fd5b610e48610c91565b600a610e549190613604565b81610e5f91906133a9565b600a819055507f1730415ef59f304dd1da6ed28821f819b979f6efbab42c44aebefaa4b7b5131e81604051610e94919061309d565b60405180910390a150565b60125481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f05611a7f565b610f0e5f612709565b565b60135481565b610f1e611a7f565b600b60019054906101000a900460ff1615610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590613698565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b610fae611a7f565b80600f819055506101f4600f541115610fc5575f80fd5b7fe1435708d333edbd00af16b969ad0814c8a957a37fefc22afda088dfebec2cd081604051610ff4919061309d565b60405180910390a150565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546110379061328b565b80601f01602080910402602001604051908101604052809291908181526020018280546110639061328b565b80156110ae5780601f10611085576101008083540402835291602001916110ae565b820191905f5260205f20905b81548152906001019060200180831161109157829003601f168201915b5050505050905090565b6110c0611a7f565b7f0000000000000000000000009fc4831cc3c5d86b816d19bd0f55561cd80a520773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361114e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114590613726565b60405180910390fd5b61115882826127ce565b8015158273ffffffffffffffffffffffffffffffffffffffff167f6fd08642eb227264836bd314a2faad34ea890d67a077763e0809e9acd2aa892d60405160405180910390a35050565b5f8060015f6111af6118b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611260906137b4565b60405180910390fd5b61127d6112746118b5565b858584036118bc565b600191505092915050565b5f61129b6112946118b5565b8484611afd565b6001905092915050565b6112ad611a7f565b612710600a6112ba610b96565b6112c491906133a9565b6112ce9190613417565b811015611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790613842565b60405180910390fd5b611318610c91565b600a6113249190613604565b8161132f91906133a9565b6008819055507f93f578c61e9ff613008cec299dd781e522b70349dcd321ca43de1c00d6778ea481604051611364919061309d565b60405180910390a150565b5f611378611a7f565b620186a06001611386610b96565b61139091906133a9565b61139a9190613417565b8210156113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d3906138d0565b60405180910390fd5b61271060646113e9610b96565b6113f391906133a9565b6113fd9190613417565b82111561143f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114369061395e565b60405180910390fd5b816009819055507f3bd8f1497f38289f05933d46fadc4ebe49ab69ae55fb2cc2efe549e15bb73cf682604051611475919061309d565b60405180910390a160019050919050565b6016602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b60085481565b60115481565b600d5f9054906101000a900460ff1681565b6114dc611a7f565b80600b60026101000a81548160ff0219169083151502179055507f0a02a9777cf03eb2f9c8a2400ac5f4142480e5844e543d81cf6f03416519077d816040516115259190612fd6565b60405180910390a150565b611538611a7f565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9cc19e08ba758837142b0e92d33f07d6494311434625fa20b5cfc51195abab61826040516115d29190612fd6565b60405180910390a25050565b6115e6611a7f565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f7f654cd58ed27e5f937ca593d4b7b6c2712dd47aae3a8980c67dddf81430257a828260405161166b92919061397c565b60405180910390a15050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600f5481565b6015602052805f5260405f205f915054906101000a900460ff1681565b60095481565b600e5481565b5f611731611a7f565b5f600d5f6101000a81548160ff0219169083151502179055506001905090565b611759611a7f565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f856daf618dc47b561b2d9f5801cc5d40b522d5cdfdec2b80ab0503d9393ad56560405160405180910390a250565b6117e7611a7f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90613a13565b60405180910390fd5b61185e81612709565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b5f611895611a7f565b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190613aa1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f90613b2f565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a72919061309d565b60405180910390a3505050565b611a876118b5565b73ffffffffffffffffffffffffffffffffffffffff16611aa5610fff565b73ffffffffffffffffffffffffffffffffffffffff1614611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af290613b97565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613c25565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd090613cb3565b60405180910390fd5b5f8103611bf057611beb83835f61286c565b612704565b600b5f9054906101000a900460ff161561231a57611c0c610fff565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611c7a5750611c4a610fff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611cb257505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611cec575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d055750600660149054906101000a900460ff16155b1561231957600b60019054906101000a900460ff16611df95760145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611db9575060145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def90613d1b565b60405180910390fd5b5b600b60019054906101000a900460ff168015611e205750600d5f9054906101000a900460ff165b15611fd457611e2d610fff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611eb457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f0c57507f0000000000000000000000009fc4831cc3c5d86b816d19bd0f55561cd80a520773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611fd35743600c5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790613dcf565b60405180910390fd5b43600c5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b600b60019054906101000a900460ff16156123185760165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612086575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561212d576008548111156120d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c790613e5d565b60405180910390fd5b600a546120dc83610eb8565b826120e79190613376565b1115612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f90613ec5565b60405180910390fd5b612317565b60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156121ca575060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561221957600854811115612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b90613f53565b60405180910390fd5b612316565b60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156122b7575060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561231557600a546122c883610eb8565b826122d39190613376565b1115612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90613ec5565b60405180910390fd5b5b5b5b5b5b5b5f61232430610eb8565b90505f60095482101590508080156123485750600b60029054906101000a900460ff165b80156123615750600660149054906101000a900460ff16155b80156123b4575060165f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612407575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561245a575060145f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156124695750601154601354115b156124b8576001600660146101000a81548160ff02191690831515021790555061249d61249883601054612ae1565b612af9565b5f600660146101000a81548160ff0219169083151502179055505b5f600660149054906101000a900460ff1615905060145f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612567575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612570575f90505b5f81156126c65760165f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156125ce57505f600f54115b15612603576125fc6127106125ee600f5488612ba990919063ffffffff16565b612bbe90919063ffffffff16565b90506126a3565b60165f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561265a57505f600e54115b156126a25761268861271061267a600e5488612ba990919063ffffffff16565b612bbe90919063ffffffff16565b905060135f81548092919061269c90613f71565b91905055505b5b5f8111156126b7576126b687308361286c565b5b80856126c39190613fb8565b94505b6126d187878761286c565b601254601354101580156126f05750600b5f9054906101000a900460ff165b156126ff576126fd612bd3565b505b505050505b505050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f6fd08642eb227264836bd314a2faad34ea890d67a077763e0809e9acd2aa892d60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d190613c25565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293f90613cb3565b60405180910390fd5b612953838383612c06565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd9061405b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254612a649190613376565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ac8919061309d565b60405180910390a3612adb848484612c0b565b50505050565b5f818311612aef5782612af1565b815b905092915050565b5f808203612b075750612ba6565b5f829050612b1481612c10565b5f47905060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612b5d906140a6565b5f6040518083038185875af1925050503d805f8114612b97576040519150601f19603f3d011682016040523d82523d5f602084013e612b9c565b606091505b5050809350505050505b50565b5f8183612bb691906133a9565b905092915050565b5f8183612bcb9190613417565b905092915050565b5f80600b5f6101000a81548160ff02191690831515021790555061012c600e8190555061012c600f819055506001905090565b505050565b505050565b5f600267ffffffffffffffff811115612c2c57612c2b6140ba565b5b604051908082528060200260200182016040528015612c5a5781602001602082028036833780820191505090505b50905030815f81518110612c7157612c706140e7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d14573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d389190614128565b81600181518110612d4c57612d4b6140e7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612db1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846118bc565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612e12959493929190614243565b5f604051808303815f87803b158015612e29575f80fd5b505af1158015612e3b573d5f803e3d5ffd5b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612e7a578082015181840152602081019050612e5f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612e9f82612e43565b612ea98185612e4d565b9350612eb9818560208601612e5d565b612ec281612e85565b840191505092915050565b5f6020820190508181035f830152612ee58184612e95565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612f1a82612ef1565b9050919050565b612f2a81612f10565b8114612f34575f80fd5b50565b5f81359050612f4581612f21565b92915050565b5f819050919050565b612f5d81612f4b565b8114612f67575f80fd5b50565b5f81359050612f7881612f54565b92915050565b5f8060408385031215612f9457612f93612eed565b5b5f612fa185828601612f37565b9250506020612fb285828601612f6a565b9150509250929050565b5f8115159050919050565b612fd081612fbc565b82525050565b5f602082019050612fe95f830184612fc7565b92915050565b5f6020828403121561300457613003612eed565b5b5f61301184828501612f6a565b91505092915050565b5f819050919050565b5f61303d61303861303384612ef1565b61301a565b612ef1565b9050919050565b5f61304e82613023565b9050919050565b5f61305f82613044565b9050919050565b61306f81613055565b82525050565b5f6020820190506130885f830184613066565b92915050565b61309781612f4b565b82525050565b5f6020820190506130b05f83018461308e565b92915050565b5f805f606084860312156130cd576130cc612eed565b5b5f6130da86828701612f37565b93505060206130eb86828701612f37565b92505060406130fc86828701612f6a565b9150509250925092565b5f60ff82169050919050565b61311b81613106565b82525050565b5f6020820190506131345f830184613112565b92915050565b61314381612f10565b82525050565b5f60208201905061315c5f83018461313a565b92915050565b5f6020828403121561317757613176612eed565b5b5f61318484828501612f37565b91505092915050565b61319681612fbc565b81146131a0575f80fd5b50565b5f813590506131b18161318d565b92915050565b5f80604083850312156131cd576131cc612eed565b5b5f6131da85828601612f37565b92505060206131eb858286016131a3565b9150509250929050565b5f6020828403121561320a57613209612eed565b5b5f613217848285016131a3565b91505092915050565b5f806040838503121561323657613235612eed565b5b5f61324385828601612f37565b925050602061325485828601612f37565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806132a257607f821691505b6020821081036132b5576132b461325e565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f613315602883612e4d565b9150613320826132bb565b604082019050919050565b5f6020820190508181035f83015261334281613309565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61338082612f4b565b915061338b83612f4b565b92508282019050808211156133a3576133a2613349565b5b92915050565b5f6133b382612f4b565b91506133be83612f4b565b92508282026133cc81612f4b565b915082820484148315176133e3576133e2613349565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61342182612f4b565b915061342c83612f4b565b92508261343c5761343b6133ea565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f6134a1602483612e4d565b91506134ac82613447565b604082019050919050565b5f6020820190508181035f8301526134ce81613495565b9050919050565b5f8160011c9050919050565b5f808291508390505b600185111561352a5780860481111561350657613505613349565b5b60018516156135155780820291505b8081029050613523856134d5565b94506134ea565b94509492505050565b5f8261354257600190506135fd565b8161354f575f90506135fd565b8160018114613565576002811461356f5761359e565b60019150506135fd565b60ff84111561358157613580613349565b5b8360020a91508482111561359857613597613349565b5b506135fd565b5060208310610133831016604e8410600b84101617156135d35782820a9050838111156135ce576135cd613349565b5b6135fd565b6135e084848460016134e1565b925090508184048111156135f7576135f6613349565b5b81810290505b9392505050565b5f61360e82612f4b565b915061361983613106565b92506136467fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613533565b905092915050565b7f546f6b656e206c61756e636865640000000000000000000000000000000000005f82015250565b5f613682600e83612e4d565b915061368d8261364e565b602082019050919050565b5f6020820190508181035f8301526136af81613676565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f613710603983612e4d565b915061371b826136b6565b604082019050919050565b5f6020820190508181035f83015261373d81613704565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61379e602583612e4d565b91506137a982613744565b604082019050919050565b5f6020820190508181035f8301526137cb81613792565b9050919050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e206c6f776572205f8201527f7468616e20302e31250000000000000000000000000000000000000000000000602082015250565b5f61382c602983612e4d565b9150613837826137d2565b604082019050919050565b5f6020820190508181035f83015261385981613820565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6138ba603583612e4d565b91506138c582613860565b604082019050919050565b5f6020820190508181035f8301526138e7816138ae565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b5f613948603283612e4d565b9150613953826138ee565b604082019050919050565b5f6020820190508181035f8301526139758161393c565b9050919050565b5f60408201905061398f5f83018561313a565b61399c6020830184612fc7565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6139fd602683612e4d565b9150613a08826139a3565b604082019050919050565b5f6020820190508181035f830152613a2a816139f1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613a8b602483612e4d565b9150613a9682613a31565b604082019050919050565b5f6020820190508181035f830152613ab881613a7f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613b19602283612e4d565b9150613b2482613abf565b604082019050919050565b5f6020820190508181035f830152613b4681613b0d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613b81602083612e4d565b9150613b8c82613b4d565b602082019050919050565b5f6020820190508181035f830152613bae81613b75565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613c0f602583612e4d565b9150613c1a82613bb5565b604082019050919050565b5f6020820190508181035f830152613c3c81613c03565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613c9d602383612e4d565b9150613ca882613c43565b604082019050919050565b5f6020820190508181035f830152613cca81613c91565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613d05601683612e4d565b9150613d1082613cd1565b602082019050919050565b5f6020820190508181035f830152613d3281613cf9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f613db9604983612e4d565b9150613dc482613d39565b606082019050919050565b5f6020820190508181035f830152613de681613dad565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e2e0000000000000000000000000000000000602082015250565b5f613e47602f83612e4d565b9150613e5282613ded565b604082019050919050565b5f6020820190508181035f830152613e7481613e3b565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613eaf601383612e4d565b9150613eba82613e7b565b602082019050919050565b5f6020820190508181035f830152613edc81613ea3565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e2e00000000000000000000000000000000602082015250565b5f613f3d603083612e4d565b9150613f4882613ee3565b604082019050919050565b5f6020820190508181035f830152613f6a81613f31565b9050919050565b5f613f7b82612f4b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613fad57613fac613349565b5b600182019050919050565b5f613fc282612f4b565b9150613fcd83612f4b565b9250828203905081811115613fe557613fe4613349565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614045602683612e4d565b915061405082613feb565b604082019050919050565b5f6020820190508181035f83015261407281614039565b9050919050565b5f81905092915050565b50565b5f6140915f83614079565b915061409c82614083565b5f82019050919050565b5f6140b082614086565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061412281612f21565b92915050565b5f6020828403121561413d5761413c612eed565b5b5f61414a84828501614114565b91505092915050565b5f819050919050565b5f61417661417161416c84614153565b61301a565b612f4b565b9050919050565b6141868161415c565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6141be81612f10565b82525050565b5f6141cf83836141b5565b60208301905092915050565b5f602082019050919050565b5f6141f18261418c565b6141fb8185614196565b9350614206836141a6565b805f5b8381101561423657815161421d88826141c4565b9750614228836141db565b925050600181019050614209565b5085935050505092915050565b5f60a0820190506142565f83018861308e565b614263602083018761417d565b818103604083015261427581866141e7565b9050614284606083018561313a565b614291608083018461308e565b969550505050505056fea2646970667358221220ed78700d98a43a79b3d5b24f3790dc6f640db9826053e5d5e353d49841eb33f064736f6c63430008160033

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

000000000000000000000000cdce874c7cbb917e9cf4330fd668e06997d83664

-----Decoded View---------------
Arg [0] : _taxWallet (address): 0xcDCE874c7Cbb917e9cf4330FD668E06997d83664

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000cdce874c7cbb917e9cf4330fd668e06997d83664


Deployed Bytecode Sourcemap

28487:12397:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13609:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14596:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40157:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28565:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13937:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14798:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13829:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15335:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28623:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28914:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32709:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39414:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29296:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28994:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14053:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20449:103;;;;;;;;;;;;;:::i;:::-;;29338:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31890:164;;;;;;;;;;;;;:::i;:::-;;40337:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19808:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13717:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38146:353;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15633:475;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14204:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39059:347;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38507:544;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29499:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28954:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28805:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29251:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29101:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39989:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40521:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39749:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14412:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29178:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29435:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28841:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29149:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32360:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40726:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20707:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28668:66;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28881:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32230:122;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13609:100;13663:13;13696:5;13689:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13609:100;:::o;14596:194::-;14704:4;14721:39;14730:12;:10;:12::i;:::-;14744:7;14753:6;14721:8;:39::i;:::-;14778:4;14771:11;;14596:194;;;;:::o;40157:172::-;19694:13;:11;:13::i;:::-;40235:9:::1;40225:7;:19;;;;40274:3;40263:7;;:14;;40255:23;;;::::0;::::1;;40294:27;40311:9;40294:27;;;;;;:::i;:::-;;;;;;;;40157:172:::0;:::o;28565:51::-;;;:::o;13937:108::-;13998:7;14025:12;;14018:19;;13937:108;:::o;14798:529::-;14938:4;14955:36;14965:6;14973:9;14984:6;14955:9;:36::i;:::-;15004:24;15031:11;:19;15043:6;15031:19;;;;;;;;;;;;;;;:33;15051:12;:10;:12::i;:::-;15031:33;;;;;;;;;;;;;;;;15004:60;;15117:6;15097:16;:26;;15075:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;15227:57;15236:6;15244:12;:10;:12::i;:::-;15277:6;15258:16;:25;15227:8;:57::i;:::-;15315:4;15308:11;;;14798:529;;;;;:::o;13829:100::-;13887:5;13912:9;;;;;;;;;;;13905:16;;13829:100;:::o;15335:290::-;15448:4;15465:130;15488:12;:10;:12::i;:::-;15515:7;15574:10;15537:11;:25;15549:12;:10;:12::i;:::-;15537:25;;;;;;;;;;;;;;;:34;15563:7;15537:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;15465:8;:130::i;:::-;15613:4;15606:11;;15335:290;;;;:::o;28623:38::-;;;:::o;28914:33::-;;;;;;;;;;;;;:::o;32709:126::-;32775:4;32799:19;:28;32819:7;32799:28;;;;;;;;;;;;;;;;;;;;;;;;;32792:35;;32709:126;;;:::o;39414:327::-;19694:13;:11;:13::i;:::-;39554:6:::1;39548:2;39532:13;:11;:13::i;:::-;:18;;;;:::i;:::-;39531:29;;;;:::i;:::-;39512:14;:49;;39490:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;39672:10;:8;:10::i;:::-;39666:2;:16;;;;:::i;:::-;39648:14;:35;;;;:::i;:::-;39636:9;:47;;;;39699:34;39718:14;39699:34;;;;;;:::i;:::-;;;;;;;;39414:327:::0;:::o;29296:35::-;;;;:::o;28994:31::-;;;;;;;;;;;;;:::o;14053:143::-;14143:7;14170:9;:18;14180:7;14170:18;;;;;;;;;;;;;;;;14163:25;;14053:143;;;:::o;20449:103::-;19694:13;:11;:13::i;:::-;20514:30:::1;20541:1;20514:18;:30::i;:::-;20449:103::o:0;29338:29::-;;;;:::o;31890:164::-;19694:13;:11;:13::i;:::-;31954::::1;;;;;;;;;;;31953:14;31945:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;32013:4;31997:13;;:20;;;;;;;;;;;;;;;;;;32042:4;32028:11;;:18;;;;;;;;;;;;;;;;;;31890:164::o:0;40337:176::-;19694:13;:11;:13::i;:::-;40417:9:::1;40406:8;:20;;;;40457:3;40445:8;;:15;;40437:24;;;::::0;::::1;;40477:28;40495:9;40477:28;;;;;;:::i;:::-;;;;;;;;40337:176:::0;:::o;19808:87::-;19854:7;19881:6;;;;;;;;;;;19874:13;;19808:87;:::o;13717:104::-;13773:13;13806:7;13799:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13717:104;:::o;38146:353::-;19694:13;:11;:13::i;:::-;38271::::1;38263:21;;:4;:21;;::::0;38241:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38380:45;38409:4;38415:9;38380:28;:45::i;:::-;38481:9;38441:50;;38475:4;38441:50;;;;;;;;;;;;38146:353:::0;;:::o;15633:475::-;15751:4;15768:24;15795:11;:25;15807:12;:10;:12::i;:::-;15795:25;;;;;;;;;;;;;;;:34;15821:7;15795:34;;;;;;;;;;;;;;;;15768:61;;15882:15;15862:16;:35;;15840:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;15998:67;16007:12;:10;:12::i;:::-;16021:7;16049:15;16030:16;:34;15998:8;:67::i;:::-;16096:4;16089:11;;;15633:475;;;;:::o;14204:200::-;14315:4;14332:42;14342:12;:10;:12::i;:::-;14356:9;14367:6;14332:9;:42::i;:::-;14392:4;14385:11;;14204:200;;;;:::o;39059:347::-;19694:13;:11;:13::i;:::-;39204:6:::1;39198:2;39182:13;:11;:13::i;:::-;:18;;;;:::i;:::-;39181:29;;;;:::i;:::-;39162:14;:49;;39140:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39332:10;:8;:10::i;:::-;39326:2;:16;;;;:::i;:::-;39308:14;:35;;;;:::i;:::-;39291:14;:52;;;;39359:39;39383:14;39359:39;;;;;;:::i;:::-;;;;;;;;39059:347:::0;:::o;38507:544::-;38590:4;19694:13;:11;:13::i;:::-;38669:7:::1;38664:1;38648:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38647:29;;;;:::i;:::-;38629:14;:47;;38607:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;38832:6;38825:3;38809:13;:11;:13::i;:::-;:19;;;;:::i;:::-;38808:30;;;;:::i;:::-;38790:14;:48;;38768:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;38948:14;38927:18;:35;;;;38978:43;39006:14;38978:43;;;;;;:::i;:::-;;;;;;;;39039:4;39032:11;;38507:544:::0;;;:::o;29499:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;28954:33::-;;;;;;;;;;;;;:::o;28805:29::-;;;;:::o;29251:38::-;;;;:::o;29101:39::-;;;;;;;;;;;;;:::o;39989:160::-;19694:13;:11;:13::i;:::-;40079:9:::1;40065:11;;:23;;;;;;;;;;;;;;;;;;40104:37;40131:9;40104:37;;;;;;:::i;:::-;;;;;;;;39989:160:::0;:::o;40521:197::-;19694:13;:11;:13::i;:::-;40641:9:::1;40610:19;:28;40630:7;40610:28;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;40691:7;40666:44;;;40700:9;40666:44;;;;;;:::i;:::-;;;;;;;;40521:197:::0;;:::o;39749:232::-;19694:13;:11;:13::i;:::-;39891:9:::1;39851:25;:37;39877:10;39851:37;;;;;;;;;;;;;;;;:49;;;;;;;;;;;;;;;;;;39916:57;39951:10;39963:9;39916:57;;;;;;;:::i;:::-;;;;;;;;39749:232:::0;;:::o;14412:176::-;14526:7;14553:11;:18;14565:5;14553:18;;;;;;;;;;;;;;;:27;14572:7;14553:27;;;;;;;;;;;;;;;;14546:34;;14412:176;;;;:::o;29178:23::-;;;;:::o;29435:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;28841:33::-;;;;:::o;29149:22::-;;;;:::o;32360:135::-;32420:4;19694:13;:11;:13::i;:::-;32460:5:::1;32437:20;;:28;;;;;;;;;;;;;;;;;;32483:4;32476:11;;32360:135:::0;:::o;40726:155::-;19694:13;:11;:13::i;:::-;40812:12:::1;40800:9;;:24;;;;;;;;;;;;;;;;;;40860:12;40840:33;;;;;;;;;;;;40726:155:::0;:::o;20707:238::-;19694:13;:11;:13::i;:::-;20830:1:::1;20810:22;;:8;:22;;::::0;20788:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;20909:28;20928:8;20909:18;:28::i;:::-;20707:238:::0;:::o;28668:66::-;;;;;;;;;;;;;:::o;28881:24::-;;;;:::o;32230:122::-;32283:4;19694:13;:11;:13::i;:::-;32317:5:::1;32300:14;;:22;;;;;;;;;;;;;;;;;;32340:4;32333:11;;32230:122:::0;:::o;12851:98::-;12904:7;12931:10;12924:17;;12851:98;:::o;17900:380::-;18053:1;18036:19;;:5;:19;;;18028:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18134:1;18115:21;;:7;:21;;;18107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18218:6;18188:11;:18;18200:5;18188:18;;;;;;;;;;;;;;;:27;18207:7;18188:27;;;;;;;;;;;;;;;:36;;;;18256:7;18240:32;;18249:5;18240:32;;;18265:6;18240:32;;;;;;:::i;:::-;;;;;;;;17900:380;;;:::o;19973:132::-;20048:12;:10;:12::i;:::-;20037:23;;:7;:5;:7::i;:::-;:23;;;20029:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19973:132::o;32843:4316::-;32991:1;32975:18;;:4;:18;;;32967:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33068:1;33054:16;;:2;:16;;;33046:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33137:1;33127:6;:11;33123:93;;33155:28;33171:4;33177:2;33181:1;33155:15;:28::i;:::-;33198:7;;33123:93;33232:14;;;;;;;;;;;33228:2493;;;33293:7;:5;:7::i;:::-;33285:15;;:4;:15;;;;:49;;;;;33327:7;:5;:7::i;:::-;33321:13;;:2;:13;;;;33285:49;:86;;;;;33369:1;33355:16;;:2;:16;;;;33285:86;:128;;;;;33406:6;33392:21;;:2;:21;;;;33285:128;:158;;;;;33435:8;;;;;;;;;;;33434:9;33285:158;33263:2447;;;33483:13;;;;;;;;;;;33478:223;;33555:19;:25;33575:4;33555:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;33584:19;:23;33604:2;33584:23;;;;;;;;;;;;;;;;;;;;;;;;;33555:52;33521:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;33478:223;33725:13;;;;;;;;;;;:37;;;;;33742:20;;;;;;;;;;;33725:37;33721:617;;;33823:7;:5;:7::i;:::-;33817:13;;:2;:13;;;;:72;;;;;33873:15;33859:30;;:2;:30;;;;33817:72;:129;;;;;33932:13;33918:28;;:2;:28;;;;33817:129;33787:532;;;34073:12;34035:24;:35;34060:9;34035:35;;;;;;;;;;;;;;;;:50;33997:221;;;;;;;;;;;;:::i;:::-;;;;;;;;;34283:12;34245:24;:35;34270:9;34245:35;;;;;;;;;;;;;;;:50;;;;33787:532;33721:617;34362:13;;;;;;;;;;;34358:1337;;;34463:25;:31;34489:4;34463:31;;;;;;;;;;;;;;;;;;;;;;;;;:90;;;;;34524:25;:29;34550:2;34524:29;;;;;;;;;;;;;;;;;;;;;;;;;34523:30;34463:90;34433:1243;;;34652:14;;34642:6;:24;;34604:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;34864:9;;34847:13;34857:2;34847:9;:13::i;:::-;34838:6;:22;;;;:::i;:::-;:35;;34800:152;;;;;;;;;;;;:::i;:::-;;;;;;;;;34433:1243;;;35066:25;:29;35092:2;35066:29;;;;;;;;;;;;;;;;;;;;;;;;;:90;;;;;35125:25;:31;35151:4;35125:31;;;;;;;;;;;;;;;;;;;;;;;;;35124:32;35066:90;35036:640;;;35255:14;;35245:6;:24;;35207:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;35036:640;;;35412:25;:29;35438:2;35412:29;;;;;;;;;;;;;;;;;;;;;;;;;35411:30;:60;;;;;35446:19;:25;35466:4;35446:25;;;;;;;;;;;;;;;;;;;;;;;;;35445:26;35411:60;35407:269;;;35564:9;;35547:13;35557:2;35547:9;:13::i;:::-;35538:6;:22;;;;:::i;:::-;:35;;35500:152;;;;;;;;;;;;:::i;:::-;;;;;;;;;35407:269;35036:640;34433:1243;34358:1337;33263:2447;33228:2493;35733:28;35764:24;35782:4;35764:9;:24::i;:::-;35733:55;;35801:12;35840:18;;35816:20;:42;;35801:57;;35889:7;:35;;;;;35913:11;;;;;;;;;;;35889:35;:61;;;;;35942:8;;;;;;;;;;;35941:9;35889:61;:110;;;;;35968:25;:31;35994:4;35968:31;;;;;;;;;;;;;;;;;;;;;;;;;35967:32;35889:110;:153;;;;;36017:19;:25;36037:4;36017:25;;;;;;;;;;;;;;;;;;;;;;;;;36016:26;35889:153;:194;;;;;36060:19;:23;36080:2;36060:23;;;;;;;;;;;;;;;;;;;;;;;;;36059:24;35889:194;:242;;;;;36113:18;;36100:10;;:31;35889:242;35871:415;;;36169:4;36158:8;;:15;;;;;;;;;;;;;;;;;;36188:55;36197:45;36201:20;36223:18;;36197:3;:45::i;:::-;36188:8;:55::i;:::-;36269:5;36258:8;;:16;;;;;;;;;;;;;;;;;;35871:415;36298:12;36314:8;;;;;;;;;;;36313:9;36298:24;;36339:19;:25;36359:4;36339:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;36368:19;:23;36388:2;36368:23;;;;;;;;;;;;;;;;;;;;;;;;;36339:52;36335:100;;;36418:5;36408:15;;36335:100;36447:12;36480:7;36476:524;;;36532:25;:29;36558:2;36532:29;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;36576:1;36565:8;;:12;36532:45;36528:323;;;36605:32;36630:6;36605:20;36616:8;;36605:6;:10;;:20;;;;:::i;:::-;:24;;:32;;;;:::i;:::-;36598:39;;36528:323;;;36699:25;:31;36725:4;36699:31;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;36744:1;36734:7;;:11;36699:46;36695:156;;;36773:31;36797:6;36773:19;36784:7;;36773:6;:10;;:19;;;;:::i;:::-;:23;;:31;;;;:::i;:::-;36766:38;;36823:10;;:12;;;;;;;;;:::i;:::-;;;;;;36695:156;36528:323;36878:1;36871:4;:8;36867:91;;;36900:42;36916:4;36930;36937;36900:15;:42::i;:::-;36867:91;36984:4;36974:14;;;;;:::i;:::-;;;36476:524;37012:33;37028:4;37034:2;37038:6;37012:15;:33::i;:::-;37076:15;;37062:10;;:29;;:47;;;;;37095:14;;;;;;;;;;;37062:47;37058:94;;;37126:14;:12;:14::i;:::-;;37058:94;32956:4203;;;;32843:4316;;;;:::o;21105:191::-;21179:16;21198:6;;;;;;;;;;;21179:25;;21224:8;21215:6;;:17;;;;;;;;;;;;;;;;;;21279:8;21248:40;;21269:8;21248:40;;;;;;;;;;;;21168:128;21105:191;:::o;32503:194::-;32620:5;32586:25;:31;32612:4;32586:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;32683:5;32643:46;;32677:4;32643:46;;;;;;;;;;;;32503:194;;:::o;16116:770::-;16274:1;16256:20;;:6;:20;;;16248:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;16358:1;16337:23;;:9;:23;;;16329:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16413:47;16434:6;16442:9;16453:6;16413:20;:47::i;:::-;16473:21;16497:9;:17;16507:6;16497:17;;;;;;;;;;;;;;;;16473:41;;16564:6;16547:13;:23;;16525:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;16708:6;16692:13;:22;16672:9;:17;16682:6;16672:17;;;;;;;;;;;;;;;:42;;;;16760:6;16736:9;:20;16746:9;16736:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16801:9;16784:35;;16793:6;16784:35;;;16812:6;16784:35;;;;;;:::i;:::-;;;;;;;;16832:46;16852:6;16860:9;16871:6;16832:19;:46::i;:::-;16237:649;16116:770;;;:::o;37167:107::-;37224:7;37256:1;37252;:5;37251:15;;37265:1;37251:15;;;37261:1;37251:15;37244:22;;37167:107;;;;:::o;37765:358::-;37818:12;37857:1;37847:6;:11;37843:50;;37875:7;;;37843:50;37905:26;37934:6;37905:35;;37953:36;37970:18;37953:16;:36::i;:::-;38002:18;38023:21;38002:42;;38077:9;;;;;;;;;;;38069:23;;38100:10;38069:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38055:60;;;;;37807:316;;;37765:358;;:::o;25033:98::-;25091:7;25122:1;25118;:5;;;;:::i;:::-;25111:12;;25033:98;;;;:::o;25432:::-;25490:7;25521:1;25517;:5;;;;:::i;:::-;25510:12;;25432:98;;;;:::o;32062:160::-;32104:4;32138:5;32121:14;;:22;;;;;;;;;;;;;;;;;;32164:3;32154:7;:13;;;;32189:3;32178:8;:14;;;;32210:4;32203:11;;32062:160;:::o;18288:125::-;;;;:::o;18421:124::-;;;;:::o;37282:475::-;37348:21;37386:1;37372:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37348:40;;37417:4;37399;37404:1;37399:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;37443:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37433:4;37438:1;37433:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;37478:62;37495:4;37510:15;37528:11;37478:8;:62::i;:::-;37553:15;:66;;;37634:11;37660:1;37676:4;37703;37723:15;37553:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37337:420;37282:475;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:152::-;4203:9;4236:37;4267:5;4236:37;:::i;:::-;4223:50;;4127:152;;;:::o;4285:183::-;4398:63;4455:5;4398:63;:::i;:::-;4393:3;4386:76;4285:183;;:::o;4474:274::-;4593:4;4631:2;4620:9;4616:18;4608:26;;4644:97;4738:1;4727:9;4723:17;4714:6;4644:97;:::i;:::-;4474:274;;;;:::o;4754:118::-;4841:24;4859:5;4841:24;:::i;:::-;4836:3;4829:37;4754:118;;:::o;4878:222::-;4971:4;5009:2;4998:9;4994:18;4986:26;;5022:71;5090:1;5079:9;5075:17;5066:6;5022:71;:::i;:::-;4878:222;;;;:::o;5106:619::-;5183:6;5191;5199;5248:2;5236:9;5227:7;5223:23;5219:32;5216:119;;;5254:79;;:::i;:::-;5216:119;5374:1;5399:53;5444:7;5435:6;5424:9;5420:22;5399:53;:::i;:::-;5389:63;;5345:117;5501:2;5527:53;5572:7;5563:6;5552:9;5548:22;5527:53;:::i;:::-;5517:63;;5472:118;5629:2;5655:53;5700:7;5691:6;5680:9;5676:22;5655:53;:::i;:::-;5645:63;;5600:118;5106:619;;;;;:::o;5731:86::-;5766:7;5806:4;5799:5;5795:16;5784:27;;5731:86;;;:::o;5823:112::-;5906:22;5922:5;5906:22;:::i;:::-;5901:3;5894:35;5823:112;;:::o;5941:214::-;6030:4;6068:2;6057:9;6053:18;6045:26;;6081:67;6145:1;6134:9;6130:17;6121:6;6081:67;:::i;:::-;5941:214;;;;:::o;6161:118::-;6248:24;6266:5;6248:24;:::i;:::-;6243:3;6236:37;6161:118;;:::o;6285:222::-;6378:4;6416:2;6405:9;6401:18;6393:26;;6429:71;6497:1;6486:9;6482:17;6473:6;6429:71;:::i;:::-;6285:222;;;;:::o;6513:329::-;6572:6;6621:2;6609:9;6600:7;6596:23;6592:32;6589:119;;;6627:79;;:::i;:::-;6589:119;6747:1;6772:53;6817:7;6808:6;6797:9;6793:22;6772:53;:::i;:::-;6762:63;;6718:117;6513:329;;;;:::o;6848:116::-;6918:21;6933:5;6918:21;:::i;:::-;6911:5;6908:32;6898:60;;6954:1;6951;6944:12;6898:60;6848:116;:::o;6970:133::-;7013:5;7051:6;7038:20;7029:29;;7067:30;7091:5;7067:30;:::i;:::-;6970:133;;;;:::o;7109:468::-;7174:6;7182;7231:2;7219:9;7210:7;7206:23;7202:32;7199:119;;;7237:79;;:::i;:::-;7199:119;7357:1;7382:53;7427:7;7418:6;7407:9;7403:22;7382:53;:::i;:::-;7372:63;;7328:117;7484:2;7510:50;7552:7;7543:6;7532:9;7528:22;7510:50;:::i;:::-;7500:60;;7455:115;7109:468;;;;;:::o;7583:323::-;7639:6;7688:2;7676:9;7667:7;7663:23;7659:32;7656:119;;;7694:79;;:::i;:::-;7656:119;7814:1;7839:50;7881:7;7872:6;7861:9;7857:22;7839:50;:::i;:::-;7829:60;;7785:114;7583:323;;;;:::o;7912:474::-;7980:6;7988;8037:2;8025:9;8016:7;8012:23;8008:32;8005:119;;;8043:79;;:::i;:::-;8005:119;8163:1;8188:53;8233:7;8224:6;8213:9;8209:22;8188:53;:::i;:::-;8178:63;;8134:117;8290:2;8316:53;8361:7;8352:6;8341:9;8337:22;8316:53;:::i;:::-;8306:63;;8261:118;7912:474;;;;;:::o;8392:180::-;8440:77;8437:1;8430:88;8537:4;8534:1;8527:15;8561:4;8558:1;8551:15;8578:320;8622:6;8659:1;8653:4;8649:12;8639:22;;8706:1;8700:4;8696:12;8727:18;8717:81;;8783:4;8775:6;8771:17;8761:27;;8717:81;8845:2;8837:6;8834:14;8814:18;8811:38;8808:84;;8864:18;;:::i;:::-;8808:84;8629:269;8578:320;;;:::o;8904:227::-;9044:34;9040:1;9032:6;9028:14;9021:58;9113:10;9108:2;9100:6;9096:15;9089:35;8904:227;:::o;9137:366::-;9279:3;9300:67;9364:2;9359:3;9300:67;:::i;:::-;9293:74;;9376:93;9465:3;9376:93;:::i;:::-;9494:2;9489:3;9485:12;9478:19;;9137:366;;;:::o;9509:419::-;9675:4;9713:2;9702:9;9698:18;9690:26;;9762:9;9756:4;9752:20;9748:1;9737:9;9733:17;9726:47;9790:131;9916:4;9790:131;:::i;:::-;9782:139;;9509:419;;;:::o;9934:180::-;9982:77;9979:1;9972:88;10079:4;10076:1;10069:15;10103:4;10100:1;10093:15;10120:191;10160:3;10179:20;10197:1;10179:20;:::i;:::-;10174:25;;10213:20;10231:1;10213:20;:::i;:::-;10208:25;;10256:1;10253;10249:9;10242:16;;10277:3;10274:1;10271:10;10268:36;;;10284:18;;:::i;:::-;10268:36;10120:191;;;;:::o;10317:410::-;10357:7;10380:20;10398:1;10380:20;:::i;:::-;10375:25;;10414:20;10432:1;10414:20;:::i;:::-;10409:25;;10469:1;10466;10462:9;10491:30;10509:11;10491:30;:::i;:::-;10480:41;;10670:1;10661:7;10657:15;10654:1;10651:22;10631:1;10624:9;10604:83;10581:139;;10700:18;;:::i;:::-;10581:139;10365:362;10317:410;;;;:::o;10733:180::-;10781:77;10778:1;10771:88;10878:4;10875:1;10868:15;10902:4;10899:1;10892:15;10919:185;10959:1;10976:20;10994:1;10976:20;:::i;:::-;10971:25;;11010:20;11028:1;11010:20;:::i;:::-;11005:25;;11049:1;11039:35;;11054:18;;:::i;:::-;11039:35;11096:1;11093;11089:9;11084:14;;10919:185;;;;:::o;11110:223::-;11250:34;11246:1;11238:6;11234:14;11227:58;11319:6;11314:2;11306:6;11302:15;11295:31;11110:223;:::o;11339:366::-;11481:3;11502:67;11566:2;11561:3;11502:67;:::i;:::-;11495:74;;11578:93;11667:3;11578:93;:::i;:::-;11696:2;11691:3;11687:12;11680:19;;11339:366;;;:::o;11711:419::-;11877:4;11915:2;11904:9;11900:18;11892:26;;11964:9;11958:4;11954:20;11950:1;11939:9;11935:17;11928:47;11992:131;12118:4;11992:131;:::i;:::-;11984:139;;11711:419;;;:::o;12136:102::-;12178:8;12225:5;12222:1;12218:13;12197:34;;12136:102;;;:::o;12244:848::-;12305:5;12312:4;12336:6;12327:15;;12360:5;12351:14;;12374:712;12395:1;12385:8;12382:15;12374:712;;;12490:4;12485:3;12481:14;12475:4;12472:24;12469:50;;;12499:18;;:::i;:::-;12469:50;12549:1;12539:8;12535:16;12532:451;;;12964:4;12957:5;12953:16;12944:25;;12532:451;13014:4;13008;13004:15;12996:23;;13044:32;13067:8;13044:32;:::i;:::-;13032:44;;12374:712;;;12244:848;;;;;;;:::o;13098:1073::-;13152:5;13343:8;13333:40;;13364:1;13355:10;;13366:5;;13333:40;13392:4;13382:36;;13409:1;13400:10;;13411:5;;13382:36;13478:4;13526:1;13521:27;;;;13562:1;13557:191;;;;13471:277;;13521:27;13539:1;13530:10;;13541:5;;;13557:191;13602:3;13592:8;13589:17;13586:43;;;13609:18;;:::i;:::-;13586:43;13658:8;13655:1;13651:16;13642:25;;13693:3;13686:5;13683:14;13680:40;;;13700:18;;:::i;:::-;13680:40;13733:5;;;13471:277;;13857:2;13847:8;13844:16;13838:3;13832:4;13829:13;13825:36;13807:2;13797:8;13794:16;13789:2;13783:4;13780:12;13776:35;13760:111;13757:246;;;13913:8;13907:4;13903:19;13894:28;;13948:3;13941:5;13938:14;13935:40;;;13955:18;;:::i;:::-;13935:40;13988:5;;13757:246;14028:42;14066:3;14056:8;14050:4;14047:1;14028:42;:::i;:::-;14013:57;;;;14102:4;14097:3;14093:14;14086:5;14083:25;14080:51;;;14111:18;;:::i;:::-;14080:51;14160:4;14153:5;14149:16;14140:25;;13098:1073;;;;;;:::o;14177:281::-;14235:5;14259:23;14277:4;14259:23;:::i;:::-;14251:31;;14303:25;14319:8;14303:25;:::i;:::-;14291:37;;14347:104;14384:66;14374:8;14368:4;14347:104;:::i;:::-;14338:113;;14177:281;;;;:::o;14464:164::-;14604:16;14600:1;14592:6;14588:14;14581:40;14464:164;:::o;14634:366::-;14776:3;14797:67;14861:2;14856:3;14797:67;:::i;:::-;14790:74;;14873:93;14962:3;14873:93;:::i;:::-;14991:2;14986:3;14982:12;14975:19;;14634:366;;;:::o;15006:419::-;15172:4;15210:2;15199:9;15195:18;15187:26;;15259:9;15253:4;15249:20;15245:1;15234:9;15230:17;15223:47;15287:131;15413:4;15287:131;:::i;:::-;15279:139;;15006:419;;;:::o;15431:244::-;15571:34;15567:1;15559:6;15555:14;15548:58;15640:27;15635:2;15627:6;15623:15;15616:52;15431:244;:::o;15681:366::-;15823:3;15844:67;15908:2;15903:3;15844:67;:::i;:::-;15837:74;;15920:93;16009:3;15920:93;:::i;:::-;16038:2;16033:3;16029:12;16022:19;;15681:366;;;:::o;16053:419::-;16219:4;16257:2;16246:9;16242:18;16234:26;;16306:9;16300:4;16296:20;16292:1;16281:9;16277:17;16270:47;16334:131;16460:4;16334:131;:::i;:::-;16326:139;;16053:419;;;:::o;16478:224::-;16618:34;16614:1;16606:6;16602:14;16595:58;16687:7;16682:2;16674:6;16670:15;16663:32;16478:224;:::o;16708:366::-;16850:3;16871:67;16935:2;16930:3;16871:67;:::i;:::-;16864:74;;16947:93;17036:3;16947:93;:::i;:::-;17065:2;17060:3;17056:12;17049:19;;16708:366;;;:::o;17080:419::-;17246:4;17284:2;17273:9;17269:18;17261:26;;17333:9;17327:4;17323:20;17319:1;17308:9;17304:17;17297:47;17361:131;17487:4;17361:131;:::i;:::-;17353:139;;17080:419;;;:::o;17505:228::-;17645:34;17641:1;17633:6;17629:14;17622:58;17714:11;17709:2;17701:6;17697:15;17690:36;17505:228;:::o;17739:366::-;17881:3;17902:67;17966:2;17961:3;17902:67;:::i;:::-;17895:74;;17978:93;18067:3;17978:93;:::i;:::-;18096:2;18091:3;18087:12;18080:19;;17739:366;;;:::o;18111:419::-;18277:4;18315:2;18304:9;18300:18;18292:26;;18364:9;18358:4;18354:20;18350:1;18339:9;18335:17;18328:47;18392:131;18518:4;18392:131;:::i;:::-;18384:139;;18111:419;;;:::o;18536:240::-;18676:34;18672:1;18664:6;18660:14;18653:58;18745:23;18740:2;18732:6;18728:15;18721:48;18536:240;:::o;18782:366::-;18924:3;18945:67;19009:2;19004:3;18945:67;:::i;:::-;18938:74;;19021:93;19110:3;19021:93;:::i;:::-;19139:2;19134:3;19130:12;19123:19;;18782:366;;;:::o;19154:419::-;19320:4;19358:2;19347:9;19343:18;19335:26;;19407:9;19401:4;19397:20;19393:1;19382:9;19378:17;19371:47;19435:131;19561:4;19435:131;:::i;:::-;19427:139;;19154:419;;;:::o;19579:237::-;19719:34;19715:1;19707:6;19703:14;19696:58;19788:20;19783:2;19775:6;19771:15;19764:45;19579:237;:::o;19822:366::-;19964:3;19985:67;20049:2;20044:3;19985:67;:::i;:::-;19978:74;;20061:93;20150:3;20061:93;:::i;:::-;20179:2;20174:3;20170:12;20163:19;;19822:366;;;:::o;20194:419::-;20360:4;20398:2;20387:9;20383:18;20375:26;;20447:9;20441:4;20437:20;20433:1;20422:9;20418:17;20411:47;20475:131;20601:4;20475:131;:::i;:::-;20467:139;;20194:419;;;:::o;20619:320::-;20734:4;20772:2;20761:9;20757:18;20749:26;;20785:71;20853:1;20842:9;20838:17;20829:6;20785:71;:::i;:::-;20866:66;20928:2;20917:9;20913:18;20904:6;20866:66;:::i;:::-;20619:320;;;;;:::o;20945:225::-;21085:34;21081:1;21073:6;21069:14;21062:58;21154:8;21149:2;21141:6;21137:15;21130:33;20945:225;:::o;21176:366::-;21318:3;21339:67;21403:2;21398:3;21339:67;:::i;:::-;21332:74;;21415:93;21504:3;21415:93;:::i;:::-;21533:2;21528:3;21524:12;21517:19;;21176:366;;;:::o;21548:419::-;21714:4;21752:2;21741:9;21737:18;21729:26;;21801:9;21795:4;21791:20;21787:1;21776:9;21772:17;21765:47;21829:131;21955:4;21829:131;:::i;:::-;21821:139;;21548:419;;;:::o;21973:223::-;22113:34;22109:1;22101:6;22097:14;22090:58;22182:6;22177:2;22169:6;22165:15;22158:31;21973:223;:::o;22202:366::-;22344:3;22365:67;22429:2;22424:3;22365:67;:::i;:::-;22358:74;;22441:93;22530:3;22441:93;:::i;:::-;22559:2;22554:3;22550:12;22543:19;;22202:366;;;:::o;22574:419::-;22740:4;22778:2;22767:9;22763:18;22755:26;;22827:9;22821:4;22817:20;22813:1;22802:9;22798:17;22791:47;22855:131;22981:4;22855:131;:::i;:::-;22847:139;;22574:419;;;:::o;22999:221::-;23139:34;23135:1;23127:6;23123:14;23116:58;23208:4;23203:2;23195:6;23191:15;23184:29;22999:221;:::o;23226:366::-;23368:3;23389:67;23453:2;23448:3;23389:67;:::i;:::-;23382:74;;23465:93;23554:3;23465:93;:::i;:::-;23583:2;23578:3;23574:12;23567:19;;23226:366;;;:::o;23598:419::-;23764:4;23802:2;23791:9;23787:18;23779:26;;23851:9;23845:4;23841:20;23837:1;23826:9;23822:17;23815:47;23879:131;24005:4;23879:131;:::i;:::-;23871:139;;23598:419;;;:::o;24023:182::-;24163:34;24159:1;24151:6;24147:14;24140:58;24023:182;:::o;24211:366::-;24353:3;24374:67;24438:2;24433:3;24374:67;:::i;:::-;24367:74;;24450:93;24539:3;24450:93;:::i;:::-;24568:2;24563:3;24559:12;24552:19;;24211:366;;;:::o;24583:419::-;24749:4;24787:2;24776:9;24772:18;24764:26;;24836:9;24830:4;24826:20;24822:1;24811:9;24807:17;24800:47;24864:131;24990:4;24864:131;:::i;:::-;24856:139;;24583:419;;;:::o;25008:224::-;25148:34;25144:1;25136:6;25132:14;25125:58;25217:7;25212:2;25204:6;25200:15;25193:32;25008:224;:::o;25238:366::-;25380:3;25401:67;25465:2;25460:3;25401:67;:::i;:::-;25394:74;;25477:93;25566:3;25477:93;:::i;:::-;25595:2;25590:3;25586:12;25579:19;;25238:366;;;:::o;25610:419::-;25776:4;25814:2;25803:9;25799:18;25791:26;;25863:9;25857:4;25853:20;25849:1;25838:9;25834:17;25827:47;25891:131;26017:4;25891:131;:::i;:::-;25883:139;;25610:419;;;:::o;26035:222::-;26175:34;26171:1;26163:6;26159:14;26152:58;26244:5;26239:2;26231:6;26227:15;26220:30;26035:222;:::o;26263:366::-;26405:3;26426:67;26490:2;26485:3;26426:67;:::i;:::-;26419:74;;26502:93;26591:3;26502:93;:::i;:::-;26620:2;26615:3;26611:12;26604:19;;26263:366;;;:::o;26635:419::-;26801:4;26839:2;26828:9;26824:18;26816:26;;26888:9;26882:4;26878:20;26874:1;26863:9;26859:17;26852:47;26916:131;27042:4;26916:131;:::i;:::-;26908:139;;26635:419;;;:::o;27060:172::-;27200:24;27196:1;27188:6;27184:14;27177:48;27060:172;:::o;27238:366::-;27380:3;27401:67;27465:2;27460:3;27401:67;:::i;:::-;27394:74;;27477:93;27566:3;27477:93;:::i;:::-;27595:2;27590:3;27586:12;27579:19;;27238:366;;;:::o;27610:419::-;27776:4;27814:2;27803:9;27799:18;27791:26;;27863:9;27857:4;27853:20;27849:1;27838:9;27834:17;27827:47;27891:131;28017:4;27891:131;:::i;:::-;27883:139;;27610:419;;;:::o;28035:297::-;28175:34;28171:1;28163:6;28159:14;28152:58;28244:34;28239:2;28231:6;28227:15;28220:59;28313:11;28308:2;28300:6;28296:15;28289:36;28035:297;:::o;28338:366::-;28480:3;28501:67;28565:2;28560:3;28501:67;:::i;:::-;28494:74;;28577:93;28666:3;28577:93;:::i;:::-;28695:2;28690:3;28686:12;28679:19;;28338:366;;;:::o;28710:419::-;28876:4;28914:2;28903:9;28899:18;28891:26;;28963:9;28957:4;28953:20;28949:1;28938:9;28934:17;28927:47;28991:131;29117:4;28991:131;:::i;:::-;28983:139;;28710:419;;;:::o;29135:234::-;29275:34;29271:1;29263:6;29259:14;29252:58;29344:17;29339:2;29331:6;29327:15;29320:42;29135:234;:::o;29375:366::-;29517:3;29538:67;29602:2;29597:3;29538:67;:::i;:::-;29531:74;;29614:93;29703:3;29614:93;:::i;:::-;29732:2;29727:3;29723:12;29716:19;;29375:366;;;:::o;29747:419::-;29913:4;29951:2;29940:9;29936:18;29928:26;;30000:9;29994:4;29990:20;29986:1;29975:9;29971:17;29964:47;30028:131;30154:4;30028:131;:::i;:::-;30020:139;;29747:419;;;:::o;30172:169::-;30312:21;30308:1;30300:6;30296:14;30289:45;30172:169;:::o;30347:366::-;30489:3;30510:67;30574:2;30569:3;30510:67;:::i;:::-;30503:74;;30586:93;30675:3;30586:93;:::i;:::-;30704:2;30699:3;30695:12;30688:19;;30347:366;;;:::o;30719:419::-;30885:4;30923:2;30912:9;30908:18;30900:26;;30972:9;30966:4;30962:20;30958:1;30947:9;30943:17;30936:47;31000:131;31126:4;31000:131;:::i;:::-;30992:139;;30719:419;;;:::o;31144:235::-;31284:34;31280:1;31272:6;31268:14;31261:58;31353:18;31348:2;31340:6;31336:15;31329:43;31144:235;:::o;31385:366::-;31527:3;31548:67;31612:2;31607:3;31548:67;:::i;:::-;31541:74;;31624:93;31713:3;31624:93;:::i;:::-;31742:2;31737:3;31733:12;31726:19;;31385:366;;;:::o;31757:419::-;31923:4;31961:2;31950:9;31946:18;31938:26;;32010:9;32004:4;32000:20;31996:1;31985:9;31981:17;31974:47;32038:131;32164:4;32038:131;:::i;:::-;32030:139;;31757:419;;;:::o;32182:233::-;32221:3;32244:24;32262:5;32244:24;:::i;:::-;32235:33;;32290:66;32283:5;32280:77;32277:103;;32360:18;;:::i;:::-;32277:103;32407:1;32400:5;32396:13;32389:20;;32182:233;;;:::o;32421:194::-;32461:4;32481:20;32499:1;32481:20;:::i;:::-;32476:25;;32515:20;32533:1;32515:20;:::i;:::-;32510:25;;32559:1;32556;32552:9;32544:17;;32583:1;32577:4;32574:11;32571:37;;;32588:18;;:::i;:::-;32571:37;32421:194;;;;:::o;32621:225::-;32761:34;32757:1;32749:6;32745:14;32738:58;32830:8;32825:2;32817:6;32813:15;32806:33;32621:225;:::o;32852:366::-;32994:3;33015:67;33079:2;33074:3;33015:67;:::i;:::-;33008:74;;33091:93;33180:3;33091:93;:::i;:::-;33209:2;33204:3;33200:12;33193:19;;32852:366;;;:::o;33224:419::-;33390:4;33428:2;33417:9;33413:18;33405:26;;33477:9;33471:4;33467:20;33463:1;33452:9;33448:17;33441:47;33505:131;33631:4;33505:131;:::i;:::-;33497:139;;33224:419;;;:::o;33649:147::-;33750:11;33787:3;33772:18;;33649:147;;;;:::o;33802:114::-;;:::o;33922:398::-;34081:3;34102:83;34183:1;34178:3;34102:83;:::i;:::-;34095:90;;34194:93;34283:3;34194:93;:::i;:::-;34312:1;34307:3;34303:11;34296:18;;33922:398;;;:::o;34326:379::-;34510:3;34532:147;34675:3;34532:147;:::i;:::-;34525:154;;34696:3;34689:10;;34326:379;;;:::o;34711:180::-;34759:77;34756:1;34749:88;34856:4;34853:1;34846:15;34880:4;34877:1;34870:15;34897:180;34945:77;34942:1;34935:88;35042:4;35039:1;35032:15;35066:4;35063:1;35056:15;35083:143;35140:5;35171:6;35165:13;35156:22;;35187:33;35214:5;35187:33;:::i;:::-;35083:143;;;;:::o;35232:351::-;35302:6;35351:2;35339:9;35330:7;35326:23;35322:32;35319:119;;;35357:79;;:::i;:::-;35319:119;35477:1;35502:64;35558:7;35549:6;35538:9;35534:22;35502:64;:::i;:::-;35492:74;;35448:128;35232:351;;;;:::o;35589:85::-;35634:7;35663:5;35652:16;;35589:85;;;:::o;35680:158::-;35738:9;35771:61;35789:42;35798:32;35824:5;35798:32;:::i;:::-;35789:42;:::i;:::-;35771:61;:::i;:::-;35758:74;;35680:158;;;:::o;35844:147::-;35939:45;35978:5;35939:45;:::i;:::-;35934:3;35927:58;35844:147;;:::o;35997:114::-;36064:6;36098:5;36092:12;36082:22;;35997:114;;;:::o;36117:184::-;36216:11;36250:6;36245:3;36238:19;36290:4;36285:3;36281:14;36266:29;;36117:184;;;;:::o;36307:132::-;36374:4;36397:3;36389:11;;36427:4;36422:3;36418:14;36410:22;;36307:132;;;:::o;36445:108::-;36522:24;36540:5;36522:24;:::i;:::-;36517:3;36510:37;36445:108;;:::o;36559:179::-;36628:10;36649:46;36691:3;36683:6;36649:46;:::i;:::-;36727:4;36722:3;36718:14;36704:28;;36559:179;;;;:::o;36744:113::-;36814:4;36846;36841:3;36837:14;36829:22;;36744:113;;;:::o;36893:732::-;37012:3;37041:54;37089:5;37041:54;:::i;:::-;37111:86;37190:6;37185:3;37111:86;:::i;:::-;37104:93;;37221:56;37271:5;37221:56;:::i;:::-;37300:7;37331:1;37316:284;37341:6;37338:1;37335:13;37316:284;;;37417:6;37411:13;37444:63;37503:3;37488:13;37444:63;:::i;:::-;37437:70;;37530:60;37583:6;37530:60;:::i;:::-;37520:70;;37376:224;37363:1;37360;37356:9;37351:14;;37316:284;;;37320:14;37616:3;37609:10;;37017:608;;;36893:732;;;;:::o;37631:831::-;37894:4;37932:3;37921:9;37917:19;37909:27;;37946:71;38014:1;38003:9;37999:17;37990:6;37946:71;:::i;:::-;38027:80;38103:2;38092:9;38088:18;38079:6;38027:80;:::i;:::-;38154:9;38148:4;38144:20;38139:2;38128:9;38124:18;38117:48;38182:108;38285:4;38276:6;38182:108;:::i;:::-;38174:116;;38300:72;38368:2;38357:9;38353:18;38344:6;38300:72;:::i;:::-;38382:73;38450:3;38439:9;38435:19;38426:6;38382:73;:::i;:::-;37631:831;;;;;;;;:::o

Swarm Source

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