ETH Price: $3,106.53 (+1.23%)
Gas: 6 Gwei

Token

CREW (CREW)
 

Overview

Max Total Supply

8,888 CREW

Holders

115

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.294 CREW

Value
$0.00
0x97b0fbbc81044442fdcd88b2be36b3df190fe411
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:
CREWToken2

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-08
*/

// SPDX-License-Identifier: UNLICENSED

/*

forked from SUSHI, Kimchi and YUNO

*/

pragma solidity ^0.6.12;
/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

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

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


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}



/**
 * @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.
 */
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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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


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

    mapping (address => uint256) public _balances;

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

    uint256 private _totalSupply;
    uint256 private _totalRewardSupply;
    uint256 private _RewardSupplyLeft;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    
    address public _owner;
    address private uniliq = 0xF2D299dE61198C520B0958af14b06769894679EC;
    address private treasury = 0xd71BA4d6C01efea7F513F220D4B5ddE89406BE81;
    address private presale = 0xF2D299dE61198C520B0958af14b06769894679EC;
    address private teamaddr = 0xc225af420f8b700859D0d49Cab1D5EC6D5Ed6774;
    address public taxReciever;

    // for time lock
    uint256 private _deployedTimestamp;

    event OwnershipTransferredERC20(address indexed previousOwner, address indexed newOwner);
    
    modifier onlyTokenOwner(){
        require(msg.sender == _owner);
        _;
    }
    
    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
     
     constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
        _owner = msg.sender;
        _totalSupply = 8888 * 10**18;
        taxReciever = msg.sender;
        _deployedTimestamp = now;

        // locked amount 81%
	    uint256 totalLockedAmount = _totalSupply.mul(81).div(100);
        _totalRewardSupply =        totalLockedAmount;
        _RewardSupplyLeft =         totalLockedAmount;

	    // considered 2% of tax
        _balances[uniliq] = _balances[uniliq].add(_totalSupply.mul(1).mul(98).div(100).div(100));
        _balances[teamaddr] = _balances[teamaddr].add(_totalSupply.mul(3).mul(98).div(100).div(100));
        _balances[treasury] = _balances[treasury].add(_totalSupply.mul(5).mul(98).div(100).div(100));
        _balances[presale] = _balances[presale].add(_totalSupply.mul(10).mul(98).div(100).div(100));

        // tax for initial sending
        _balances[taxReciever] = _balances[taxReciever].add(_totalSupply.mul(19).mul(2).div(100).div(100));
    } 
    
    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        uint tax = amount.mul(2).div(100);
        uint leftamount = amount.sub(tax);
        _transfer(_msgSender(), taxReciever, tax);
        _transfer(_msgSender(), recipient, leftamount);
        return true;
    }
    
     /**
     * @dev See {IERC20-burn}.
     *
     * Requirements:
     *
     * - `amount` cannot be the greater that sender balance.
     */
    
    function burn(uint256 amount) public virtual returns(bool){
        _burn(_msgSender(),amount);
        return true;
    }

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
     function _mintReward(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        require(_RewardSupplyLeft >= amount, "Rewards limit reached");
        uint tax = amount.mul(2).div(100);
        uint leftamount = amount.sub(tax);
        _beforeTokenTransfer(address(0), account, leftamount);
        _RewardSupplyLeft = _RewardSupplyLeft.sub(amount);
        _balances[account] = _balances[account].add(leftamount);
        emit Transfer(address(0), account, leftamount);
        _beforeTokenTransfer(address(0), taxReciever, tax);
        _balances[taxReciever] = _balances[taxReciever].add(tax);
        emit Transfer(address(0), taxReciever, tax);
    }
    function TotalReward() public view virtual returns (uint256) {
        return _totalRewardSupply;
    }
    function RewardLeft() public view  virtual returns (uint256) {
        return _RewardSupplyLeft;
    }
    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
    
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnershipERC20(address newOwner) public virtual onlyTokenOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferredERC20(_owner, newOwner);
        _owner = newOwner;
    }
    
    // Set Tax Sender Address
    function _setTaxReciever(address _taxReciever) public onlyTokenOwner() {
        taxReciever = _taxReciever;
    }

    function getDeployedTimestamp() external view returns (uint256) {
        return _deployedTimestamp;
    }

    function isLocked () public view returns (bool) {
        if ((now - _deployedTimestamp) > 3 * 86400) {
            return false;
        }
        return true;
    }
}

