ETH Price: $3,057.57 (+1.10%)
Gas: 3 Gwei

Token

Eco Carbon Coin (ECC)
 

Overview

Max Total Supply

1,000,000,000 ECC

Holders

299

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,536,003 ECC

Value
$0.00
0x571b8569585483049ec3f0d7287b8e5b274332a0
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:
EcoCarbonCoin

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, None license

Contract Source Code (Solidity)

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

// File: node_modules\@openzeppelin\contracts\GSN\Context.sol

pragma solidity ^0.5.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 GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

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

// File: node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
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: node_modules\@openzeppelin\contracts\math\SafeMath.sol

pragma solidity ^0.5.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

// File: @openzeppelin\contracts\token\ERC20\ERC20.sol

pragma solidity ^0.5.0;




/**
 * @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 {ERC20Mintable}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public 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 returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal {
        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 Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

// File: @openzeppelin\contracts\access\Roles.sol

pragma solidity ^0.5.0;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

// File: @openzeppelin\contracts\ownership\Ownable.sol

pragma solidity ^0.5.0;

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

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

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

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts\ControlledPauserRole.sol

pragma solidity ^0.5.0;



contract ControlledPauserRole is Ownable {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(_msgSender());
    }

    modifier onlyPauser() {
        require(isPauser(_msgSender()), "ControlledPauserRole: caller does not have the Pauser role");
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    // onlyPauser -> onlyOwner
    function addPauser(address account) public onlyOwner {
        _addPauser(account);
    }

    // Add require()
    function renouncePauser() public {
        require(!isOwner(), "ControlledPauserRole: owner cannot renounce PauserRole");
        _removePauser(_msgSender());
    }

    // new function
    function revokePauser(address account) public onlyOwner {
        require(account != owner(), "ControlledPauserRole: owner cannot renounce PauserRole");
        _removePauser(account);
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}

// File: contracts\ControlledPausable.sol

pragma solidity ^0.5.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
contract ControlledPausable is ControlledPauserRole {
    /**
     * @dev Emitted when the pause is triggered by a pauser (`account`).
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by a pauser (`account`).
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state. Assigns the Pauser role
     * to the deployer.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: contracts\ControlledERC20Pausable.sol

pragma solidity ^0.5.0;



/**
 * @title Pausable token
 * @dev ERC20 with pausable transfers and allowances.
 *
 * Useful if you want to stop trades until the end of a crowdsale, or have
 * an emergency switch for freezing all token transfers in the event of a large
 * bug.
 */
contract ControlledERC20Pausable is ERC20, ControlledPausable {
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

    function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
        return super.approve(spender, value);
    }

    function increaseAllowance(address spender, uint256 addedValue) public whenNotPaused returns (bool) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public whenNotPaused returns (bool) {
        return super.decreaseAllowance(spender, subtractedValue);
    }
}

// File: contracts\ControlledWhitelistAdminRole.sol

pragma solidity ^0.5.0;



contract ControlledWhitelistAdminRole is Ownable {
    using Roles for Roles.Role;

    event WhitelistAdminAdded(address indexed account);
    event WhitelistAdminRemoved(address indexed account);

    Roles.Role private _whitelistAdmins;

    constructor () internal {
        _addWhitelistAdmin(_msgSender());
    }

    modifier onlyWhitelistAdmin() {
        require(isWhitelistAdmin(_msgSender()), "ControlledWhitelistAdminRole: caller does not have the WhitelistAdmin role");
        _;
    }

    function isWhitelistAdmin(address account) public view returns (bool) {
        return _whitelistAdmins.has(account);
    }

    // onlyWhitelistAdmin -> onlyOwner
    function addWhitelistAdmin(address account) public onlyOwner {
        _addWhitelistAdmin(account);
    }

    // Add require()
    function renounceWhitelistAdmin() public {
        require(!isOwner(), "ControlledWhitelistAdminRole: owner cannot renounce WhitelistAdminRole");
        _removeWhitelistAdmin(_msgSender());
    }

    // new function
    function revokeWhitelistAdmin(address account) public onlyOwner {
        require(account != owner(), "ControlledWhitelistAdminRole: owner cannot renounce WhitelistAdminRole");
        _removeWhitelistAdmin(account);
    }

    function _addWhitelistAdmin(address account) internal {
        _whitelistAdmins.add(account);
        emit WhitelistAdminAdded(account);
    }

    function _removeWhitelistAdmin(address account) internal {
        _whitelistAdmins.remove(account);
        emit WhitelistAdminRemoved(account);
    }
}

// File: contracts\IndividualLockableToken.sol

pragma solidity ^0.5.0;



contract IndividualLockableToken is ControlledERC20Pausable, ControlledWhitelistAdminRole{
  using SafeMath for uint256;

  event LockTimeSetted(address indexed holder, uint256 old_release_time, uint256 new_release_time);
  event Locked(address indexed holder, uint256 locked_balance_change, uint256 total_locked_balance, uint256 release_time);

  struct lockState {
    uint256 locked_balance;
    uint256 release_time;
  }

  // default lock period
  uint256 public lock_period = 4 weeks;

  mapping(address => lockState) internal userLock;

  // Specify the time that a particular person's lock will be released
  function setReleaseTime(address _holder, uint256 _release_time)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    require(_release_time >= block.timestamp);

    uint256 old_release_time = userLock[_holder].release_time;

    userLock[_holder].release_time = _release_time;
    emit LockTimeSetted(_holder, old_release_time, userLock[_holder].release_time);
    return true;
  }

  // Returns the point at which token holder's lock is released
  function getReleaseTime(address _holder)
    public
    view
    returns (uint256)
  {
    require(_holder != address(0));

    return userLock[_holder].release_time;
  }

  // Unlock a specific person. Free trading even with a lock balance
  function clearReleaseTime(address _holder)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    require(userLock[_holder].release_time > 0);

    uint256 old_release_time = userLock[_holder].release_time;

    userLock[_holder].release_time = 0;
    emit LockTimeSetted(_holder, old_release_time, userLock[_holder].release_time);
    return true;
  }

  // Increase the lock balance of a specific person.
  // If you only want to increase the balance, the release_time must be specified in advance.
  function increaseLockBalance(address _holder, uint256 _value)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    require(_value > 0);
    require(getFreeBalance(_holder) >= _value);

    if (userLock[_holder].release_time <= block.timestamp) {
        userLock[_holder].release_time  = block.timestamp + lock_period;
    }

    userLock[_holder].locked_balance = (userLock[_holder].locked_balance).add(_value);
    emit Locked(_holder, _value, userLock[_holder].locked_balance, userLock[_holder].release_time);
    return true;
  }

  // Increase the lock balance and release time of a specific person.
  // If you only want to increase the balance, See increaseLockBalance function.
  function increaseLockBalanceWithReleaseTime(address _holder, uint256 _value, uint256 _release_time)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    require(_value > 0);
    require(getFreeBalance(_holder) >= _value);
    require(_release_time >= block.timestamp);

    uint256 old_release_time = userLock[_holder].release_time;

    userLock[_holder].release_time = _release_time;
    emit LockTimeSetted(_holder, old_release_time, userLock[_holder].release_time);

    userLock[_holder].locked_balance = (userLock[_holder].locked_balance).add(_value);
    emit Locked(_holder, _value, userLock[_holder].locked_balance, userLock[_holder].release_time);
    return true;
  }

  // Decrease the lock balance of a specific person.
  function decreaseLockBalance(address _holder, uint256 _value)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    require(_value > 0);
    require(userLock[_holder].locked_balance >= _value);

    userLock[_holder].locked_balance = (userLock[_holder].locked_balance).sub(_value);
    emit Locked(_holder, _value, userLock[_holder].locked_balance, userLock[_holder].release_time);
    return true;
  }

  // Clear the lock.
  function clearLock(address _holder)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    
    userLock[_holder].locked_balance = 0;
    userLock[_holder].release_time = 0;
    emit Locked(_holder, 0, userLock[_holder].locked_balance, userLock[_holder].release_time);
    return true;
  }

  // Check the amount of the lock
  function getLockedBalance(address _holder)
    public
    view
    returns (uint256)
  {
    if(block.timestamp >= userLock[_holder].release_time) return uint256(0);
    return userLock[_holder].locked_balance;
  }

  // Check your remaining balance
  function getFreeBalance(address _holder)
    public
    view
    returns (uint256)
  {
    if(block.timestamp    >= userLock[_holder].release_time  ) return balanceOf(_holder);
    if(balanceOf(_holder) <= userLock[_holder].locked_balance) return uint256(0);
    return balanceOf(_holder).sub(userLock[_holder].locked_balance);
  }

  // transfer overrride
  function transfer(
    address _to,
    uint256 _value
  )
    public
    returns (bool)
  {
    require(getFreeBalance(_msgSender()) >= _value);
    return super.transfer(_to, _value);
  }

  // transferFrom overrride
  function transferFrom(
    address _from,
    address _to,
    uint256 _value
  )
    public
    returns (bool)
  {
    require(getFreeBalance(_from) >= _value);
    return super.transferFrom(_from, _to, _value);
  }

  // approve overrride
  function approve(
    address _spender,
    uint256 _value
  )
    public
    returns (bool)
  {
    require(getFreeBalance(_msgSender()) >= _value);
    return super.approve(_spender, _value);
  }

  // increaseAllowance overrride
  function increaseAllowance(
    address _spender,
    uint _addedValue
  )
    public
    returns (bool success)
  {
    require(getFreeBalance(_msgSender()) >= allowance(_msgSender(), _spender).add(_addedValue));
    return super.increaseAllowance(_spender, _addedValue);
  }

  // decreaseAllowance overrride
  function decreaseAllowance(
    address _spender,
    uint _subtractedValue
  )
    public
    returns (bool success)
  {
    uint256 oldValue = allowance(_msgSender(), _spender);

    if (_subtractedValue < oldValue) {
      require(getFreeBalance(_msgSender()) >= oldValue.sub(_subtractedValue));
    }
    return super.decreaseAllowance(_spender, _subtractedValue);
  }
}

