ETH Price: $3,142.08 (-8.57%)
Gas: 9 Gwei

Token

WoFToken (WOF)
 

Overview

Max Total Supply

1,561,847.501138425913298161 WOF

Holders

179

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
869.461805555555555555 WOF

Value
$0.00
0x5175948d8accf0423867817124C734078743cA36
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:
WOFToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : WofToken.sol
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

interface IWorldOfFreight {
	function balanceOG(address _user) external view returns(uint256);
    function ownerOf(uint256 tokenId) external view returns(address);
    function mintedcount() external view returns (uint256);
}

contract WOFToken is ERC20("WoFToken", "WOF") {
    using SafeMath for uint256;
    uint256 public BASE_RATE = 25000000000000000000;
    uint256 public buyPrice = 30000000000000;
    bool public _saleOpen = false;
    uint256 public rate = 1;
    bool public cut = false;
    address public cutAddres;
    address public contOwner;
    address public _garageContract;
    uint256 public ENDTIME = 1664582400;
    mapping(address => uint256) public rewards;
	mapping(address => uint256) public lastUpdate; 


    IWorldOfFreight public wofContract;
    constructor(address _wof) {
		wofContract = IWorldOfFreight(_wof);
        contOwner = msg.sender;
	}   

    //Set buy price for token
    function setPrice(uint256 _price) public {
        require(msg.sender == contOwner, 'Sorry, no luck for you');
        buyPrice = _price;
    }
    function setBaseRate(uint256 _price) public {
        require(msg.sender == contOwner, 'Sorry, no luck for you');
        BASE_RATE = _price;
    }
    function setCut() public {
        require(msg.sender == contOwner, 'Sorry, no luck for you');
        cut = !cut;
    }
    function setCutAddr(address _to) public {
        require(msg.sender == contOwner, 'Sorry, no luck for you');
        cutAddres = _to;
    }
    function setGarageContract(address contractAddress) public {
        require(msg.sender == contOwner, 'Sorry, no luck for you');
        _garageContract = contractAddress;
    }
    //Activate sale for token
    function toggleTokenSale() public {
        require(msg.sender == contOwner, 'Sorry, no luck for you');
        _saleOpen = !_saleOpen;
    }
    function setRate(uint256 newRate) public {
        require(msg.sender == contOwner, 'Big no-no');
        rate = newRate;
    }

    //Reward minters - Add virtual tokens
    function rewardOnMint(address _user, uint256 _amount) external {
		require(msg.sender == address(wofContract), "Can't call this");
        uint256 tokenId = wofContract.mintedcount();
        uint256 time = block.timestamp;
        if(tokenId < 2501) {
            rewards[_user] = rewards[_user].add(500 ether);
        }
        else {
            rewards[_user] = rewards[_user].add(_amount);
        }
        lastUpdate[_user] = time;
    }

    //GET BALANCE FOR SINGLE TOKEN
    function getClaimable(address _owner) public view returns(uint256){
        uint256 time = block.timestamp;
        if(lastUpdate[_owner] == 0) {
            return 0;
        }
        else if(time < ENDTIME) {
            uint256 pending = wofContract.balanceOG(_owner).mul(BASE_RATE.mul((time.sub(lastUpdate[_owner])))).div(86400);
            uint256 total = rewards[_owner].add(pending);
            return total;
        }
        else {
            return rewards[_owner];
        }
    }

    struct Rewardees {
        address owner;
        uint256 amount;
    }

    //Reward tokens to minted users
    function initialReward(Rewardees [] memory _array, uint256 time) public {
        require(msg.sender == contOwner, 'Big no-no');
        for(uint i=0; i < _array.length; i++){            
            rewards[_array[i].owner] = _array[i].amount;
            lastUpdate[_array[i].owner] = time;
        }
    }
    //SET BALANCE FOR TOKEN
    function setBalance(Rewardees [] memory _array) public {
        require(msg.sender == contOwner || msg.sender == address(_garageContract), 'Big no-no');
        for(uint i=0; i < _array.length; i++){            
            rewards[_array[i].owner] = _array[i].amount;
        }
    }

    function transferTokens(address _from, address _to) external {
		require(msg.sender == address(wofContract));
        uint256 time = block.timestamp;
        rewards[_from] = getClaimable(_from);
        lastUpdate[_from] = time;
        rewards[_to] = getClaimable(_to);
        lastUpdate[_to] = time;
	}
  
    //Buy tokens from contract
    function buyMint(address _to, uint256 _amount) public payable {
        require(msg.value >= _amount.mul(buyPrice), 'Send more eth');
        require(_saleOpen == true, 'Can not buy at the moment');
        uint256 eth = _amount.mul(1 ether);
        _mint(_to, eth);
    }

    function rewardUsers(address _to, uint256 _amount) public {
        require(msg.sender == contOwner, 'Sorry, no luck for you');
        uint256 time = block.timestamp;
        uint256 unclaimed = getClaimable(_to);
        rewards[_to] = rewards[_to].add(_amount).add(unclaimed);
        lastUpdate[_to] = time;
    }

    function claimTokens(address _to, uint256 _amount) public {
        require(_amount <= getClaimable(_to), 'You do not have this much');
        rewards[_to] = getClaimable(_to);
        uint256 time = block.timestamp;
        rewards[_to] = rewards[_to].sub(_amount);
        lastUpdate[_to] = time;
        _mint(_to, _amount );
    }
    //BURN THE TOKENS FOR NAMECHANGE
    function burn(address _from, uint256 _amount) external {
		require(msg.sender == address(wofContract) || msg.sender == address(_garageContract));
        uint256 valueInEth = _amount/(1 ether);
        if(cut) {
            uint256 percentage = rate.div(100);
            uint256 cuttable = valueInEth.div(percentage);
            uint256 burnable = valueInEth.sub(cuttable);
            _transfer(_from, cutAddres, cuttable);
            _burn(_from, burnable);
        }
        else {
		    _burn(_from, valueInEth);
        }
	}
    //GET ETH FROM CONTRACT
    function withdraw(address payable to, uint256 amount) public {
        require(msg.sender == contOwner);
        to.transfer(amount); 
    }

}

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 6 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_wof","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"BASE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ENDTIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_garageContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"buyMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"buyPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cutAddres","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"components":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct WOFToken.Rewardees[]","name":"_array","type":"tuple[]"},{"internalType":"uint256","name":"time","type":"uint256"}],"name":"initialReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rewardOnMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rewardUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct WOFToken.Rewardees[]","name":"_array","type":"tuple[]"}],"name":"setBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setBaseRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setCut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"setCutAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setGarageContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"setRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleTokenSale","outputs":[],"stateMutability":"nonpayable","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":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wofContract","outputs":[{"internalType":"contract IWorldOfFreight","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405268015af1d78b58c40000600555651b48eb57e0006006556000600760006101000a81548160ff02191690831515021790555060016008556000600960006101000a81548160ff0219169083151502179055506363378300600c553480156200006b57600080fd5b5060405162003fd538038062003fd5833981810160405281019062000091919062000281565b6040518060400160405280600881526020017f576f46546f6b656e0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f574f460000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000115929190620001ba565b5080600490805190602001906200012e929190620001ba565b50505080600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000360565b828054620001c890620002e1565b90600052602060002090601f016020900481019282620001ec576000855562000238565b82601f106200020757805160ff191683800117855562000238565b8280016001018555821562000238579182015b82811115620002375782518255916020019190600101906200021a565b5b5090506200024791906200024b565b5090565b5b80821115620002665760008160009055506001016200024c565b5090565b6000815190506200027b8162000346565b92915050565b6000602082840312156200029457600080fd5b6000620002a4848285016200026a565b91505092915050565b6000620002ba82620002c1565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620002fa57607f821691505b6020821081141562000311576200031062000317565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200035181620002ad565b81146200035d57600080fd5b50565b613c6580620003706000396000f3fe60806040526004361061023b5760003560e01c8063850d9afb1161012e578063c33ebfae116100ab578063e51501b71161006f578063e51501b714610899578063e6fd604c146108c2578063eaca8239146108ed578063f3fef3a314610909578063fe417fa5146109325761023b565b8063c33ebfae146107b2578063ca778b5b146107c9578063cb03fb1e146107f4578063dd62ed3e14610831578063e33694621461086e5761023b565b80639dc29fac116100f25780639dc29fac146106a7578063a457c2d7146106d0578063a583024b1461070d578063a9059cbb1461074a578063bd23a118146107875761023b565b8063850d9afb146105d45780638620410b146105ff57806391b7f5ed1461062a57806395d89b41146106535780639d6182941461067e5761023b565b80632c4e722e116101bc57806363c72d601161018057806363c72d60146104f15780636a092e791461051c5780636bfee4521461054557806370a082311461056e578063746677e1146105ab5761023b565b80632c4e722e1461040a578063313ce5671461043557806334fcf43714610460578063395093511461048957806341910f90146104c65761023b565b806318160ddd1161020357806318160ddd146103255780631d08837b1461035057806322a75e601461037957806323b872dd146103a4578063291653d7146103e15761023b565b806306fdde03146102405780630700037d1461026b578063095ea7b3146102a85780630c243484146102e55780630e1caf6b1461030e575b600080fd5b34801561024c57600080fd5b5061025561095b565b60405161026291906135fe565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190612dc0565b6109ed565b60405161029f9190613820565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612eb0565b610a05565b6040516102dc91906135c8565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612dc0565b610a23565b005b34801561031a57600080fd5b50610323610af7565b005b34801561033157600080fd5b5061033a610bb3565b6040516103479190613820565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190612f81565b610bbd565b005b34801561038557600080fd5b5061038e610c57565b60405161039b91906135ad565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c69190612e61565b610c7d565b6040516103d891906135c8565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190612eb0565b610d75565b005b34801561041657600080fd5b5061041f61103b565b60405161042c9190613820565b60405180910390f35b34801561044157600080fd5b5061044a611041565b604051610457919061383b565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190612f81565b61104a565b005b34801561049557600080fd5b506104b060048036038101906104ab9190612eb0565b6110e4565b6040516104bd91906135c8565b60405180910390f35b3480156104d257600080fd5b506104db611190565b6040516104e89190613820565b60405180910390f35b3480156104fd57600080fd5b50610506611196565b60405161051391906135ad565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190612e25565b6111bc565b005b34801561055157600080fd5b5061056c60048036038101906105679190612eb0565b611340565b005b34801561057a57600080fd5b5061059560048036038101906105909190612dc0565b6114d3565b6040516105a29190613820565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190612f2d565b61151b565b005b3480156105e057600080fd5b506105e9611723565b6040516105f69190613820565b60405180910390f35b34801561060b57600080fd5b50610614611729565b6040516106219190613820565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c9190612f81565b61172f565b005b34801561065f57600080fd5b506106686117c9565b60405161067591906135fe565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190612dc0565b61185b565b005b3480156106b357600080fd5b506106ce60048036038101906106c99190612eb0565b61192f565b005b3480156106dc57600080fd5b506106f760048036038101906106f29190612eb0565b611aa5565b60405161070491906135c8565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f9190612dc0565b611b90565b6040516107419190613820565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c9190612eb0565b611dd7565b60405161077e91906135c8565b60405180910390f35b34801561079357600080fd5b5061079c611df5565b6040516107a991906135e3565b60405180910390f35b3480156107be57600080fd5b506107c7611e1b565b005b3480156107d557600080fd5b506107de611ed7565b6040516107eb91906135ad565b60405180910390f35b34801561080057600080fd5b5061081b60048036038101906108169190612dc0565b611efd565b6040516108289190613820565b60405180910390f35b34801561083d57600080fd5b5061085860048036038101906108539190612e25565b611f15565b6040516108659190613820565b60405180910390f35b34801561087a57600080fd5b50610883611f9c565b60405161089091906135c8565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb9190612eec565b611faf565b005b3480156108ce57600080fd5b506108d7612186565b6040516108e491906135c8565b60405180910390f35b61090760048036038101906109029190612eb0565b612199565b005b34801561091557600080fd5b50610930600480360381019061092b9190612de9565b612274565b005b34801561093e57600080fd5b5061095960048036038101906109549190612eb0565b612319565b005b60606003805461096a90613aa2565b80601f016020809104026020016040519081016040528092919081815260200182805461099690613aa2565b80156109e35780601f106109b8576101008083540402835291602001916109e3565b820191906000526020600020905b8154815290600101906020018083116109c657829003601f168201915b5050505050905090565b600d6020528060005260406000206000915090505481565b6000610a19610a1261249d565b84846124a5565b6001905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90613620565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e90613620565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b6000600254905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4490613620565b60405180910390fd5b8060058190555050565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c8a848484612670565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cd561249d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90613720565b60405180910390fd5b610d6985610d6161249d565b8584036124a5565b60019150509392505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc906137c0565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663668493b56040518163ffffffff1660e01b815260040160206040518083038186803b158015610e6f57600080fd5b505afa158015610e83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea79190612faa565b905060004290506109c5821015610f5b57610f13681b1ae4d6e2ef500000600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128f190919063ffffffff16565b600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ff1565b610fad83600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128f190919063ffffffff16565b600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b80600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b60085481565b60006012905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d1906136e0565b60405180910390fd5b8060088190555050565b60006111866110f161249d565b8484600160006110ff61249d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461118191906138cf565b6124a5565b6001905092915050565b60055481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461121657600080fd5b600042905061122483611b90565b600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112b482611b90565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c790613620565b60405180910390fd5b600042905060006113e084611b90565b90506114468161143885600d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128f190919063ffffffff16565b6128f190919063ffffffff16565b600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a2906136e0565b60405180910390fd5b60005b825181101561171e578281815181106115f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160200151600d6000858481518110611639577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600e60008584815181106116c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061171690613ad4565b9150506115ae565b505050565b600c5481565b60065481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b690613620565b60405180910390fd5b8060068190555050565b6060600480546117d890613aa2565b80601f016020809104026020016040519081016040528092919081815260200182805461180490613aa2565b80156118515780601f1061182657610100808354040283529160200191611851565b820191906000526020600020905b81548152906001019060200180831161183457829003601f168201915b5050505050905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613620565b60405180910390fd5b80600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806119d85750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6119e157600080fd5b6000670de0b6b3a7640000826119f79190613925565b9050600960009054906101000a900460ff1615611a95576000611a26606460085461290790919063ffffffff16565b90506000611a3d828461290790919063ffffffff16565b90506000611a54828561291d90919063ffffffff16565b9050611a8386600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612670565b611a8d8682612933565b505050611aa0565b611a9f8382612933565b5b505050565b60008060016000611ab461249d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b68906137e0565b60405180910390fd5b611b85611b7c61249d565b858584036124a5565b600191505092915050565b6000804290506000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611be8576000915050611dd2565b600c54811015611d8e576000611d2b62015180611d1d611c64611c53600e60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548761291d90919063ffffffff16565b600554612b0a90919063ffffffff16565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338712d8d896040518263ffffffff1660e01b8152600401611cbf91906135ad565b60206040518083038186803b158015611cd757600080fd5b505afa158015611ceb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d0f9190612faa565b612b0a90919063ffffffff16565b61290790919063ffffffff16565b90506000611d8182600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128f190919063ffffffff16565b9050809350505050611dd2565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549150505b919050565b6000611deb611de461249d565b8484612670565b6001905092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea290613620565b60405180910390fd5b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e6020528060005260406000206000915090505481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600760009054906101000a900460ff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806120585750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e906136e0565b60405180910390fd5b60005b8151811015612182578181815181106120dc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160200151600d6000848481518110612125577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061217a90613ad4565b91505061209a565b5050565b600960009054906101000a900460ff1681565b6121ae60065482612b0a90919063ffffffff16565b3410156121f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e790613700565b60405180910390fd5b60011515600760009054906101000a900460ff16151514612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d90613780565b60405180910390fd5b6000612263670de0b6b3a764000083612b0a90919063ffffffff16565b905061226f8382612b20565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146122ce57600080fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612314573d6000803e3d6000fd5b505050565b61232282611b90565b811115612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b90613660565b60405180910390fd5b61236d82611b90565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600042905061240782600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461291d90919063ffffffff16565b600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124988383612b20565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250c906137a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257c906136a0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126639190613820565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d790613760565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274790613640565b60405180910390fd5b61275b838383612c80565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d8906136c0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461287491906138cf565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128d89190613820565b60405180910390a36128eb848484612c85565b50505050565b600081836128ff91906138cf565b905092915050565b600081836129159190613925565b905092915050565b6000818361292b91906139b0565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a90613740565b60405180910390fd5b6129af82600083612c80565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2c90613680565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612a8c91906139b0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612af19190613820565b60405180910390a3612b0583600084612c85565b505050565b60008183612b189190613956565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8790613800565b60405180910390fd5b612b9c60008383612c80565b8060026000828254612bae91906138cf565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c0391906138cf565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612c689190613820565b60405180910390a3612c7c60008383612c85565b5050565b505050565b505050565b6000612c9d612c9884613887565b613856565b90508083825260208201905082856040860282011115612cbc57600080fd5b60005b85811015612cec5781612cd28882612d4a565b845260208401935060408301925050600181019050612cbf565b5050509392505050565b600081359050612d0581613bea565b92915050565b600081359050612d1a81613c01565b92915050565b600082601f830112612d3157600080fd5b8135612d41848260208601612c8a565b91505092915050565b600060408284031215612d5c57600080fd5b612d666040613856565b90506000612d7684828501612cf6565b6000830152506020612d8a84828501612d96565b60208301525092915050565b600081359050612da581613c18565b92915050565b600081519050612dba81613c18565b92915050565b600060208284031215612dd257600080fd5b6000612de084828501612cf6565b91505092915050565b60008060408385031215612dfc57600080fd5b6000612e0a85828601612d0b565b9250506020612e1b85828601612d96565b9150509250929050565b60008060408385031215612e3857600080fd5b6000612e4685828601612cf6565b9250506020612e5785828601612cf6565b9150509250929050565b600080600060608486031215612e7657600080fd5b6000612e8486828701612cf6565b9350506020612e9586828701612cf6565b9250506040612ea686828701612d96565b9150509250925092565b60008060408385031215612ec357600080fd5b6000612ed185828601612cf6565b9250506020612ee285828601612d96565b9150509250929050565b600060208284031215612efe57600080fd5b600082013567ffffffffffffffff811115612f1857600080fd5b612f2484828501612d20565b91505092915050565b60008060408385031215612f4057600080fd5b600083013567ffffffffffffffff811115612f5a57600080fd5b612f6685828601612d20565b9250506020612f7785828601612d96565b9150509250929050565b600060208284031215612f9357600080fd5b6000612fa184828501612d96565b91505092915050565b600060208284031215612fbc57600080fd5b6000612fca84828501612dab565b91505092915050565b612fdc816139e4565b82525050565b612feb81613a08565b82525050565b612ffa81613a4b565b82525050565b600061300b826138b3565b61301581856138be565b9350613025818560208601613a6f565b61302e81613bd9565b840191505092915050565b60006130466016836138be565b91507f536f7272792c206e6f206c75636b20666f7220796f75000000000000000000006000830152602082019050919050565b60006130866023836138be565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130ec6019836138be565b91507f596f7520646f206e6f7420686176652074686973206d756368000000000000006000830152602082019050919050565b600061312c6022836138be565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131926022836138be565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131f86026836138be565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061325e6009836138be565b91507f426967206e6f2d6e6f00000000000000000000000000000000000000000000006000830152602082019050919050565b600061329e600d836138be565b91507f53656e64206d6f726520657468000000000000000000000000000000000000006000830152602082019050919050565b60006132de6028836138be565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133446021836138be565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133aa6025836138be565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134106019836138be565b91507f43616e206e6f742062757920617420746865206d6f6d656e74000000000000006000830152602082019050919050565b60006134506024836138be565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134b6600f836138be565b91507f43616e27742063616c6c207468697300000000000000000000000000000000006000830152602082019050919050565b60006134f66025836138be565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061355c601f836138be565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61359881613a34565b82525050565b6135a781613a3e565b82525050565b60006020820190506135c26000830184612fd3565b92915050565b60006020820190506135dd6000830184612fe2565b92915050565b60006020820190506135f86000830184612ff1565b92915050565b600060208201905081810360008301526136188184613000565b905092915050565b6000602082019050818103600083015261363981613039565b9050919050565b6000602082019050818103600083015261365981613079565b9050919050565b60006020820190508181036000830152613679816130df565b9050919050565b600060208201905081810360008301526136998161311f565b9050919050565b600060208201905081810360008301526136b981613185565b9050919050565b600060208201905081810360008301526136d9816131eb565b9050919050565b600060208201905081810360008301526136f981613251565b9050919050565b6000602082019050818103600083015261371981613291565b9050919050565b60006020820190508181036000830152613739816132d1565b9050919050565b6000602082019050818103600083015261375981613337565b9050919050565b600060208201905081810360008301526137798161339d565b9050919050565b6000602082019050818103600083015261379981613403565b9050919050565b600060208201905081810360008301526137b981613443565b9050919050565b600060208201905081810360008301526137d9816134a9565b9050919050565b600060208201905081810360008301526137f9816134e9565b9050919050565b600060208201905081810360008301526138198161354f565b9050919050565b6000602082019050613835600083018461358f565b92915050565b6000602082019050613850600083018461359e565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561387d5761387c613baa565b5b8060405250919050565b600067ffffffffffffffff8211156138a2576138a1613baa565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60006138da82613a34565b91506138e583613a34565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561391a57613919613b1d565b5b828201905092915050565b600061393082613a34565b915061393b83613a34565b92508261394b5761394a613b4c565b5b828204905092915050565b600061396182613a34565b915061396c83613a34565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139a5576139a4613b1d565b5b828202905092915050565b60006139bb82613a34565b91506139c683613a34565b9250828210156139d9576139d8613b1d565b5b828203905092915050565b60006139ef82613a14565b9050919050565b6000613a0182613a14565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000613a5682613a5d565b9050919050565b6000613a6882613a14565b9050919050565b60005b83811015613a8d578082015181840152602081019050613a72565b83811115613a9c576000848401525b50505050565b60006002820490506001821680613aba57607f821691505b60208210811415613ace57613acd613b7b565b5b50919050565b6000613adf82613a34565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b1257613b11613b1d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613bf3816139e4565b8114613bfe57600080fd5b50565b613c0a816139f6565b8114613c1557600080fd5b50565b613c2181613a34565b8114613c2c57600080fd5b5056fea2646970667358221220c2c533661eeb311a19e32f3751e8f35cbc4ad0b7766e64a0b4ab14be812d601e64736f6c634300080000330000000000000000000000001a7e29a8c5d2320a1b56735b7654139e7b2860af

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063850d9afb1161012e578063c33ebfae116100ab578063e51501b71161006f578063e51501b714610899578063e6fd604c146108c2578063eaca8239146108ed578063f3fef3a314610909578063fe417fa5146109325761023b565b8063c33ebfae146107b2578063ca778b5b146107c9578063cb03fb1e146107f4578063dd62ed3e14610831578063e33694621461086e5761023b565b80639dc29fac116100f25780639dc29fac146106a7578063a457c2d7146106d0578063a583024b1461070d578063a9059cbb1461074a578063bd23a118146107875761023b565b8063850d9afb146105d45780638620410b146105ff57806391b7f5ed1461062a57806395d89b41146106535780639d6182941461067e5761023b565b80632c4e722e116101bc57806363c72d601161018057806363c72d60146104f15780636a092e791461051c5780636bfee4521461054557806370a082311461056e578063746677e1146105ab5761023b565b80632c4e722e1461040a578063313ce5671461043557806334fcf43714610460578063395093511461048957806341910f90146104c65761023b565b806318160ddd1161020357806318160ddd146103255780631d08837b1461035057806322a75e601461037957806323b872dd146103a4578063291653d7146103e15761023b565b806306fdde03146102405780630700037d1461026b578063095ea7b3146102a85780630c243484146102e55780630e1caf6b1461030e575b600080fd5b34801561024c57600080fd5b5061025561095b565b60405161026291906135fe565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190612dc0565b6109ed565b60405161029f9190613820565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612eb0565b610a05565b6040516102dc91906135c8565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612dc0565b610a23565b005b34801561031a57600080fd5b50610323610af7565b005b34801561033157600080fd5b5061033a610bb3565b6040516103479190613820565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190612f81565b610bbd565b005b34801561038557600080fd5b5061038e610c57565b60405161039b91906135ad565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c69190612e61565b610c7d565b6040516103d891906135c8565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190612eb0565b610d75565b005b34801561041657600080fd5b5061041f61103b565b60405161042c9190613820565b60405180910390f35b34801561044157600080fd5b5061044a611041565b604051610457919061383b565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190612f81565b61104a565b005b34801561049557600080fd5b506104b060048036038101906104ab9190612eb0565b6110e4565b6040516104bd91906135c8565b60405180910390f35b3480156104d257600080fd5b506104db611190565b6040516104e89190613820565b60405180910390f35b3480156104fd57600080fd5b50610506611196565b60405161051391906135ad565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190612e25565b6111bc565b005b34801561055157600080fd5b5061056c60048036038101906105679190612eb0565b611340565b005b34801561057a57600080fd5b5061059560048036038101906105909190612dc0565b6114d3565b6040516105a29190613820565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190612f2d565b61151b565b005b3480156105e057600080fd5b506105e9611723565b6040516105f69190613820565b60405180910390f35b34801561060b57600080fd5b50610614611729565b6040516106219190613820565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c9190612f81565b61172f565b005b34801561065f57600080fd5b506106686117c9565b60405161067591906135fe565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190612dc0565b61185b565b005b3480156106b357600080fd5b506106ce60048036038101906106c99190612eb0565b61192f565b005b3480156106dc57600080fd5b506106f760048036038101906106f29190612eb0565b611aa5565b60405161070491906135c8565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f9190612dc0565b611b90565b6040516107419190613820565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c9190612eb0565b611dd7565b60405161077e91906135c8565b60405180910390f35b34801561079357600080fd5b5061079c611df5565b6040516107a991906135e3565b60405180910390f35b3480156107be57600080fd5b506107c7611e1b565b005b3480156107d557600080fd5b506107de611ed7565b6040516107eb91906135ad565b60405180910390f35b34801561080057600080fd5b5061081b60048036038101906108169190612dc0565b611efd565b6040516108289190613820565b60405180910390f35b34801561083d57600080fd5b5061085860048036038101906108539190612e25565b611f15565b6040516108659190613820565b60405180910390f35b34801561087a57600080fd5b50610883611f9c565b60405161089091906135c8565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb9190612eec565b611faf565b005b3480156108ce57600080fd5b506108d7612186565b6040516108e491906135c8565b60405180910390f35b61090760048036038101906109029190612eb0565b612199565b005b34801561091557600080fd5b50610930600480360381019061092b9190612de9565b612274565b005b34801561093e57600080fd5b5061095960048036038101906109549190612eb0565b612319565b005b60606003805461096a90613aa2565b80601f016020809104026020016040519081016040528092919081815260200182805461099690613aa2565b80156109e35780601f106109b8576101008083540402835291602001916109e3565b820191906000526020600020905b8154815290600101906020018083116109c657829003601f168201915b5050505050905090565b600d6020528060005260406000206000915090505481565b6000610a19610a1261249d565b84846124a5565b6001905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90613620565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e90613620565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b6000600254905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4490613620565b60405180910390fd5b8060058190555050565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c8a848484612670565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cd561249d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90613720565b60405180910390fd5b610d6985610d6161249d565b8584036124a5565b60019150509392505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc906137c0565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663668493b56040518163ffffffff1660e01b815260040160206040518083038186803b158015610e6f57600080fd5b505afa158015610e83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea79190612faa565b905060004290506109c5821015610f5b57610f13681b1ae4d6e2ef500000600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128f190919063ffffffff16565b600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ff1565b610fad83600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128f190919063ffffffff16565b600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b80600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b60085481565b60006012905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d1906136e0565b60405180910390fd5b8060088190555050565b60006111866110f161249d565b8484600160006110ff61249d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461118191906138cf565b6124a5565b6001905092915050565b60055481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461121657600080fd5b600042905061122483611b90565b600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112b482611b90565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c790613620565b60405180910390fd5b600042905060006113e084611b90565b90506114468161143885600d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128f190919063ffffffff16565b6128f190919063ffffffff16565b600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a2906136e0565b60405180910390fd5b60005b825181101561171e578281815181106115f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160200151600d6000858481518110611639577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600e60008584815181106116c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061171690613ad4565b9150506115ae565b505050565b600c5481565b60065481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b690613620565b60405180910390fd5b8060068190555050565b6060600480546117d890613aa2565b80601f016020809104026020016040519081016040528092919081815260200182805461180490613aa2565b80156118515780601f1061182657610100808354040283529160200191611851565b820191906000526020600020905b81548152906001019060200180831161183457829003601f168201915b5050505050905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613620565b60405180910390fd5b80600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806119d85750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6119e157600080fd5b6000670de0b6b3a7640000826119f79190613925565b9050600960009054906101000a900460ff1615611a95576000611a26606460085461290790919063ffffffff16565b90506000611a3d828461290790919063ffffffff16565b90506000611a54828561291d90919063ffffffff16565b9050611a8386600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612670565b611a8d8682612933565b505050611aa0565b611a9f8382612933565b5b505050565b60008060016000611ab461249d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b68906137e0565b60405180910390fd5b611b85611b7c61249d565b858584036124a5565b600191505092915050565b6000804290506000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611be8576000915050611dd2565b600c54811015611d8e576000611d2b62015180611d1d611c64611c53600e60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548761291d90919063ffffffff16565b600554612b0a90919063ffffffff16565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338712d8d896040518263ffffffff1660e01b8152600401611cbf91906135ad565b60206040518083038186803b158015611cd757600080fd5b505afa158015611ceb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d0f9190612faa565b612b0a90919063ffffffff16565b61290790919063ffffffff16565b90506000611d8182600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128f190919063ffffffff16565b9050809350505050611dd2565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549150505b919050565b6000611deb611de461249d565b8484612670565b6001905092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea290613620565b60405180910390fd5b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e6020528060005260406000206000915090505481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600760009054906101000a900460ff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806120585750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e906136e0565b60405180910390fd5b60005b8151811015612182578181815181106120dc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160200151600d6000848481518110612125577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061217a90613ad4565b91505061209a565b5050565b600960009054906101000a900460ff1681565b6121ae60065482612b0a90919063ffffffff16565b3410156121f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e790613700565b60405180910390fd5b60011515600760009054906101000a900460ff16151514612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d90613780565b60405180910390fd5b6000612263670de0b6b3a764000083612b0a90919063ffffffff16565b905061226f8382612b20565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146122ce57600080fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612314573d6000803e3d6000fd5b505050565b61232282611b90565b811115612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b90613660565b60405180910390fd5b61236d82611b90565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600042905061240782600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461291d90919063ffffffff16565b600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124988383612b20565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250c906137a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257c906136a0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126639190613820565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d790613760565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274790613640565b60405180910390fd5b61275b838383612c80565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d8906136c0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461287491906138cf565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128d89190613820565b60405180910390a36128eb848484612c85565b50505050565b600081836128ff91906138cf565b905092915050565b600081836129159190613925565b905092915050565b6000818361292b91906139b0565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a90613740565b60405180910390fd5b6129af82600083612c80565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2c90613680565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612a8c91906139b0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612af19190613820565b60405180910390a3612b0583600084612c85565b505050565b60008183612b189190613956565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8790613800565b60405180910390fd5b612b9c60008383612c80565b8060026000828254612bae91906138cf565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c0391906138cf565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612c689190613820565b60405180910390a3612c7c60008383612c85565b5050565b505050565b505050565b6000612c9d612c9884613887565b613856565b90508083825260208201905082856040860282011115612cbc57600080fd5b60005b85811015612cec5781612cd28882612d4a565b845260208401935060408301925050600181019050612cbf565b5050509392505050565b600081359050612d0581613bea565b92915050565b600081359050612d1a81613c01565b92915050565b600082601f830112612d3157600080fd5b8135612d41848260208601612c8a565b91505092915050565b600060408284031215612d5c57600080fd5b612d666040613856565b90506000612d7684828501612cf6565b6000830152506020612d8a84828501612d96565b60208301525092915050565b600081359050612da581613c18565b92915050565b600081519050612dba81613c18565b92915050565b600060208284031215612dd257600080fd5b6000612de084828501612cf6565b91505092915050565b60008060408385031215612dfc57600080fd5b6000612e0a85828601612d0b565b9250506020612e1b85828601612d96565b9150509250929050565b60008060408385031215612e3857600080fd5b6000612e4685828601612cf6565b9250506020612e5785828601612cf6565b9150509250929050565b600080600060608486031215612e7657600080fd5b6000612e8486828701612cf6565b9350506020612e9586828701612cf6565b9250506040612ea686828701612d96565b9150509250925092565b60008060408385031215612ec357600080fd5b6000612ed185828601612cf6565b9250506020612ee285828601612d96565b9150509250929050565b600060208284031215612efe57600080fd5b600082013567ffffffffffffffff811115612f1857600080fd5b612f2484828501612d20565b91505092915050565b60008060408385031215612f4057600080fd5b600083013567ffffffffffffffff811115612f5a57600080fd5b612f6685828601612d20565b9250506020612f7785828601612d96565b9150509250929050565b600060208284031215612f9357600080fd5b6000612fa184828501612d96565b91505092915050565b600060208284031215612fbc57600080fd5b6000612fca84828501612dab565b91505092915050565b612fdc816139e4565b82525050565b612feb81613a08565b82525050565b612ffa81613a4b565b82525050565b600061300b826138b3565b61301581856138be565b9350613025818560208601613a6f565b61302e81613bd9565b840191505092915050565b60006130466016836138be565b91507f536f7272792c206e6f206c75636b20666f7220796f75000000000000000000006000830152602082019050919050565b60006130866023836138be565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130ec6019836138be565b91507f596f7520646f206e6f7420686176652074686973206d756368000000000000006000830152602082019050919050565b600061312c6022836138be565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131926022836138be565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131f86026836138be565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061325e6009836138be565b91507f426967206e6f2d6e6f00000000000000000000000000000000000000000000006000830152602082019050919050565b600061329e600d836138be565b91507f53656e64206d6f726520657468000000000000000000000000000000000000006000830152602082019050919050565b60006132de6028836138be565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133446021836138be565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133aa6025836138be565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134106019836138be565b91507f43616e206e6f742062757920617420746865206d6f6d656e74000000000000006000830152602082019050919050565b60006134506024836138be565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134b6600f836138be565b91507f43616e27742063616c6c207468697300000000000000000000000000000000006000830152602082019050919050565b60006134f66025836138be565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061355c601f836138be565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61359881613a34565b82525050565b6135a781613a3e565b82525050565b60006020820190506135c26000830184612fd3565b92915050565b60006020820190506135dd6000830184612fe2565b92915050565b60006020820190506135f86000830184612ff1565b92915050565b600060208201905081810360008301526136188184613000565b905092915050565b6000602082019050818103600083015261363981613039565b9050919050565b6000602082019050818103600083015261365981613079565b9050919050565b60006020820190508181036000830152613679816130df565b9050919050565b600060208201905081810360008301526136998161311f565b9050919050565b600060208201905081810360008301526136b981613185565b9050919050565b600060208201905081810360008301526136d9816131eb565b9050919050565b600060208201905081810360008301526136f981613251565b9050919050565b6000602082019050818103600083015261371981613291565b9050919050565b60006020820190508181036000830152613739816132d1565b9050919050565b6000602082019050818103600083015261375981613337565b9050919050565b600060208201905081810360008301526137798161339d565b9050919050565b6000602082019050818103600083015261379981613403565b9050919050565b600060208201905081810360008301526137b981613443565b9050919050565b600060208201905081810360008301526137d9816134a9565b9050919050565b600060208201905081810360008301526137f9816134e9565b9050919050565b600060208201905081810360008301526138198161354f565b9050919050565b6000602082019050613835600083018461358f565b92915050565b6000602082019050613850600083018461359e565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561387d5761387c613baa565b5b8060405250919050565b600067ffffffffffffffff8211156138a2576138a1613baa565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60006138da82613a34565b91506138e583613a34565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561391a57613919613b1d565b5b828201905092915050565b600061393082613a34565b915061393b83613a34565b92508261394b5761394a613b4c565b5b828204905092915050565b600061396182613a34565b915061396c83613a34565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139a5576139a4613b1d565b5b828202905092915050565b60006139bb82613a34565b91506139c683613a34565b9250828210156139d9576139d8613b1d565b5b828203905092915050565b60006139ef82613a14565b9050919050565b6000613a0182613a14565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000613a5682613a5d565b9050919050565b6000613a6882613a14565b9050919050565b60005b83811015613a8d578082015181840152602081019050613a72565b83811115613a9c576000848401525b50505050565b60006002820490506001821680613aba57607f821691505b60208210811415613ace57613acd613b7b565b5b50919050565b6000613adf82613a34565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b1257613b11613b1d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613bf3816139e4565b8114613bfe57600080fd5b50565b613c0a816139f6565b8114613c1557600080fd5b50565b613c2181613a34565b8114613c2c57600080fd5b5056fea2646970667358221220c2c533661eeb311a19e32f3751e8f35cbc4ad0b7766e64a0b4ab14be812d601e64736f6c63430008000033

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

0000000000000000000000001a7e29a8c5d2320a1b56735b7654139e7b2860af

-----Decoded View---------------
Arg [0] : _wof (address): 0x1a7E29a8c5d2320a1b56735B7654139E7B2860aF

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001a7e29a8c5d2320a1b56735b7654139e7b2860af


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.