// Token with Governance.
contract CREWToken2 is ERC20("CREW", "CREW"), Ownable {
    /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef).
    function mint(address _to, uint256 _amount) public onlyOwner{
        _mintReward(_to, _amount);
    }

    // For time lock
    address private ETHReceiver;

    // collector contract will be ether receiver
    modifier onlyETHReceiver() {
        require(getETHReceiver() == _msgSender() || owner() == _msgSender(), "Ownable: caller is not the ETH receiver");
        _;
    }

    function setETHReceiver(address receiver) public onlyOwner {
        ETHReceiver = receiver;
    }

    function getETHReceiver() public view returns (address) {
        return ETHReceiver;
    }

    function sendTokenFromPresale(address account, uint256 amount) public onlyETHReceiver {
        address presale = 0xF2D299dE61198C520B0958af14b06769894679EC;
        require(account != address(0), "ERC20: mint to the zero address");
        require(_balances[presale] >= amount, "Presale limit reached");
        
        uint256 tax = amount.mul(2).div(100);
        uint256 leftamount = amount.sub(tax);

        _beforeTokenTransfer(address(0), account, leftamount);
        _balances[presale] = _balances[presale].sub(amount);
        _balances[account] = _balances[account].add(leftamount);

        emit Transfer(address(0), account, leftamount);
        _beforeTokenTransfer(address(0), taxReciever, tax);

        _balances[taxReciever] = _balances[taxReciever].add(tax);
        emit Transfer(address(0), taxReciever, tax);
    }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferredERC20","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"RewardLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TotalReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"_allowances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_taxReciever","type":"address"}],"name":"_setTaxReciever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"getDeployedTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getETHReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"sendTokenFromPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"setETHReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxReciever","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnershipERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273f2d299de61198c520b0958af14b06769894679ec600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d71ba4d6c01efea7f513f220d4b5dde89406be81600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f2d299de61198c520b0958af14b06769894679ec600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c225af420f8b700859d0d49cab1d5ec6d5ed6774600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200016557600080fd5b506040518060400160405280600481526020017f43524557000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f43524557000000000000000000000000000000000000000000000000000000008152508160059080519060200190620001ea92919062000c5e565b5080600690805190602001906200020392919062000c5e565b506012600760006101000a81548160ff021916908360ff16021790555033600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506901e1d1c72d5b97e0000060028190555033600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555042600d819055506000620002f36064620002df605160025462000a2560201b62001e6d1790919060201c565b62000ab060201b62001ef31790919060201c565b90508060038190555080600481905550620003e76200037260646200035e60646200034a606262000336600160025462000a2560201b62001e6d1790919060201c565b62000a2560201b62001e6d1790919060201c565b62000ab060201b62001ef31790919060201c565b62000ab060201b62001ef31790919060201c565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b0260201b62001f3d1790919060201c565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200052f620004ba6064620004a660646200049260626200047e600360025462000a2560201b62001e6d1790919060201c565b62000a2560201b62001e6d1790919060201c565b62000ab060201b62001ef31790919060201c565b62000ab060201b62001ef31790919060201c565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b0260201b62001f3d1790919060201c565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555062000677620006026064620005ee6064620005da6062620005c6600560025462000a2560201b62001e6d1790919060201c565b62000a2560201b62001e6d1790919060201c565b62000ab060201b62001ef31790919060201c565b62000ab060201b62001ef31790919060201c565b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b0260201b62001f3d1790919060201c565b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620007bf6200074a60646200073660646200072260626200070e600a60025462000a2560201b62001e6d1790919060201c565b62000a2560201b62001e6d1790919060201c565b62000ab060201b62001ef31790919060201c565b62000ab060201b62001ef31790919060201c565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b0260201b62001f3d1790919060201c565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620009076200089260646200087e60646200086a600262000856601360025462000a2560201b62001e6d1790919060201c565b62000a2560201b62001e6d1790919060201c565b62000ab060201b62001ef31790919060201c565b62000ab060201b62001ef31790919060201c565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b0260201b62001f3d1790919060201c565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505060006200098062000b8b60201b60201c565b905080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000d04565b60008083141562000a3a576000905062000aaa565b600082840290508284828162000a4c57fe5b041462000aa5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018062003ba56021913960400191505060405180910390fd5b809150505b92915050565b600062000afa83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525062000b9360201b60201c565b905092915050565b60008082840190508381101562000b81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b6000808311829062000c43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000c0757808201518184015260208101905062000bea565b50505050905090810190601f16801562000c355780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858162000c5057fe5b049050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000ca157805160ff191683800117855562000cd2565b8280016001018555821562000cd2579182015b8281111562000cd157825182559160200191906001019062000cb4565b5b50905062000ce1919062000ce5565b5090565b5b8082111562000d0057600081600090555060010162000ce6565b5090565b612e918062000d146000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063b2bdfa7b116100a2578063eac5855211610071578063eac5855214610911578063f2fde38b14610955578063f6108be614610999578063fa61666f146109dd576101cf565b8063b2bdfa7b14610813578063bf08cdc314610847578063c968b84e1461087b578063dd62ed3e14610899576101cf565b806395d89b41116100de57806395d89b41146106a8578063a457c2d71461072b578063a4e2d6341461078f578063a9059cbb146107af576101cf565b806370a0823114610612578063715018a61461066a5780638da5cb5b14610674576101cf565b8063395093511161017157806342966c681161014b57806342966c681461050a578063472db27c1461054e578063476865d21461059c5780636ebcf607146105ba576101cf565b8063395093511461043a57806340229d8e1461049e57806340c10f19146104bc576101cf565b8063095ea7b3116101ad578063095ea7b31461031357806318160ddd1461037757806323b872dd14610395578063313ce56714610419576101cf565b8063024b62a9146101d4578063024c2ddd1461021857806306fdde0314610290575b600080fd5b610216600480360360208110156101ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a11565b005b61027a6004803603604081101561022e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610aaf565b6040518082815260200191505060405180910390f35b610298610ad4565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102d85780820151818401526020810190506102bd565b50505050905090810190601f1680156103055780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61035f6004803603604081101561032957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b76565b60405180821515815260200191505060405180910390f35b61037f610b94565b6040518082815260200191505060405180910390f35b610401600480360360608110156103ab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b9e565b60405180821515815260200191505060405180910390f35b610421610ce7565b604051808260ff16815260200191505060405180910390f35b6104866004803603604081101561045057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cfe565b60405180821515815260200191505060405180910390f35b6104a6610db1565b6040518082815260200191505060405180910390f35b610508600480360360408110156104d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610dbb565b005b6105366004803603602081101561052057600080fd5b8101908080359060200190929190505050610e93565b60405180821515815260200191505060405180910390f35b61059a6004803603604081101561056457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610eaf565b005b6105a4611463565b6040518082815260200191505060405180910390f35b6105fc600480360360208110156105d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061146d565b6040518082815260200191505060405180910390f35b6106546004803603602081101561062857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611485565b6040518082815260200191505060405180910390f35b6106726114cd565b005b61067c611658565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106b0611682565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106f05780820151818401526020810190506106d5565b50505050905090810190601f16801561071d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107776004803603604081101561074157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611724565b60405180821515815260200191505060405180910390f35b6107976117f1565b60405180821515815260200191505060405180910390f35b6107fb600480360360408110156107c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611813565b60405180821515815260200191505060405180910390f35b61081b6118a8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61084f6118ce565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108836118f4565b6040518082815260200191505060405180910390f35b6108fb600480360360408110156108af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118fe565b6040518082815260200191505060405180910390f35b6109536004803603602081101561092757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611985565b005b6109976004803603602081101561096b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a93565b005b6109db600480360360208110156109af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ca3565b005b6109e5611e43565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a6b57600080fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6001602052816000526040600020602052806000526040600020600091509150505481565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b6c5780601f10610b4157610100808354040283529160200191610b6c565b820191906000526020600020905b815481529060010190602001808311610b4f57829003601f168201915b5050505050905090565b6000610b8a610b83611fc5565b8484611fcd565b6001905092915050565b6000600254905090565b600080610bc86064610bba600286611e6d90919063ffffffff16565b611ef390919063ffffffff16565b90506000610bdf82856121c490919063ffffffff16565b9050610c0e86600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461220e565b610c1986868361220e565b610cda86610c25611fc5565b610cd587604051806060016040528060288152602001612da560289139600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c8b611fc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254a9092919063ffffffff16565b611fcd565b6001925050509392505050565b6000600760009054906101000a900460ff16905090565b6000610da7610d0b611fc5565b84610da28560016000610d1c611fc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f3d90919063ffffffff16565b611fcd565b6001905092915050565b6000600354905090565b610dc3611fc5565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e85576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610e8f828261260a565b5050565b6000610ea6610ea0611fc5565b83612a1a565b60019050919050565b610eb7611fc5565b73ffffffffffffffffffffffffffffffffffffffff16610ed5611e43565b73ffffffffffffffffffffffffffffffffffffffff161480610f305750610efa611fc5565b73ffffffffffffffffffffffffffffffffffffffff16610f18611658565b73ffffffffffffffffffffffffffffffffffffffff16145b610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180612caa6027913960400191505060405180910390fd5b600073f2d299de61198c520b0958af14b06769894679ec9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b816000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f50726573616c65206c696d69742072656163686564000000000000000000000081525060200191505060405180910390fd5b600061111e6064611110600286611e6d90919063ffffffff16565b611ef390919063ffffffff16565b9050600061113582856121c490919063ffffffff16565b905061114360008683612bde565b611194846000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121c490919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611227816000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f3d90919063ffffffff16565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a36112fd6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612bde565b61137082600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f3d90919063ffffffff16565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050565b6000600454905090565b60006020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114d5611fc5565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611597576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561171a5780601f106116ef5761010080835404028352916020019161171a565b820191906000526020600020905b8154815290600101906020018083116116fd57829003601f168201915b5050505050905090565b60006117e7611731611fc5565b846117e285604051806060016040528060258152602001612e37602591396001600061175b611fc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254a9092919063ffffffff16565b611fcd565b6001905092915050565b60006203f480600d544203111561180b5760009050611810565b600190505b90565b60008061183d606461182f600286611e6d90919063ffffffff16565b611ef390919063ffffffff16565b9050600061185482856121c490919063ffffffff16565b905061188a611861611fc5565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461220e565b61189c611895611fc5565b868361220e565b60019250505092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600d54905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61198d611fc5565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a4f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611a9b611fc5565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612d166026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611cfd57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612d166026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f5850a278f99591d7af992cf84df63de6d1953219508f81d853d7615bee1f5d0760405160405180910390a380600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080831415611e805760009050611eed565b6000828402905082848281611e9157fe5b0414611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612d846021913960400191505060405180910390fd5b809150505b92915050565b6000611f3583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612be3565b905092915050565b600080828401905083811015611fbb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612053576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612e136024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612d3c6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600061220683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061254a565b905092915050565b6122166117f1565b15612289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4e6f742072656c65617365642074696d65206c6f636b2079657400000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561230f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612dee6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612395576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612cd16023913960400191505060405180910390fd5b6123a0838383612bde565b61240b81604051806060016040528060268152602001612d5e602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254a9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061249e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f3d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906125f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125bc5780820151818401526020810190506125a1565b50505050905090810190601f1680156125e95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b806004541015612725576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f52657761726473206c696d69742072656163686564000000000000000000000081525060200191505060405180910390fd5b600061274e6064612740600285611e6d90919063ffffffff16565b611ef390919063ffffffff16565b9050600061276582846121c490919063ffffffff16565b905061277360008583612bde565b612788836004546121c490919063ffffffff16565b6004819055506127df816000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f3d90919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a36128b56000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612bde565b61292882600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f3d90919063ffffffff16565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612dcd6021913960400191505060405180910390fd5b612aac82600083612bde565b612b1781604051806060016040528060228152602001612cf4602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254a9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612b6e816002546121c490919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b60008083118290612c8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c54578082015181840152602081019050612c39565b50505050905090810190601f168015612c815780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612c9b57fe5b04905080915050939250505056fe4f776e61626c653a2063616c6c6572206973206e6f74207468652045544820726563656976657245524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122079a2dcdccdae84b316389132142d69c1d72f7636e89c3c07dacee33c99cf356964736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063b2bdfa7b116100a2578063eac5855211610071578063eac5855214610911578063f2fde38b14610955578063f6108be614610999578063fa61666f146109dd576101cf565b8063b2bdfa7b14610813578063bf08cdc314610847578063c968b84e1461087b578063dd62ed3e14610899576101cf565b806395d89b41116100de57806395d89b41146106a8578063a457c2d71461072b578063a4e2d6341461078f578063a9059cbb146107af576101cf565b806370a0823114610612578063715018a61461066a5780638da5cb5b14610674576101cf565b8063395093511161017157806342966c681161014b57806342966c681461050a578063472db27c1461054e578063476865d21461059c5780636ebcf607146105ba576101cf565b8063395093511461043a57806340229d8e1461049e57806340c10f19146104bc576101cf565b8063095ea7b3116101ad578063095ea7b31461031357806318160ddd1461037757806323b872dd14610395578063313ce56714610419576101cf565b8063024b62a9146101d4578063024c2ddd1461021857806306fdde0314610290575b600080fd5b610216600480360360208110156101ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a11565b005b61027a6004803603604081101561022e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610aaf565b6040518082815260200191505060405180910390f35b610298610ad4565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102d85780820151818401526020810190506102bd565b50505050905090810190601f1680156103055780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61035f6004803603604081101561032957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b76565b60405180821515815260200191505060405180910390f35b61037f610b94565b6040518082815260200191505060405180910390f35b610401600480360360608110156103ab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b9e565b60405180821515815260200191505060405180910390f35b610421610ce7565b604051808260ff16815260200191505060405180910390f35b6104866004803603604081101561045057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cfe565b60405180821515815260200191505060405180910390f35b6104a6610db1565b6040518082815260200191505060405180910390f35b610508600480360360408110156104d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610dbb565b005b6105366004803603602081101561052057600080fd5b8101908080359060200190929190505050610e93565b60405180821515815260200191505060405180910390f35b61059a6004803603604081101561056457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610eaf565b005b6105a4611463565b6040518082815260200191505060405180910390f35b6105fc600480360360208110156105d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061146d565b6040518082815260200191505060405180910390f35b6106546004803603602081101561062857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611485565b6040518082815260200191505060405180910390f35b6106726114cd565b005b61067c611658565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106b0611682565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106f05780820151818401526020810190506106d5565b50505050905090810190601f16801561071d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107776004803603604081101561074157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611724565b60405180821515815260200191505060405180910390f35b6107976117f1565b60405180821515815260200191505060405180910390f35b6107fb600480360360408110156107c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611813565b60405180821515815260200191505060405180910390f35b61081b6118a8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61084f6118ce565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108836118f4565b6040518082815260200191505060405180910390f35b6108fb600480360360408110156108af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118fe565b6040518082815260200191505060405180910390f35b6109536004803603602081101561092757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611985565b005b6109976004803603602081101561096b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a93565b005b6109db600480360360208110156109af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ca3565b005b6109e5611e43565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a6b57600080fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6001602052816000526040600020602052806000526040600020600091509150505481565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b6c5780601f10610b4157610100808354040283529160200191610b6c565b820191906000526020600020905b815481529060010190602001808311610b4f57829003601f168201915b5050505050905090565b6000610b8a610b83611fc5565b8484611fcd565b6001905092915050565b6000600254905090565b600080610bc86064610bba600286611e6d90919063ffffffff16565b611ef390919063ffffffff16565b90506000610bdf82856121c490919063ffffffff16565b9050610c0e86600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461220e565b610c1986868361220e565b610cda86610c25611fc5565b610cd587604051806060016040528060288152602001612da560289139600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c8b611fc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254a9092919063ffffffff16565b611fcd565b6001925050509392505050565b6000600760009054906101000a900460ff16905090565b6000610da7610d0b611fc5565b84610da28560016000610d1c611fc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f3d90919063ffffffff16565b611fcd565b6001905092915050565b6000600354905090565b610dc3611fc5565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e85576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610e8f828261260a565b5050565b6000610ea6610ea0611fc5565b83612a1a565b60019050919050565b610eb7611fc5565b73ffffffffffffffffffffffffffffffffffffffff16610ed5611e43565b73ffffffffffffffffffffffffffffffffffffffff161480610f305750610efa611fc5565b73ffffffffffffffffffffffffffffffffffffffff16610f18611658565b73ffffffffffffffffffffffffffffffffffffffff16145b610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180612caa6027913960400191505060405180910390fd5b600073f2d299de61198c520b0958af14b06769894679ec9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b816000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f50726573616c65206c696d69742072656163686564000000000000000000000081525060200191505060405180910390fd5b600061111e6064611110600286611e6d90919063ffffffff16565b611ef390919063ffffffff16565b9050600061113582856121c490919063ffffffff16565b905061114360008683612bde565b611194846000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121c490919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611227816000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f3d90919063ffffffff16565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a36112fd6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612bde565b61137082600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f3d90919063ffffffff16565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050565b6000600454905090565b60006020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114d5611fc5565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611597576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561171a5780601f106116ef5761010080835404028352916020019161171a565b820191906000526020600020905b8154815290600101906020018083116116fd57829003601f168201915b5050505050905090565b60006117e7611731611fc5565b846117e285604051806060016040528060258152602001612e37602591396001600061175b611fc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254a9092919063ffffffff16565b611fcd565b6001905092915050565b60006203f480600d544203111561180b5760009050611810565b600190505b90565b60008061183d606461182f600286611e6d90919063ffffffff16565b611ef390919063ffffffff16565b9050600061185482856121c490919063ffffffff16565b905061188a611861611fc5565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461220e565b61189c611895611fc5565b868361220e565b60019250505092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600d54905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61198d611fc5565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a4f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611a9b611fc5565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612d166026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611cfd57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612d166026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f5850a278f99591d7af992cf84df63de6d1953219508f81d853d7615bee1f5d0760405160405180910390a380600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080831415611e805760009050611eed565b6000828402905082848281611e9157fe5b0414611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612d846021913960400191505060405180910390fd5b809150505b92915050565b6000611f3583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612be3565b905092915050565b600080828401905083811015611fbb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612053576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612e136024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612d3c6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600061220683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061254a565b905092915050565b6122166117f1565b15612289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4e6f742072656c65617365642074696d65206c6f636b2079657400000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561230f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612dee6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612395576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612cd16023913960400191505060405180910390fd5b6123a0838383612bde565b61240b81604051806060016040528060268152602001612d5e602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254a9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061249e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f3d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906125f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125bc5780820151818401526020810190506125a1565b50505050905090810190601f1680156125e95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b806004541015612725576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f52657761726473206c696d69742072656163686564000000000000000000000081525060200191505060405180910390fd5b600061274e6064612740600285611e6d90919063ffffffff16565b611ef390919063ffffffff16565b9050600061276582846121c490919063ffffffff16565b905061277360008583612bde565b612788836004546121c490919063ffffffff16565b6004819055506127df816000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f3d90919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a36128b56000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612bde565b61292882600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f3d90919063ffffffff16565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612dcd6021913960400191505060405180910390fd5b612aac82600083612bde565b612b1781604051806060016040528060228152602001612cf4602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254a9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612b6e816002546121c490919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b60008083118290612c8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c54578082015181840152602081019050612c39565b50505050905090810190601f168015612c815780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612c9b57fe5b04905080915050939250505056fe4f776e61626c653a2063616c6c6572206973206e6f74207468652045544820726563656976657245524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122079a2dcdccdae84b316389132142d69c1d72f7636e89c3c07dacee33c99cf356964736f6c634300060c0033