// File: contracts\EcoCarbonCoin.sol

pragma solidity ^0.5.0;


contract EcoCarbonCoin is IndividualLockableToken {
	using SafeMath for uint256;

	string public constant name     = "Eco Carbon Coin";
	string public constant symbol   = "ECC";
	uint8  public constant decimals = 18;

	uint256 public constant INITIAL_SUPPLY  = 1000000000 * (10 ** uint256(decimals));
	
	constructor()
		public
	{
		_mint(_msgSender(), INITIAL_SUPPLY);
	}

	function renounceOwnership()
		public
		onlyOwner
	{
		revert("The owner cannot release ownership.");
	}
	
	function transferOwnership(address newOwner)
		public
		onlyOwner
	{
		require(newOwner != address(0));
		require(newOwner != owner());

		addPauser(newOwner);
		addWhitelistAdmin(newOwner);
		super.transferOwnership(newOwner);
		renouncePauser();
		renounceWhitelistAdmin();
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"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":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"old_release_time","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"new_release_time","type":"uint256"}],"name":"LockTimeSetted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"locked_balance_change","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"total_locked_balance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"release_time","type":"uint256"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminRemoved","type":"event"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"clearLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"clearReleaseTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"decreaseLockBalance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"getFreeBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"getLockedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"getReleaseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"increaseLockBalance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint256","name":"_release_time","type":"uint256"}],"name":"increaseLockBalanceWithReleaseTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelistAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lock_period","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"revokePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"revokeWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"},{"internalType":"uint256","name":"_release_time","type":"uint256"}],"name":"setReleaseTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040526224ea006007553480156200001857600080fd5b5060006200002e6001600160e01b036200010b16565b600380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000a2620000936001600160e01b036200010b16565b6001600160e01b036200010f16565b6005805460ff19169055620000d2620000c36001600160e01b036200010b16565b6001600160e01b036200016116565b62000105620000e96001600160e01b036200010b16565b6b033b2e3c9fd0803ce80000006001600160e01b03620001b316565b6200040c565b3390565b6200012a816004620002b460201b62001c0f1790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6200017c816006620002b460201b62001c0f1790919060201c565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b6001600160a01b0382166200020f576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200022b816002546200034160201b620016981790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200025e9183906200169862000341821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b620002c982826001600160e01b03620003a316565b156200031c576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000828201838110156200039c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006001600160a01b038216620003ec5760405162461bcd60e51b8152600401808060200182810382526022815260200180620026f96022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6122dd806200041c6000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c80637fe76df0116101305780639e20749a116100b8578063c40868931161007c578063c408689314610675578063dd62ed3e1461069b578063e6108fc9146106c9578063f2fde38b146106f5578063f83e9a201461071b57610227565b80639e20749a1461059f578063a31052e8146105d1578063a457c2d7146105f7578063a9059cbb14610623578063bb5f747b1461064f57610227565b80638d88a2ff116100ff5780638d88a2ff1461051f5780638da5cb5b146105455780638dc73521146105695780638f32d59b1461058f57806395d89b411461059757610227565b80637fe76df0146104a557806382dc1ec4146104cb5780638456cb59146104f15780638870985b146104f957610227565b806346fbf68e116101b35780636c4e5c86116101825780636c4e5c861461041d5780636ef8d66d1461044957806370a0823114610451578063715018a6146104775780637362d9c81461047f57610227565b806346fbf68e146103bb578063476fe919146103e15780634c5a628c1461040d5780635c975abb1461041557610227565b806323b872dd116101fa57806323b872dd146103295780632ff2e9dc1461035f578063313ce5671461036757806339509351146103855780633f4ba83a146103b157610227565b806306fdde031461022c578063095ea7b3146102a95780630cb7eb4c146102e957806318160ddd14610321575b600080fd5b610234610723565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026e578181015183820152602001610256565b50505050905090810190601f16801561029b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d5600480360360408110156102bf57600080fd5b506001600160a01b03813516906020013561074e565b604080519115158252519081900360200190f35b61030f600480360360208110156102ff57600080fd5b50356001600160a01b031661077d565b60408051918252519081900360200190f35b61030f6107b5565b6102d56004803603606081101561033f57600080fd5b506001600160a01b038135811691602081013590911690604001356107bb565b61030f6107e5565b61036f6107f5565b6040805160ff9092168252519081900360200190f35b6102d56004803603604081101561039b57600080fd5b506001600160a01b0381351690602001356107fa565b6103b961083d565b005b6102d5600480360360208110156103d157600080fd5b50356001600160a01b0316610926565b6102d5600480360360408110156103f757600080fd5b506001600160a01b03813516906020013561093f565b6103b9610a13565b6102d5610a69565b6102d56004803603604081101561043357600080fd5b506001600160a01b038135169060200135610a72565b6103b9610b95565b61030f6004803603602081101561046757600080fd5b50356001600160a01b0316610be9565b6103b9610c04565b6103b96004803603602081101561049557600080fd5b50356001600160a01b0316610c82565b6103b9600480360360208110156104bb57600080fd5b50356001600160a01b0316610cd5565b6103b9600480360360208110156104e157600080fd5b50356001600160a01b0316610d7d565b6103b9610dcd565b61030f6004803603602081101561050f57600080fd5b50356001600160a01b0316610e94565b6103b96004803603602081101561053557600080fd5b50356001600160a01b0316610f27565b61054d610fcf565b604080516001600160a01b039092168252519081900360200190f35b6102d56004803603602081101561057f57600080fd5b50356001600160a01b0316610fde565b6102d56110a3565b6102346110c9565b6102d5600480360360608110156105b557600080fd5b506001600160a01b0381351690602081013590604001356110e8565b6102d5600480360360208110156105e757600080fd5b50356001600160a01b0316611267565b6102d56004803603604081101561060d57600080fd5b506001600160a01b03813516906020013561134f565b6102d56004803603604081101561063957600080fd5b506001600160a01b03813516906020013561139d565b6102d56004803603602081101561066557600080fd5b50356001600160a01b03166113c0565b61030f6004803603602081101561068b57600080fd5b50356001600160a01b03166113d3565b61030f600480360360408110156106b157600080fd5b506001600160a01b0381358116916020013516611419565b6102d5600480360360408110156106df57600080fd5b506001600160a01b038135169060200135611444565b6103b96004803603602081101561070b57600080fd5b50356001600160a01b0316611532565b61030f6115dd565b6040518060400160405280600f81526020016e22b1b79021b0b93137b71021b7b4b760891b81525081565b60008161076161075c6115e3565b610e94565b101561076c57600080fd5b61077683836115e7565b9392505050565b60006001600160a01b03821661079257600080fd5b506001600160a01b0381166000908152600860205260409020600101545b919050565b60025490565b6000816107c785610e94565b10156107d257600080fd5b6107dd84848461163f565b949350505050565b6b033b2e3c9fd0803ce800000081565b601281565b600061081d8261081161080b6115e3565b86611419565b9063ffffffff61169816565b61082861075c6115e3565b101561083357600080fd5b61077683836116f2565b61084d6108486115e3565b610926565b6108885760405162461bcd60e51b815260040180806020018281038252603a815260200180612065603a913960400191505060405180910390fd5b60055460ff166108d6576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6109096115e3565b604080516001600160a01b039092168252519081900360200190a1565b600061093960048363ffffffff61174a16565b92915050565b600061095161094c6115e3565b6113c0565b61098c5760405162461bcd60e51b815260040180806020018281038252604a81526020018061223a604a913960600191505060405180910390fd5b6001600160a01b03831661099f57600080fd5b428210156109ac57600080fd5b6001600160a01b038316600081815260086020908152604091829020600101805490869055825181815291820186905282519093927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe928290030190a25060019392505050565b610a1b6110a3565b15610a575760405162461bcd60e51b815260040180806020018281038252604681526020018061201f6046913960600191505060405180910390fd5b610a67610a626115e3565b6117b1565b565b60055460ff1690565b6000610a7f61094c6115e3565b610aba5760405162461bcd60e51b815260040180806020018281038252604a81526020018061223a604a913960600191505060405180910390fd5b6001600160a01b038316610acd57600080fd5b60008211610ada57600080fd5b6001600160a01b038316600090815260086020526040902054821115610aff57600080fd5b6001600160a01b038316600090815260086020526040902054610b28908363ffffffff6117f916565b6001600160a01b03841660008181526008602090815260409182902084815560010154825187815291820194909452808201939093525190917f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c11919081900360600190a250600192915050565b610b9d6110a3565b15610bd95760405162461bcd60e51b815260040180806020018281038252603681526020018061210d6036913960400191505060405180910390fd5b610a67610be46115e3565b61183b565b6001600160a01b031660009081526020819052604090205490565b610c0c6110a3565b610c4b576040805162461bcd60e51b815260206004820181905260248201526000805160206121af833981519152604482015290519081900360640190fd5b60405162461bcd60e51b81526004018080602001828103825260238152602001806121436023913960400191505060405180910390fd5b610c8a6110a3565b610cc9576040805162461bcd60e51b815260206004820181905260248201526000805160206121af833981519152604482015290519081900360640190fd5b610cd281611883565b50565b610cdd6110a3565b610d1c576040805162461bcd60e51b815260206004820181905260248201526000805160206121af833981519152604482015290519081900360640190fd5b610d24610fcf565b6001600160a01b0316816001600160a01b03161415610d745760405162461bcd60e51b815260040180806020018281038252603681526020018061210d6036913960400191505060405180910390fd5b610cd28161183b565b610d856110a3565b610dc4576040805162461bcd60e51b815260206004820181905260248201526000805160206121af833981519152604482015290519081900360640190fd5b610cd2816118cb565b610dd86108486115e3565b610e135760405162461bcd60e51b815260040180806020018281038252603a815260200180612065603a913960400191505060405180910390fd5b60055460ff1615610e5e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586109096115e3565b6001600160a01b0381166000908152600860205260408120600101544210610ec657610ebf82610be9565b90506107b0565b6001600160a01b038216600090815260086020526040902054610ee883610be9565b11610ef5575060006107b0565b6001600160a01b03821660009081526008602052604090205461093990610f1b84610be9565b9063ffffffff6117f916565b610f2f6110a3565b610f6e576040805162461bcd60e51b815260206004820181905260248201526000805160206121af833981519152604482015290519081900360640190fd5b610f76610fcf565b6001600160a01b0316816001600160a01b03161415610fc65760405162461bcd60e51b815260040180806020018281038252604681526020018061201f6046913960600191505060405180910390fd5b610cd2816117b1565b6003546001600160a01b031690565b6000610feb61094c6115e3565b6110265760405162461bcd60e51b815260040180806020018281038252604a81526020018061223a604a913960600191505060405180910390fd5b6001600160a01b03821661103957600080fd5b6001600160a01b038216600081815260086020908152604080832083815560010183905580518381529182018390528181019290925290517f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c119181900360600190a2506001919050565b6003546000906001600160a01b03166110ba6115e3565b6001600160a01b031614905090565b6040518060400160405280600381526020016245434360e81b81525081565b60006110f561094c6115e3565b6111305760405162461bcd60e51b815260040180806020018281038252604a81526020018061223a604a913960600191505060405180910390fd5b6001600160a01b03841661114357600080fd5b6000831161115057600080fd5b8261115a85610e94565b101561116557600080fd5b4282101561117257600080fd5b6001600160a01b038416600081815260086020908152604091829020600101805490869055825181815291820186905282519093927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe928290030190a26001600160a01b0385166000908152600860205260409020546111f8908563ffffffff61169816565b6001600160a01b03861660008181526008602090815260409182902084815560010154825189815291820194909452808201939093525190917f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c11919081900360600190a2506001949350505050565b600061127461094c6115e3565b6112af5760405162461bcd60e51b815260040180806020018281038252604a81526020018061223a604a913960600191505060405180910390fd5b6001600160a01b0382166112c257600080fd5b6001600160a01b0382166000908152600860205260409020600101546112e757600080fd5b6001600160a01b038216600081815260086020908152604080832060010180549084905581518181529283019390935280519293927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe9281900390910190a250600192915050565b60008061136361135d6115e3565b85611419565b9050808310156113935761137d818463ffffffff6117f916565b61138861075c6115e3565b101561139357600080fd5b6107dd8484611913565b6000816113ab61075c6115e3565b10156113b657600080fd5b610776838361196b565b600061093960068363ffffffff61174a16565b6001600160a01b03811660009081526008602052604081206001015442106113fd575060006107b0565b506001600160a01b031660009081526008602052604090205490565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600061145161094c6115e3565b61148c5760405162461bcd60e51b815260040180806020018281038252604a81526020018061223a604a913960600191505060405180910390fd5b6001600160a01b03831661149f57600080fd5b600082116114ac57600080fd5b816114b684610e94565b10156114c157600080fd5b6001600160a01b0383166000908152600860205260409020600101544210611509576007546001600160a01b0384166000908152600860205260409020429091016001909101555b6001600160a01b038316600090815260086020526040902054610b28908363ffffffff61169816565b61153a6110a3565b611579576040805162461bcd60e51b815260206004820181905260248201526000805160206121af833981519152604482015290519081900360640190fd5b6001600160a01b03811661158c57600080fd5b611594610fcf565b6001600160a01b0316816001600160a01b031614156115b257600080fd5b6115bb81610d7d565b6115c481610c82565b6115cd816119c3565b6115d5610b95565b610cd2610a13565b60075481565b3390565b60055460009060ff1615611635576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107768383611a13565b60055460009060ff161561168d576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107dd848484611a30565b600082820183811015610776576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60055460009060ff1615611740576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107768383611abd565b60006001600160a01b0382166117915760405162461bcd60e51b81526004018080602001828103825260228152602001806121cf6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6117c260068263ffffffff611b1116565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b600061077683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b78565b61184c60048263ffffffff611b1116565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61189460068263ffffffff611c0f16565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b6118dc60048263ffffffff611c0f16565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b60055460009060ff1615611961576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107768383611c90565b60055460009060ff16156119b9576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107768383611cfe565b6119cb6110a3565b611a0a576040805162461bcd60e51b815260206004820181905260248201526000805160206121af833981519152604482015290519081900360640190fd5b610cd281611d12565b6000611a27611a206115e3565b8484611db3565b50600192915050565b6000611a3d848484611e9f565b611ab384611a496115e3565b611aae85604051806060016040528060288152602001612187602891396001600160a01b038a16600090815260016020526040812090611a876115e3565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611b7816565b611db3565b5060019392505050565b6000611a27611aca6115e3565b84611aae8560016000611adb6115e3565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61169816565b611b1b828261174a565b611b565760405162461bcd60e51b81526004018080602001828103825260218152602001806121666021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60008184841115611c075760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611bcc578181015183820152602001611bb4565b50505050905090810190601f168015611bf95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b611c19828261174a565b15611c6b576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000611a27611c9d6115e3565b84611aae856040518060600160405280602581526020016122846025913960016000611cc76115e3565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611b7816565b6000611a27611d0b6115e3565b8484611e9f565b6001600160a01b038116611d575760405162461bcd60e51b815260040180806020018281038252602681526020018061209f6026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316611df85760405162461bcd60e51b81526004018080602001828103825260248152602001806122166024913960400191505060405180910390fd5b6001600160a01b038216611e3d5760405162461bcd60e51b81526004018080602001828103825260228152602001806120c56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ee45760405162461bcd60e51b81526004018080602001828103825260258152602001806121f16025913960400191505060405180910390fd5b6001600160a01b038216611f295760405162461bcd60e51b8152600401808060200182810382526023815260200180611ffc6023913960400191505060405180910390fd5b611f6c816040518060600160405280602681526020016120e7602691396001600160a01b038616600090815260208190526040902054919063ffffffff611b7816565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611fa1908263ffffffff61169816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373436f6e74726f6c6c656457686974656c69737441646d696e526f6c653a206f776e65722063616e6e6f742072656e6f756e63652057686974656c69737441646d696e526f6c65436f6e74726f6c6c6564506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365436f6e74726f6c6c6564506175736572526f6c653a206f776e65722063616e6e6f742072656e6f756e636520506175736572526f6c65546865206f776e65722063616e6e6f742072656c65617365206f776e6572736869702e526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373436f6e74726f6c6c656457686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820f5f413fd1efde9717e10bccfbceb445c7e7cadd70e79fe2090dd9c41598cf22664736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102275760003560e01c80637fe76df0116101305780639e20749a116100b8578063c40868931161007c578063c408689314610675578063dd62ed3e1461069b578063e6108fc9146106c9578063f2fde38b146106f5578063f83e9a201461071b57610227565b80639e20749a1461059f578063a31052e8146105d1578063a457c2d7146105f7578063a9059cbb14610623578063bb5f747b1461064f57610227565b80638d88a2ff116100ff5780638d88a2ff1461051f5780638da5cb5b146105455780638dc73521146105695780638f32d59b1461058f57806395d89b411461059757610227565b80637fe76df0146104a557806382dc1ec4146104cb5780638456cb59146104f15780638870985b146104f957610227565b806346fbf68e116101b35780636c4e5c86116101825780636c4e5c861461041d5780636ef8d66d1461044957806370a0823114610451578063715018a6146104775780637362d9c81461047f57610227565b806346fbf68e146103bb578063476fe919146103e15780634c5a628c1461040d5780635c975abb1461041557610227565b806323b872dd116101fa57806323b872dd146103295780632ff2e9dc1461035f578063313ce5671461036757806339509351146103855780633f4ba83a146103b157610227565b806306fdde031461022c578063095ea7b3146102a95780630cb7eb4c146102e957806318160ddd14610321575b600080fd5b610234610723565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026e578181015183820152602001610256565b50505050905090810190601f16801561029b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d5600480360360408110156102bf57600080fd5b506001600160a01b03813516906020013561074e565b604080519115158252519081900360200190f35b61030f600480360360208110156102ff57600080fd5b50356001600160a01b031661077d565b60408051918252519081900360200190f35b61030f6107b5565b6102d56004803603606081101561033f57600080fd5b506001600160a01b038135811691602081013590911690604001356107bb565b61030f6107e5565b61036f6107f5565b6040805160ff9092168252519081900360200190f35b6102d56004803603604081101561039b57600080fd5b506001600160a01b0381351690602001356107fa565b6103b961083d565b005b6102d5600480360360208110156103d157600080fd5b50356001600160a01b0316610926565b6102d5600480360360408110156103f757600080fd5b506001600160a01b03813516906020013561093f565b6103b9610a13565b6102d5610a69565b6102d56004803603604081101561043357600080fd5b506001600160a01b038135169060200135610a72565b6103b9610b95565b61030f6004803603602081101561046757600080fd5b50356001600160a01b0316610be9565b6103b9610c04565b6103b96004803603602081101561049557600080fd5b50356001600160a01b0316610c82565b6103b9600480360360208110156104bb57600080fd5b50356001600160a01b0316610cd5565b6103b9600480360360208110156104e157600080fd5b50356001600160a01b0316610d7d565b6103b9610dcd565b61030f6004803603602081101561050f57600080fd5b50356001600160a01b0316610e94565b6103b96004803603602081101561053557600080fd5b50356001600160a01b0316610f27565b61054d610fcf565b604080516001600160a01b039092168252519081900360200190f35b6102d56004803603602081101561057f57600080fd5b50356001600160a01b0316610fde565b6102d56110a3565b6102346110c9565b6102d5600480360360608110156105b557600080fd5b506001600160a01b0381351690602081013590604001356110e8565b6102d5600480360360208110156105e757600080fd5b50356001600160a01b0316611267565b6102d56004803603604081101561060d57600080fd5b506001600160a01b03813516906020013561134f565b6102d56004803603604081101561063957600080fd5b506001600160a01b03813516906020013561139d565b6102d56004803603602081101561066557600080fd5b50356001600160a01b03166113c0565b61030f6004803603602081101561068b57600080fd5b50356001600160a01b03166113d3565b61030f600480360360408110156106b157600080fd5b506001600160a01b0381358116916020013516611419565b6102d5600480360360408110156106df57600080fd5b506001600160a01b038135169060200135611444565b6103b96004803603602081101561070b57600080fd5b50356001600160a01b0316611532565b61030f6115dd565b6040518060400160405280600f81526020016e22b1b79021b0b93137b71021b7b4b760891b81525081565b60008161076161075c6115e3565b610e94565b101561076c57600080fd5b61077683836115e7565b9392505050565b60006001600160a01b03821661079257600080fd5b506001600160a01b0381166000908152600860205260409020600101545b919050565b60025490565b6000816107c785610e94565b10156107d257600080fd5b6107dd84848461163f565b949350505050565b6b033b2e3c9fd0803ce800000081565b601281565b600061081d8261081161080b6115e3565b86611419565b9063ffffffff61169816565b61082861075c6115e3565b101561083357600080fd5b61077683836116f2565b61084d6108486115e3565b610926565b6108885760405162461bcd60e51b815260040180806020018281038252603a815260200180612065603a913960400191505060405180910390fd5b60055460ff166108d6576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6109096115e3565b604080516001600160a01b039092168252519081900360200190a1565b600061093960048363ffffffff61174a16565b92915050565b600061095161094c6115e3565b6113c0565b61098c5760405162461bcd60e51b815260040180806020018281038252604a81526020018061223a604a913960600191505060405180910390fd5b6001600160a01b03831661099f57600080fd5b428210156109ac57600080fd5b6001600160a01b038316600081815260086020908152604091829020600101805490869055825181815291820186905282519093927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe928290030190a25060019392505050565b610a1b6110a3565b15610a575760405162461bcd60e51b815260040180806020018281038252604681526020018061201f6046913960600191505060405180910390fd5b610a67610a626115e3565b6117b1565b565b60055460ff1690565b6000610a7f61094c6115e3565b610aba5760405162461bcd60e51b815260040180806020018281038252604a81526020018061223a604a913960600191505060405180910390fd5b6001600160a01b038316610acd57600080fd5b60008211610ada57600080fd5b6001600160a01b038316600090815260086020526040902054821115610aff57600080fd5b6001600160a01b038316600090815260086020526040902054610b28908363ffffffff6117f916565b6001600160a01b03841660008181526008602090815260409182902084815560010154825187815291820194909452808201939093525190917f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c11919081900360600190a250600192915050565b610b9d6110a3565b15610bd95760405162461bcd60e51b815260040180806020018281038252603681526020018061210d6036913960400191505060405180910390fd5b610a67610be46115e3565b61183b565b6001600160a01b031660009081526020819052604090205490565b610c0c6110a3565b610c4b576040805162461bcd60e51b815260206004820181905260248201526000805160206121af833981519152604482015290519081900360640190fd5b60405162461bcd60e51b81526004018080602001828103825260238152602001806121436023913960400191505060405180910390fd5b610c8a6110a3565b610cc9576040805162461bcd60e51b815260206004820181905260248201526000805160206121af833981519152604482015290519081900360640190fd5b610cd281611883565b50565b610cdd6110a3565b610d1c576040805162461bcd60e51b815260206004820181905260248201526000805160206121af833981519152604482015290519081900360640190fd5b610d24610fcf565b6001600160a01b0316816001600160a01b03161415610d745760405162461bcd60e51b815260040180806020018281038252603681526020018061210d6036913960400191505060405180910390fd5b610cd28161183b565b610d856110a3565b610dc4576040805162461bcd60e51b815260206004820181905260248201526000805160206121af833981519152604482015290519081900360640190fd5b610cd2816118cb565b610dd86108486115e3565b610e135760405162461bcd60e51b815260040180806020018281038252603a815260200180612065603a913960400191505060405180910390fd5b60055460ff1615610e5e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586109096115e3565b6001600160a01b0381166000908152600860205260408120600101544210610ec657610ebf82610be9565b90506107b0565b6001600160a01b038216600090815260086020526040902054610ee883610be9565b11610ef5575060006107b0565b6001600160a01b03821660009081526008602052604090205461093990610f1b84610be9565b9063ffffffff6117f916565b610f2f6110a3565b610f6e576040805162461bcd60e51b815260206004820181905260248201526000805160206121af833981519152604482015290519081900360640190fd5b610f76610fcf565b6001600160a01b0316816001600160a01b03161415610fc65760405162461bcd60e51b815260040180806020018281038252604681526020018061201f6046913960600191505060405180910390fd5b610cd2816117b1565b6003546001600160a01b031690565b6000610feb61094c6115e3565b6110265760405162461bcd60e51b815260040180806020018281038252604a81526020018061223a604a913960600191505060405180910390fd5b6001600160a01b03821661103957600080fd5b6001600160a01b038216600081815260086020908152604080832083815560010183905580518381529182018390528181019290925290517f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c119181900360600190a2506001919050565b6003546000906001600160a01b03166110ba6115e3565b6001600160a01b031614905090565b6040518060400160405280600381526020016245434360e81b81525081565b60006110f561094c6115e3565b6111305760405162461bcd60e51b815260040180806020018281038252604a81526020018061223a604a913960600191505060405180910390fd5b6001600160a01b03841661114357600080fd5b6000831161115057600080fd5b8261115a85610e94565b101561116557600080fd5b4282101561117257600080fd5b6001600160a01b038416600081815260086020908152604091829020600101805490869055825181815291820186905282519093927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe928290030190a26001600160a01b0385166000908152600860205260409020546111f8908563ffffffff61169816565b6001600160a01b03861660008181526008602090815260409182902084815560010154825189815291820194909452808201939093525190917f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c11919081900360600190a2506001949350505050565b600061127461094c6115e3565b6112af5760405162461bcd60e51b815260040180806020018281038252604a81526020018061223a604a913960600191505060405180910390fd5b6001600160a01b0382166112c257600080fd5b6001600160a01b0382166000908152600860205260409020600101546112e757600080fd5b6001600160a01b038216600081815260086020908152604080832060010180549084905581518181529283019390935280519293927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe9281900390910190a250600192915050565b60008061136361135d6115e3565b85611419565b9050808310156113935761137d818463ffffffff6117f916565b61138861075c6115e3565b101561139357600080fd5b6107dd8484611913565b6000816113ab61075c6115e3565b10156113b657600080fd5b610776838361196b565b600061093960068363ffffffff61174a16565b6001600160a01b03811660009081526008602052604081206001015442106113fd575060006107b0565b506001600160a01b031660009081526008602052604090205490565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600061145161094c6115e3565b61148c5760405162461bcd60e51b815260040180806020018281038252604a81526020018061223a604a913960600191505060405180910390fd5b6001600160a01b03831661149f57600080fd5b600082116114ac57600080fd5b816114b684610e94565b10156114c157600080fd5b6001600160a01b0383166000908152600860205260409020600101544210611509576007546001600160a01b0384166000908152600860205260409020429091016001909101555b6001600160a01b038316600090815260086020526040902054610b28908363ffffffff61169816565b61153a6110a3565b611579576040805162461bcd60e51b815260206004820181905260248201526000805160206121af833981519152604482015290519081900360640190fd5b6001600160a01b03811661158c57600080fd5b611594610fcf565b6001600160a01b0316816001600160a01b031614156115b257600080fd5b6115bb81610d7d565b6115c481610c82565b6115cd816119c3565b6115d5610b95565b610cd2610a13565b60075481565b3390565b60055460009060ff1615611635576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107768383611a13565b60055460009060ff161561168d576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107dd848484611a30565b600082820183811015610776576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60055460009060ff1615611740576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107768383611abd565b60006001600160a01b0382166117915760405162461bcd60e51b81526004018080602001828103825260228152602001806121cf6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6117c260068263ffffffff611b1116565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b600061077683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b78565b61184c60048263ffffffff611b1116565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61189460068263ffffffff611c0f16565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b6118dc60048263ffffffff611c0f16565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b60055460009060ff1615611961576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107768383611c90565b60055460009060ff16156119b9576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107768383611cfe565b6119cb6110a3565b611a0a576040805162461bcd60e51b815260206004820181905260248201526000805160206121af833981519152604482015290519081900360640190fd5b610cd281611d12565b6000611a27611a206115e3565b8484611db3565b50600192915050565b6000611a3d848484611e9f565b611ab384611a496115e3565b611aae85604051806060016040528060288152602001612187602891396001600160a01b038a16600090815260016020526040812090611a876115e3565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611b7816565b611db3565b5060019392505050565b6000611a27611aca6115e3565b84611aae8560016000611adb6115e3565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61169816565b611b1b828261174a565b611b565760405162461bcd60e51b81526004018080602001828103825260218152602001806121666021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60008184841115611c075760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611bcc578181015183820152602001611bb4565b50505050905090810190601f168015611bf95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b611c19828261174a565b15611c6b576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000611a27611c9d6115e3565b84611aae856040518060600160405280602581526020016122846025913960016000611cc76115e3565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611b7816565b6000611a27611d0b6115e3565b8484611e9f565b6001600160a01b038116611d575760405162461bcd60e51b815260040180806020018281038252602681526020018061209f6026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316611df85760405162461bcd60e51b81526004018080602001828103825260248152602001806122166024913960400191505060405180910390fd5b6001600160a01b038216611e3d5760405162461bcd60e51b81526004018080602001828103825260228152602001806120c56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ee45760405162461bcd60e51b81526004018080602001828103825260258152602001806121f16025913960400191505060405180910390fd5b6001600160a01b038216611f295760405162461bcd60e51b8152600401808060200182810382526023815260200180611ffc6023913960400191505060405180910390fd5b611f6c816040518060600160405280602681526020016120e7602691396001600160a01b038616600090815260208190526040902054919063ffffffff611b7816565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611fa1908263ffffffff61169816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373436f6e74726f6c6c656457686974656c69737441646d696e526f6c653a206f776e65722063616e6e6f742072656e6f756e63652057686974656c69737441646d696e526f6c65436f6e74726f6c6c6564506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365436f6e74726f6c6c6564506175736572526f6c653a206f776e65722063616e6e6f742072656e6f756e636520506175736572526f6c65546865206f776e65722063616e6e6f742072656c65617365206f776e6572736869702e526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373436f6e74726f6c6c656457686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820f5f413fd1efde9717e10bccfbceb445c7e7cadd70e79fe2090dd9c41598cf22664736f6c63430005110032

Deployed Bytecode Sourcemap

34578:797:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34578:797:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34664:51;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;34664:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33546:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;33546:206:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29189:178;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29189:178:0;-1:-1:-1;;;;;29189:178:0;;:::i;:::-;;;;;;;;;;;;;;;;11196:91;;;:::i;33290:226::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;33290:226:0;;;;;;;;;;;;;;;;;:::i;34804:80::-;;;:::i;34762:36::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33792:285;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;33792:285:0;;;;;;;;:::i;24912:120::-;;;:::i;:::-;;22033:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22033:109:0;-1:-1:-1;;;;;22033:109:0;;:::i;28680:438::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28680:438:0;;;;;;;;:::i;27189:199::-;;;:::i;24119:78::-;;;:::i;31557:457::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;31557:457:0;;;;;;;;:::i;22303:167::-;;;:::i;11350:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11350:110:0;-1:-1:-1;;;;;11350:110:0;;:::i;34967:109::-;;;:::i;27052:107::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27052:107:0;-1:-1:-1;;;;;27052:107:0;;:::i;22499:193::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22499:193:0;-1:-1:-1;;;;;22499:193:0;;:::i;22182:91::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22182:91:0;-1:-1:-1;;;;;22182:91:0;;:::i;24699:118::-;;;:::i;32687:339::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32687:339:0;-1:-1:-1;;;;;32687:339:0;;:::i;27417:225::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27417:225:0;-1:-1:-1;;;;;27417:225:0;;:::i;19948:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;19948:79:0;;;;;;;;;;;;;;32042:342;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32042:342:0;-1:-1:-1;;;;;32042:342:0;;:::i;20314:94::-;;;:::i;34719:39::-;;;:::i;30757:740::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30757:740:0;;;;;;;;;;;;;:::i;29443:407::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29443:407:0;-1:-1:-1;;;;;29443:407:0;;:::i;34117:385::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;34117:385:0;;;;;;;;:::i;33057:198::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;33057:198:0;;;;;;;;:::i;26879:125::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26879:125:0;-1:-1:-1;;;;;26879:125:0;;:::i;32425:221::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32425:221:0;-1:-1:-1;;;;;32425:221:0;;:::i;11894:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11894:134:0;;;;;;;;;;:::i;30005:593::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30005:593:0;;;;;;;;:::i;35082:290::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35082:290:0;-1:-1:-1;;;;;35082:290:0;;:::i;28511:36::-;;;:::i;34664:51::-;;;;;;;;;;;;;;-1:-1:-1;;;34664:51:0;;;;:::o;33546:206::-;33638:4;33694:6;33662:28;33677:12;:10;:12::i;:::-;33662:14;:28::i;:::-;:38;;33654:47;;;;;;33715:31;33729:8;33739:6;33715:13;:31::i;:::-;33708:38;33546:206;-1:-1:-1;;;33546:206:0:o;29189:178::-;29266:7;-1:-1:-1;;;;;29293:21:0;;29285:30;;;;;;-1:-1:-1;;;;;;29331:17:0;;;;;;:8;:17;;;;;:30;;;29189:178;;;;:::o;11196:91::-;11267:12;;11196:91;:::o;33290:226::-;33402:4;33451:6;33426:21;33441:5;33426:14;:21::i;:::-;:31;;33418:40;;;;;;33472:38;33491:5;33498:3;33503:6;33472:18;:38::i;:::-;33465:45;33290:226;-1:-1:-1;;;;33290:226:0:o;34804:80::-;34846:38;34804:80;:::o;34762:36::-;34796:2;34762:36;:::o;33792:285::-;33896:12;33960:50;33998:11;33960:33;33970:12;:10;:12::i;:::-;33984:8;33960:9;:33::i;:::-;:37;:50;:37;:50;:::i;:::-;33928:28;33943:12;:10;:12::i;33928:28::-;:82;;33920:91;;;;;;34025:46;34049:8;34059:11;34025:23;:46::i;24912:120::-;21920:22;21929:12;:10;:12::i;:::-;21920:8;:22::i;:::-;21912:93;;;;-1:-1:-1;;;21912:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24555:7;;;;24547:40;;;;;-1:-1:-1;;;24547:40:0;;;;;;;;;;;;-1:-1:-1;;;24547:40:0;;;;;;;;;;;;;;;24971:7;:15;;-1:-1:-1;;24971:15:0;;;25002:22;25011:12;:10;:12::i;:::-;25002:22;;;-1:-1:-1;;;;;25002:22:0;;;;;;;;;;;;;;24912:120::o;22033:109::-;22089:4;22113:21;:8;22126:7;22113:21;:12;:21;:::i;:::-;22106:28;22033:109;-1:-1:-1;;22033:109:0:o;28680:438::-;28794:4;26742:30;26759:12;:10;:12::i;:::-;26742:16;:30::i;:::-;26734:117;;;;-1:-1:-1;;;26734:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28818:21:0;;28810:30;;;;;;28872:15;28855:13;:32;;28847:41;;;;;;-1:-1:-1;;;;;28924:17:0;;28897:24;28924:17;;;:8;:17;;;;;;;;;:30;;;;28963:46;;;;29021:73;;;;;;;;;;;;;28924:30;;:17;29021:73;;;;;;;;-1:-1:-1;29108:4:0;;28680:438;-1:-1:-1;;;28680:438:0:o;27189:199::-;27250:9;:7;:9::i;:::-;27249:10;27241:93;;;;-1:-1:-1;;;27241:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27345:35;27367:12;:10;:12::i;:::-;27345:21;:35::i;:::-;27189:199::o;24119:78::-;24182:7;;;;24119:78;:::o;31557:457::-;31669:4;26742:30;26759:12;:10;:12::i;26742:30::-;26734:117;;;;-1:-1:-1;;;26734:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31693:21:0;;31685:30;;;;;;31739:1;31730:6;:10;31722:19;;;;;;-1:-1:-1;;;;;31756:17:0;;;;;;:8;:17;;;;;:32;:42;-1:-1:-1;31756:42:0;31748:51;;;;;;-1:-1:-1;;;;;31844:17:0;;;;;;:8;:17;;;;;:32;31843:46;;31882:6;31843:46;:38;:46;:::i;:::-;-1:-1:-1;;;;;31808:17:0;;;;;;:8;:17;;;;;;;;;:81;;;31959:30;;;31901:89;;;;;;;;;;;;;;;;;;;;31808:17;;31901:89;;;;;;;;;;-1:-1:-1;32004:4:0;31557:457;;;;:::o;22303:167::-;22356:9;:7;:9::i;:::-;22355:10;22347:77;;;;-1:-1:-1;;;22347:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22435:27;22449:12;:10;:12::i;:::-;22435:13;:27::i;11350:110::-;-1:-1:-1;;;;;11434:18:0;11407:7;11434:18;;;;;;;;;;;;11350:110::o;34967:109::-;20160:9;:7;:9::i;:::-;20152:54;;;;;-1:-1:-1;;;20152:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20152:54:0;;;;;;;;;;;;;;;35026:45;;-1:-1:-1;;;35026:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27052:107;20160:9;:7;:9::i;:::-;20152:54;;;;;-1:-1:-1;;;20152:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20152:54:0;;;;;;;;;;;;;;;27124:27;27143:7;27124:18;:27::i;:::-;27052:107;:::o;22499:193::-;20160:9;:7;:9::i;:::-;20152:54;;;;;-1:-1:-1;;;20152:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20152:54:0;;;;;;;;;;;;;;;22585:7;:5;:7::i;:::-;-1:-1:-1;;;;;22574:18:0;:7;-1:-1:-1;;;;;22574:18:0;;;22566:85;;;;-1:-1:-1;;;22566:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22662:22;22676:7;22662:13;:22::i;22182:91::-;20160:9;:7;:9::i;:::-;20152:54;;;;;-1:-1:-1;;;20152:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20152:54:0;;;;;;;;;;;;;;;22246:19;22257:7;22246:10;:19::i;24699:118::-;21920:22;21929:12;:10;:12::i;21920:22::-;21912:93;;;;-1:-1:-1;;;21912:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24356:7;;;;24355:8;24347:37;;;;;-1:-1:-1;;;24347:37:0;;;;;;;;;;;;-1:-1:-1;;;24347:37:0;;;;;;;;;;;;;;;24759:7;:14;;-1:-1:-1;;24759:14:0;24769:4;24759:14;;;24789:20;24796:12;:10;:12::i;32687:339::-;-1:-1:-1;;;;;32808:17:0;;32764:7;32808:17;;;:8;:17;;;;;:30;;;32786:15;:52;32783:84;;32849:18;32859:7;32849:9;:18::i;:::-;32842:25;;;;32783:84;-1:-1:-1;;;;;32899:17:0;;;;;;:8;:17;;;;;:32;32877:18;32908:7;32877:9;:18::i;:::-;:54;32874:76;;-1:-1:-1;32948:1:0;32933:17;;32874:76;-1:-1:-1;;;;;32987:17:0;;;;;;:8;:17;;;;;:32;32964:56;;:18;32996:7;32964:9;:18::i;:::-;:22;:56;:22;:56;:::i;27417:225::-;20160:9;:7;:9::i;:::-;20152:54;;;;;-1:-1:-1;;;20152:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20152:54:0;;;;;;;;;;;;;;;27511:7;:5;:7::i;:::-;-1:-1:-1;;;;;27500:18:0;:7;-1:-1:-1;;;;;27500:18:0;;;27492:101;;;;-1:-1:-1;;;27492:101:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27604:30;27626:7;27604:21;:30::i;19948:79::-;20013:6;;-1:-1:-1;;;;;20013:6:0;19948:79;:::o;32042:342::-;32128:4;26742:30;26759:12;:10;:12::i;26742:30::-;26734:117;;;;-1:-1:-1;;;26734:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32152:21:0;;32144:30;;;;;;-1:-1:-1;;;;;32187:17:0;;32222:1;32187:17;;;:8;:17;;;;;;;;:36;;;32230:30;;:34;;;32276:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32374:4:0;32042:342;;;:::o;20314:94::-;20394:6;;20354:4;;-1:-1:-1;;;;;20394:6:0;20378:12;:10;:12::i;:::-;-1:-1:-1;;;;;20378:22:0;;20371:29;;20314:94;:::o;34719:39::-;;;;;;;;;;;;;;-1:-1:-1;;;34719:39:0;;;;:::o;30757:740::-;30907:4;26742:30;26759:12;:10;:12::i;26742:30::-;26734:117;;;;-1:-1:-1;;;26734:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30931:21:0;;30923:30;;;;;;30977:1;30968:6;:10;30960:19;;;;;;31021:6;30994:23;31009:7;30994:14;:23::i;:::-;:33;;30986:42;;;;;;31060:15;31043:13;:32;;31035:41;;;;;;-1:-1:-1;;;;;31112:17:0;;31085:24;31112:17;;;:8;:17;;;;;;;;;:30;;;;31151:46;;;;31209:73;;;;;;;;;;;;;31112:30;;:17;31209:73;;;;;;;;-1:-1:-1;;;;;31327:17:0;;;;;;:8;:17;;;;;:32;31326:46;;31365:6;31326:46;:38;:46;:::i;:::-;-1:-1:-1;;;;;31291:17:0;;;;;;:8;:17;;;;;;;;;:81;;;31442:30;;;31384:89;;;;;;;;;;;;;;;;;;;;31291:17;;31384:89;;;;;;;;;;-1:-1:-1;31487:4:0;;30757:740;-1:-1:-1;;;;30757:740:0:o;29443:407::-;29536:4;26742:30;26759:12;:10;:12::i;26742:30::-;26734:117;;;;-1:-1:-1;;;26734:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29560:21:0;;29552:30;;;;;;-1:-1:-1;;;;;29597:17:0;;29630:1;29597:17;;;:8;:17;;;;;:30;;;29589:43;;;;;;-1:-1:-1;;;;;29668:17:0;;29641:24;29668:17;;;:8;:17;;;;;;;;:30;;;;29707:34;;;;29753:73;;;;;;;;;;;;;;29668:30;;:17;29753:73;;;;;;;;;;-1:-1:-1;29840:4:0;;29443:407;-1:-1:-1;;29443:407:0:o;34117:385::-;34226:12;34250:16;34269:33;34279:12;:10;:12::i;:::-;34293:8;34269:9;:33::i;:::-;34250:52;;34334:8;34315:16;:27;34311:121;;;34393:30;:8;34406:16;34393:30;:12;:30;:::i;:::-;34361:28;34376:12;:10;:12::i;34361:28::-;:62;;34353:71;;;;;;34445:51;34469:8;34479:16;34445:23;:51::i;33057:198::-;33145:4;33201:6;33169:28;33184:12;:10;:12::i;33169:28::-;:38;;33161:47;;;;;;33222:27;33237:3;33242:6;33222:14;:27::i;26879:125::-;26943:4;26967:29;:16;26988:7;26967:29;:20;:29;:::i;32425:221::-;-1:-1:-1;;;;;32545:17:0;;32504:7;32545:17;;;:8;:17;;;;;:30;;;32526:15;:49;32523:71;;-1:-1:-1;32592:1:0;32577:17;;32523:71;-1:-1:-1;;;;;;32608:17:0;;;;;:8;:17;;;;;:32;;32425:221::o;11894:134::-;-1:-1:-1;;;;;11993:18:0;;;11966:7;11993:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11894:134::o;30005:593::-;30117:4;26742:30;26759:12;:10;:12::i;26742:30::-;26734:117;;;;-1:-1:-1;;;26734:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30141:21:0;;30133:30;;;;;;30187:1;30178:6;:10;30170:19;;;;;;30231:6;30204:23;30219:7;30204:14;:23::i;:::-;:33;;30196:42;;;;;;-1:-1:-1;;;;;30251:17:0;;;;;;:8;:17;;;;;:30;;;30285:15;-1:-1:-1;30247:137:0;;30365:11;;-1:-1:-1;;;;;30313:17:0;;;;;;:8;:17;;;;;30347:15;:29;;;30313:30;;;;:63;30247:137;-1:-1:-1;;;;;30428:17:0;;;;;;:8;:17;;;;;:32;30427:46;;30466:6;30427:46;:38;:46;:::i;35082:290::-;20160:9;:7;:9::i;:::-;20152:54;;;;;-1:-1:-1;;;20152:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20152:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35165:22:0;;35157:31;;;;;;35213:7;:5;:7::i;:::-;-1:-1:-1;;;;;35201:19:0;:8;-1:-1:-1;;;;;35201:19:0;;;35193:28;;;;;;35228:19;35238:8;35228:9;:19::i;:::-;35252:27;35270:8;35252:17;:27::i;:::-;35284:33;35308:8;35284:23;:33::i;:::-;35322:16;:14;:16::i;:::-;35343:24;:22;:24::i;28511:36::-;;;;:::o;871:98::-;951:10;871:98;:::o;25758:140::-;24356:7;;25837:4;;24356:7;;24355:8;24347:37;;;;;-1:-1:-1;;;24347:37:0;;;;;;;;;;;;-1:-1:-1;;;24347:37:0;;;;;;;;;;;;;;;25861:29;25875:7;25884:5;25861:13;:29::i;25590:160::-;24356:7;;25683:4;;24356:7;;24355:8;24347:37;;;;;-1:-1:-1;;;24347:37:0;;;;;;;;;;;;-1:-1:-1;;;24347:37:0;;;;;;;;;;;;;;;25707:35;25726:4;25732:2;25736:5;25707:18;:35::i;5028:181::-;5086:7;5118:5;;;5142:6;;;;5134:46;;;;;-1:-1:-1;;;5134:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;25906:170;24356:7;;26000:4;;24356:7;;24355:8;24347:37;;;;;-1:-1:-1;;;24347:37:0;;;;;;;;;;;;-1:-1:-1;;;24347:37:0;;;;;;;;;;;;;;;26024:44;26048:7;26057:10;26024:23;:44::i;18782:203::-;18854:4;-1:-1:-1;;;;;18879:21:0;;18871:68;;;;-1:-1:-1;;;18871:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18957:20:0;:11;:20;;;;;;;;;;;;;;;18782:203::o;27804:154::-;27872:32;:16;27896:7;27872:32;:23;:32;:::i;:::-;27920:30;;-1:-1:-1;;;;;27920:30:0;;;;;;;;27804:154;:::o;5484:136::-;5542:7;5569:43;5573:1;5576;5569:43;;;;;;;;;;;;;;;;;:3;:43::i;22830:130::-;22890:24;:8;22906:7;22890:24;:15;:24;:::i;:::-;22930:22;;-1:-1:-1;;;;;22930:22:0;;;;;;;;22830:130;:::o;27650:146::-;27715:29;:16;27736:7;27715:29;:20;:29;:::i;:::-;27760:28;;-1:-1:-1;;;;;27760:28:0;;;;;;;;27650:146;:::o;22700:122::-;22757:21;:8;22770:7;22757:21;:12;:21;:::i;:::-;22794:20;;-1:-1:-1;;;;;22794:20:0;;;;;;;;22700:122;:::o;26084:180::-;24356:7;;26183:4;;24356:7;;24355:8;24347:37;;;;;-1:-1:-1;;;24347:37:0;;;;;;;;;;;;-1:-1:-1;;;24347:37:0;;;;;;;;;;;;;;;26207:49;26231:7;26240:15;26207:23;:49::i;25450:132::-;24356:7;;25525:4;;24356:7;;24355:8;24347:37;;;;;-1:-1:-1;;;24347:37:0;;;;;;;;;;;;-1:-1:-1;;;24347:37:0;;;;;;;;;;;;;;;25549:25;25564:2;25568:5;25549:14;:25::i;21054:109::-;20160:9;:7;:9::i;:::-;20152:54;;;;;-1:-1:-1;;;20152:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20152:54:0;;;;;;;;;;;;;;;21127:28;21146:8;21127:18;:28::i;12175:152::-;12241:4;12258:39;12267:12;:10;:12::i;:::-;12281:7;12290:6;12258:8;:39::i;:::-;-1:-1:-1;12315:4:0;12175:152;;;;:::o;12799:304::-;12888:4;12905:36;12915:6;12923:9;12934:6;12905:9;:36::i;:::-;12952:121;12961:6;12969:12;:10;:12::i;:::-;12983:89;13021:6;12983:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12983:19:0;;;;;;:11;:19;;;;;;13003:12;:10;:12::i;:::-;-1:-1:-1;;;;;12983:33:0;;;;;;;;;;;;-1:-1:-1;12983:33:0;;;:89;;:37;:89;:::i;:::-;12952:8;:121::i;:::-;-1:-1:-1;13091:4:0;12799:304;;;;;:::o;13512:210::-;13592:4;13609:83;13618:12;:10;:12::i;:::-;13632:7;13641:50;13680:10;13641:11;:25;13653:12;:10;:12::i;:::-;-1:-1:-1;;;;;13641:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13641:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;18504:183::-;18584:18;18588:4;18594:7;18584:3;:18::i;:::-;18576:64;;;;-1:-1:-1;;;18576:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18651:20:0;18674:5;18651:20;;;;;;;;;;;:28;;-1:-1:-1;;18651:28:0;;;18504:183::o;5957:192::-;6043:7;6079:12;6071:6;;;;6063:29;;;;-1:-1:-1;;;6063:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6063:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6115:5:0;;;5957:192::o;18246:178::-;18324:18;18328:4;18334:7;18324:3;:18::i;:::-;18323:19;18315:63;;;;;-1:-1:-1;;;18315:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18389:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;18389:27:0;18412:4;18389:27;;;18246:178::o;14225:261::-;14310:4;14327:129;14336:12;:10;:12::i;:::-;14350:7;14359:96;14398:15;14359:96;;;;;;;;;;;;;;;;;:11;:25;14371:12;:10;:12::i;:::-;-1:-1:-1;;;;;14359:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14359:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;11673:158::-;11742:4;11759:42;11769:12;:10;:12::i;:::-;11783:9;11794:6;11759:9;:42::i;21269:229::-;-1:-1:-1;;;;;21343:22:0;;21335:73;;;;-1:-1:-1;;;21335:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21445:6;;21424:38;;-1:-1:-1;;;;;21424:38:0;;;;21445:6;;21424:38;;21445:6;;21424:38;21473:6;:17;;-1:-1:-1;;;;;;21473:17:0;-1:-1:-1;;;;;21473:17:0;;;;;;;;;;21269:229::o;17156:338::-;-1:-1:-1;;;;;17250:19:0;;17242:68;;;;-1:-1:-1;;;17242:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17329:21:0;;17321:68;;;;-1:-1:-1;;;17321:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17402:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17454:32;;;;;;;;;;;;;;;;;17156:338;;;:::o;14976:471::-;-1:-1:-1;;;;;15074:20:0;;15066:70;;;;-1:-1:-1;;;15066:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15155:23:0;;15147:71;;;;-1:-1:-1;;;15147:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15251;15273:6;15251:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15251:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;15231:17:0;;;:9;:17;;;;;;;;;;;:91;;;;15356:20;;;;;;;:32;;15381:6;15356:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;15333:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;15404:35;;;;;;;15333:20;;15404:35;;;;;;;;;;;;;14976:471;;;:::o

Swarm Source

bzzr://f5f413fd1efde9717e10bccfbceb445c7e7cadd70e79fe2090dd9c41598cf226
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.