Deployed Bytecode Sourcemap

36102:1623:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35657:116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22380:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24779:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27323:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25854:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27966:459;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25706:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28834:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32330:105;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36261:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26837:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36867:855;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32441:104;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22326:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26017:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20475:148;;;:::i;:::-;;19833:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24981:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29555:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35897:171;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26349:319;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22665:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22994:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35781:108;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27025:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36658:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20778:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35355:259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36766:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35657:116;23253:6;;;;;;;;;;;23239:20;;:10;:20;;;23231:29;;;;;;35753:12:::1;35739:11;;:26;;;;;;;;;;;;;;;;;;35657:116:::0;:::o;22380:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24779:83::-;24816:13;24849:5;24842:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24779:83;:::o;27323:169::-;27406:4;27423:39;27432:12;:10;:12::i;:::-;27446:7;27455:6;27423:8;:39::i;:::-;27480:4;27473:11;;27323:169;;;;:::o;25854:100::-;25907:7;25934:12;;25927:19;;25854:100;:::o;27966:459::-;28072:4;28089:8;28100:22;28118:3;28100:13;28111:1;28100:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;28089:33;;28133:15;28151;28162:3;28151:6;:10;;:15;;;;:::i;:::-;28133:33;;28177:35;28187:6;28195:11;;;;;;;;;;;28208:3;28177:9;:35::i;:::-;28223:40;28233:6;28241:9;28252:10;28223:9;:40::i;:::-;28274:121;28283:6;28291:12;:10;:12::i;:::-;28305:89;28343:6;28305:89;;;;;;;;;;;;;;;;;:11;:19;28317:6;28305:19;;;;;;;;;;;;;;;:33;28325:12;:10;:12::i;:::-;28305:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;28274:8;:121::i;:::-;28413:4;28406:11;;;;27966:459;;;;;:::o;25706:83::-;25747:5;25772:9;;;;;;;;;;;25765:16;;25706:83;:::o;28834:218::-;28922:4;28939:83;28948:12;:10;:12::i;:::-;28962:7;28971:50;29010:10;28971:11;:25;28983:12;:10;:12::i;:::-;28971:25;;;;;;;;;;;;;;;:34;28997:7;28971:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;28939:8;:83::i;:::-;29040:4;29033:11;;28834:218;;;;:::o;32330:105::-;32382:7;32409:18;;32402:25;;32330:105;:::o;36261:104::-;20055:12;:10;:12::i;:::-;20045:22;;:6;;;;;;;;;;;:22;;;20037:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36332:25:::1;36344:3;36349:7;36332:11;:25::i;:::-;36261:104:::0;;:::o;26837:125::-;26890:4;26906:26;26912:12;:10;:12::i;:::-;26925:6;26906:5;:26::i;:::-;26950:4;26943:11;;26837:125;;;:::o;36867:855::-;36547:12;:10;:12::i;:::-;36527:32;;:16;:14;:16::i;:::-;:32;;;:59;;;;36574:12;:10;:12::i;:::-;36563:23;;:7;:5;:7::i;:::-;:23;;;36527:59;36519:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36964:15:::1;36982:42;36964:60;;37062:1;37043:21;;:7;:21;;;;37035:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;37141:6;37119:9;:18:::0;37129:7:::1;37119:18;;;;;;;;;;;;;;;;:28;;37111:62;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;37194:11;37208:22;37226:3;37208:13;37219:1;37208:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;37194:36;;37241:18;37262:15;37273:3;37262:6;:10;;:15;;;;:::i;:::-;37241:36;;37290:53;37319:1;37323:7;37332:10;37290:20;:53::i;:::-;37375:30;37398:6;37375:9;:18:::0;37385:7:::1;37375:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;37354:9;:18:::0;37364:7:::1;37354:18;;;;;;;;;;;;;;;:51;;;;37437:34;37460:10;37437:9;:18:::0;37447:7:::1;37437:18;;;;;;;;;;;;;;;;:22;;:34;;;;:::i;:::-;37416:9;:18:::0;37426:7:::1;37416:18;;;;;;;;;;;;;;;:55;;;;37510:7;37489:41;;37506:1;37489:41;;;37519:10;37489:41;;;;;;;;;;;;;;;;;;37541:50;37570:1;37574:11;;;;;;;;;;;37587:3;37541:20;:50::i;:::-;37629:31;37656:3;37629:9;:22:::0;37639:11:::1;;;;;;;;;;;37629:22;;;;;;;;;;;;;;;;:26;;:31;;;;:::i;:::-;37604:9;:22:::0;37614:11:::1;;;;;;;;;;;37604:22;;;;;;;;;;;;;;;:56;;;;37697:11;;;;;;;;;;;37676:38;;37693:1;37676:38;;;37710:3;37676:38;;;;;;;;;;;;;;;;;;36641:1;;;36867:855:::0;;:::o;32441:104::-;32493:7;32520:17;;32513:24;;32441:104;:::o;22326:45::-;;;;;;;;;;;;;;;;;:::o;26017:119::-;26083:7;26110:9;:18;26120:7;26110:18;;;;;;;;;;;;;;;;26103:25;;26017:119;;;:::o;20475:148::-;20055:12;:10;:12::i;:::-;20045:22;;:6;;;;;;;;;;;:22;;;20037:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20582:1:::1;20545:40;;20566:6;;;;;;;;;;;20545:40;;;;;;;;;;;;20613:1;20596:6;;:19;;;;;;;;;;;;;;;;;;20475:148::o:0;19833:79::-;19871:7;19898:6;;;;;;;;;;;19891:13;;19833:79;:::o;24981:87::-;25020:13;25053:7;25046:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24981:87;:::o;29555:269::-;29648:4;29665:129;29674:12;:10;:12::i;:::-;29688:7;29697:96;29736:15;29697:96;;;;;;;;;;;;;;;;;:11;:25;29709:12;:10;:12::i;:::-;29697:25;;;;;;;;;;;;;;;:34;29723:7;29697:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;29665:8;:129::i;:::-;29812:4;29805:11;;29555:269;;;;:::o;35897:171::-;35939:4;35989:9;35967:18;;35961:3;:24;35960:38;35956:83;;;36022:5;36015:12;;;;35956:83;36056:4;36049:11;;35897:171;;:::o;26349:319::-;26435:4;26452:8;26463:22;26481:3;26463:13;26474:1;26463:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;26452:33;;26496:15;26514;26525:3;26514:6;:10;;:15;;;;:::i;:::-;26496:33;;26540:41;26550:12;:10;:12::i;:::-;26564:11;;;;;;;;;;;26577:3;26540:9;:41::i;:::-;26592:46;26602:12;:10;:12::i;:::-;26616:9;26627:10;26592:9;:46::i;:::-;26656:4;26649:11;;;;26349:319;;;;:::o;22665:21::-;;;;;;;;;;;;;:::o;22994:26::-;;;;;;;;;;;;;:::o;35781:108::-;35836:7;35863:18;;35856:25;;35781:108;:::o;27025:151::-;27114:7;27141:11;:18;27153:5;27141:18;;;;;;;;;;;;;;;:27;27160:7;27141:27;;;;;;;;;;;;;;;;27134:34;;27025:151;;;;:::o;36658:100::-;20055:12;:10;:12::i;:::-;20045:22;;:6;;;;;;;;;;;:22;;;20037:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36742:8:::1;36728:11;;:22;;;;;;;;;;;;;;;;;;36658:100:::0;:::o;20778:244::-;20055:12;:10;:12::i;:::-;20045:22;;:6;;;;;;;;;;;:22;;;20037:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20887:1:::1;20867:22;;:8;:22;;;;20859:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20977:8;20948:38;;20969:6;;;;;;;;;;;20948:38;;;;;;;;;;;;21006:8;20997:6;;:17;;;;;;;;;;;;;;;;;;20778:244:::0;:::o;35355:259::-;23253:6;;;;;;;;;;;23239:20;;:10;:20;;;23231:29;;;;;;35474:1:::1;35454:22;;:8;:22;;;;35446:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35569:8;35535:43;;35561:6;;;;;;;;;;;35535:43;;;;;;;;;;;;35598:8;35589:6;;:17;;;;;;;;;;;;;;;;;;35355:259:::0;:::o;36766:93::-;36813:7;36840:11;;;;;;;;;;;36833:18;;36766:93;:::o;5922:471::-;5980:7;6230:1;6225;:6;6221:47;;;6255:1;6248:8;;;;6221:47;6280:9;6296:1;6292;:5;6280:17;;6325:1;6320;6316;:5;;;;;;:10;6308:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6384:1;6377:8;;;5922:471;;;;;:::o;6869:132::-;6927:7;6954:39;6958:1;6961;6954:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6947:46;;6869:132;;;;:::o;4568:181::-;4626:7;4646:9;4662:1;4658;:5;4646:17;;4687:1;4682;:6;;4674:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4740:1;4733:8;;;4568:181;;;;:::o;661:106::-;714:15;749:10;742:17;;661:106;:::o;33733:346::-;33852:1;33835:19;;:5;:19;;;;33827:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33933:1;33914:21;;:7;:21;;;;33906:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34017:6;33987:11;:18;33999:5;33987:18;;;;;;;;;;;;;;;:27;34006:7;33987:27;;;;;;;;;;;;;;;:36;;;;34055:7;34039:32;;34048:5;34039:32;;;34064:6;34039:32;;;;;;;;;;;;;;;;;;33733:346;;;:::o;5032:136::-;5090:7;5117:43;5121:1;5124;5117:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5110:50;;5032:136;;;;:::o;30314:600::-;30421:10;:8;:10::i;:::-;30420:11;30412:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30499:1;30481:20;;:6;:20;;;;30473:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30583:1;30562:23;;:9;:23;;;;30554:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30638:47;30659:6;30667:9;30678:6;30638:20;:47::i;:::-;30718:71;30740:6;30718:71;;;;;;;;;;;;;;;;;:9;:17;30728:6;30718:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;30698:9;:17;30708:6;30698:17;;;;;;;;;;;;;;;:91;;;;30823:32;30848:6;30823:9;:20;30833:9;30823:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;30800:9;:20;30810:9;30800:20;;;;;;;;;;;;;;;:55;;;;30888:9;30871:35;;30880:6;30871:35;;;30899:6;30871:35;;;;;;;;;;;;;;;;;;30314:600;;;:::o;5471:192::-;5557:7;5590:1;5585;:6;;5593:12;5577:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5617:9;5633:1;5629;:5;5617:17;;5654:1;5647:8;;;5471:192;;;;;:::o;31580:744::-;31689:1;31670:21;;:7;:21;;;;31662:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31767:6;31746:17;;:27;;31738:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31810:8;31821:22;31839:3;31821:13;31832:1;31821:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;31810:33;;31854:15;31872;31883:3;31872:6;:10;;:15;;;;:::i;:::-;31854:33;;31898:53;31927:1;31931:7;31940:10;31898:20;:53::i;:::-;31982:29;32004:6;31982:17;;:21;;:29;;;;:::i;:::-;31962:17;:49;;;;32043:34;32066:10;32043:9;:18;32053:7;32043:18;;;;;;;;;;;;;;;;:22;;:34;;;;:::i;:::-;32022:9;:18;32032:7;32022:18;;;;;;;;;;;;;;;:55;;;;32114:7;32093:41;;32110:1;32093:41;;;32123:10;32093:41;;;;;;;;;;;;;;;;;;32145:50;32174:1;32178:11;;;;;;;;;;;32191:3;32145:20;:50::i;:::-;32231:31;32258:3;32231:9;:22;32241:11;;;;;;;;;;;32231:22;;;;;;;;;;;;;;;;:26;;:31;;;;:::i;:::-;32206:9;:22;32216:11;;;;;;;;;;;32206:22;;;;;;;;;;;;;;;:56;;;;32299:11;;;;;;;;;;;32278:38;;32295:1;32278:38;;;32312:3;32278:38;;;;;;;;;;;;;;;;;;31580:744;;;;:::o;32875:418::-;32978:1;32959:21;;:7;:21;;;;32951:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33031:49;33052:7;33069:1;33073:6;33031:20;:49::i;:::-;33114:68;33137:6;33114:68;;;;;;;;;;;;;;;;;:9;:18;33124:7;33114:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;33093:9;:18;33103:7;33093:18;;;;;;;;;;;;;;;:89;;;;33208:24;33225:6;33208:12;;:16;;:24;;;;:::i;:::-;33193:12;:39;;;;33274:1;33248:37;;33257:7;33248:37;;;33278:6;33248:37;;;;;;;;;;;;;;;;;;32875:418;;:::o;35104:92::-;;;;:::o;7497:278::-;7583:7;7615:1;7611;:5;7618:12;7603:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7642:9;7658:1;7654;:5;;;;;;7642:17;;7766:1;7759:8;;;7497:278;;;;;:::o

Swarm Source

ipfs://79a2dcdccdae84b316389132142d69c1d72f7636e89c3c07dacee33c99cf3569
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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