ETH Price: $2,476.42 (-1.77%)

Token

Maharlika Crypto (MHLK-IRM)
 

Overview

Max Total Supply

10,800,000,000,000 MHLK-IRM

Holders

4,174

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 2 Decimals)

Balance
409,999.68 MHLK-IRM

Value
$0.00
0xf3887fa625ef96ec15f5a870003b26ff70f46e48
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:
MHLKC

Compiler Version
v0.6.10+commit.00c0fcaf

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-07-03
*/

// File: contracts\AddrArrayLib.sol

/*
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
*/

pragma solidity >=0.4.21 <0.7.0;

library AddrArrayLib {
    using AddrArrayLib for Addresses;

    struct Addresses {
      address[]  _items;
    }

    /**
     * @notice push an address to the array
     * @dev if the address already exists, it will not be added again
     * @param self Storage array containing address type variables
     * @param element the element to add in the array
     */
    function pushAddress(Addresses storage self, address element) internal {
      if (!exists(self, element)) {
        self._items.push(element);
      }
    }

    /**
     * @notice remove an address from the array
     * @dev finds the element, swaps it with the last element, and then deletes it;
     *      returns a boolean whether the element was found and deleted
     * @param self Storage array containing address type variables
     * @param element the element to remove from the array
     */
    function removeAddress(Addresses storage self, address element) internal returns (bool) {
        for (uint i = 0; i < self.size(); i++) {
            if (self._items[i] == element) {
                self._items[i] = self._items[self.size() - 1];
                self._items.pop();
                return true;
            }
        }
        return false;
    }

    /**
     * @notice get the address at a specific index from array
     * @dev revert if the index is out of bounds
     * @param self Storage array containing address type variables
     * @param index the index in the array
     */
    function getAddressAtIndex(Addresses storage self, uint256 index) internal view returns (address) {
        require(index < size(self), "the index is out of bounds");
        return self._items[index];
    }

    /**
     * @notice get the size of the array
     * @param self Storage array containing address type variables
     */
    function size(Addresses storage self) internal view returns (uint256) {
      return self._items.length;
    }

    /**
     * @notice check if an element exist in the array
     * @param self Storage array containing address type variables
     * @param element the element to check if it exists in the array
     */
    function exists(Addresses storage self, address element) internal view returns (bool) {
        for (uint i = 0; i < self.size(); i++) {
            if (self._items[i] == element) {
                return true;
            }
        }
        return false;
    }

    /**
     * @notice get the array
     * @param self Storage array containing address type variables
     */
    function getAllAddresses(Addresses storage self) internal view returns(address[] memory) {
        return self._items;
    }

}

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

pragma solidity ^0.6.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 { }

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

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

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

pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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

// File: node_modules\@openzeppelin\contracts\math\SafeMath.sol

pragma solidity ^0.6.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.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

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

        return c;
    }

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

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

// File: node_modules\@openzeppelin\contracts\utils\Address.sol

pragma solidity ^0.6.2;

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

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

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

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

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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

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

// File: node_modules\@openzeppelin\contracts\utils\Pausable.sol

pragma solidity ^0.6.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 Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

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

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    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 Triggers stopped state.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.6.0;



/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

// File: contracts\MHLKC.sol

pragma solidity >=0.4.21 <0.7.0;



contract MHLKC is ERC20Pausable {
    using AddrArrayLib for AddrArrayLib.Addresses;

    address private contractCreator;

    // List of trusted addresses which can mint tokens
    AddrArrayLib.Addresses untrustedAddress;

    constructor () ERC20("Maharlika Crypto","MHLK-IRM") public {
        _setupDecimals(2);
        contractCreator = msg.sender;
    }

    modifier ownerOnly() {
        require(msg.sender == contractCreator, "This function could only be executed by the owner");
        _;
    }

    function mint(uint256 numberofToken) public ownerOnly(){
        require((_msgSender()==contractCreator),"Not the contract creator");
         _mint(contractCreator, numberofToken);
    }

    function burn(uint256 amount) public {
        require((balanceOf(_msgSender())>=amount),"does not have enough tokens");
        require(!untrustedAddress.exists(_msgSender()),"Sender Blocked");
        _burn(_msgSender(),amount);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require((balanceOf(_msgSender())>=amount),"does not have enough tokens");
        require(!untrustedAddress.exists(_msgSender()),"Sender Blocked");
        require(!untrustedAddress.exists(recipient),"Sender Blocked");
        
        _transfer(_msgSender(), recipient, amount);

         return true;
    }

    function bulkTransfer(address[] memory _addresses,uint256 amount) public returns(uint256){
        require((_addresses.length>0),"Empty list of addresses");
        require((_addresses.length <= 32),"addresses more then 32");
        require((balanceOf(_msgSender())>=(amount*_addresses.length)),"does not have enough tokens");
        require(!untrustedAddress.exists(_msgSender()),"Sender Blocked");

        uint256 transferedAmount = 0;
        for (uint i=0; i<_addresses.length; i++) {
            if((_addresses[i] != address(0))&&(!untrustedAddress.exists(_addresses[i]))){
              _transfer(_msgSender(), _addresses[i], amount);
              transferedAmount += amount;
            }
        }

        return transferedAmount;
    }

    function bulkAddressBlock(address[] memory _addresses) public ownerOnly() returns(uint256) {
        require((_msgSender()==contractCreator),"Not the contract creator");

        for (uint i = 0; i<_addresses.length; i++) {
            if(!untrustedAddress.exists(_addresses[i])){
                untrustedAddress.pushAddress(_addresses[i]);
            }
        }
    }
    function bulkAddressUnBlock(address[] memory _addresses) public ownerOnly() returns(uint256){
        require((_msgSender()==contractCreator),"Not the contract creator");

        for (uint i = 0; i<_addresses.length; i++) {
            untrustedAddress.removeAddress(_addresses[i]);
        }
    }

    function getUnBlockAddress() public ownerOnly() view returns(address[] memory) {
        require((_msgSender()==contractCreator),"Not the contract creator");
        return untrustedAddress.getAllAddresses();
    }

    function pause() public ownerOnly(){
        require((_msgSender()==contractCreator),"Not the contract creator");
        super._pause();
    }

     function unPause() public ownerOnly(){
        require((_msgSender()==contractCreator),"Not the contract creator");
        super._unpause();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"bulkAddressBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"bulkAddressUnBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bulkTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getUnBlockAddress","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberofToken","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unPause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252601081526f4d616861726c696b612043727970746f60801b6020808301918252835180850190945260088452674d484c4b2d49524d60c01b9084015281519192916200006a91600391620000e1565b50805162000080906004906020840190620000e1565b50506005805461ff001960ff1990911660121716905550620000ac60026001600160e01b03620000cb16565b6005805462010000600160b01b03191633620100000217905562000186565b6005805460ff191660ff92909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200012457805160ff191683800117855562000154565b8280016001018555821562000154579182015b828111156200015457825182559160200191906001019062000137565b506200016292915062000166565b5090565b6200018391905b808211156200016257600081556001016200016d565b90565b611c8580620001966000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80635c975abb116100ad578063a0712d6811610071578063a0712d6814610528578063a457c2d714610545578063a9059cbb14610571578063dd62ed3e1461059d578063f7b188a5146105cb5761012c565b80635c975abb1461044757806370a082311461044f57806378436fb0146104755780638456cb591461051857806395d89b41146105205761012c565b806339509351116100f4578063395093511461025c5780633ce7c4581461028857806342966c68146102e057806347763ebf146102ff5780634ca64b3a146103a25761012c565b806306fdde0314610131578063095ea7b3146101ae57806318160ddd146101ee57806323b872dd14610208578063313ce5671461023e575b600080fd5b6101396105d3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101da600480360360408110156101c457600080fd5b506001600160a01b038135169060200135610669565b604080519115158252519081900360200190f35b6101f6610687565b60408051918252519081900360200190f35b6101da6004803603606081101561021e57600080fd5b506001600160a01b0381358116916020810135909116906040013561068d565b61024661071a565b6040805160ff9092168252519081900360200190f35b6101da6004803603604081101561027257600080fd5b506001600160a01b038135169060200135610723565b610290610777565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156102cc5781810151838201526020016102b4565b505050509050019250505060405180910390f35b6102fd600480360360208110156102f657600080fd5b503561083b565b005b6101f66004803603602081101561031557600080fd5b81019060208101813564010000000081111561033057600080fd5b82018360208201111561034257600080fd5b8035906020019184602083028401116401000000008311171561036457600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061090f945050505050565b6101f6600480360360408110156103b857600080fd5b8101906020810181356401000000008111156103d357600080fd5b8201836020820111156103e557600080fd5b8035906020019184602083028401116401000000008311171561040757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610a06915050565b6101da610c03565b6101f66004803603602081101561046557600080fd5b50356001600160a01b0316610c11565b6101f66004803603602081101561048b57600080fd5b8101906020810181356401000000008111156104a657600080fd5b8201836020820111156104b857600080fd5b803590602001918460208302840111640100000000831117156104da57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610c2c945050505050565b6102fd610d2f565b610139610deb565b6102fd6004803603602081101561053e57600080fd5b5035610e4c565b6101da6004803603604081101561055b57600080fd5b506001600160a01b038135169060200135610f1a565b6101da6004803603604081101561058757600080fd5b506001600160a01b038135169060200135610f88565b6101f6600480360360408110156105b357600080fd5b506001600160a01b038135811691602001351661109d565b6102fd6110c8565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065f5780601f106106345761010080835404028352916020019161065f565b820191906000526020600020905b81548152906001019060200180831161064257829003601f168201915b5050505050905090565b600061067d610676611182565b8484611186565b5060015b92915050565b60025490565b600061069a848484611272565b610710846106a6611182565b61070b85604051806060016040528060288152602001611b1e602891396001600160a01b038a166000908152600160205260408120906106e4611182565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6113d916565b611186565b5060019392505050565b60055460ff1690565b600061067d610730611182565b8461070b8560016000610741611182565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61147016565b6005546060906201000090046001600160a01b031633146107c95760405162461bcd60e51b8152600401808060200182810382526031815260200180611bf56031913960400191505060405180910390fd5b6005546201000090046001600160a01b03166107e3611182565b6001600160a01b03161461082c576040805162461bcd60e51b81526020600482015260186024820152600080516020611b46833981519152604482015290519081900360640190fd5b61083660066114d1565b905090565b8061084c610847611182565b610c11565b101561089f576040805162461bcd60e51b815260206004820152601b60248201527f646f6573206e6f74206861766520656e6f75676820746f6b656e730000000000604482015290519081900360640190fd5b6108b86108aa611182565b60069063ffffffff61153716565b156108fb576040805162461bcd60e51b815260206004820152600e60248201526d14d95b99195c88109b1bd8dad95960921b604482015290519081900360640190fd5b61090c610906611182565b8261159b565b50565b6005546000906201000090046001600160a01b031633146109615760405162461bcd60e51b8152600401808060200182810382526031815260200180611bf56031913960400191505060405180910390fd5b6005546201000090046001600160a01b031661097b611182565b6001600160a01b0316146109c4576040805162461bcd60e51b81526020600482015260186024820152600080516020611b46833981519152604482015290519081900360640190fd5b60005b8251811015610a00576109f78382815181106109df57fe5b602002602001015160066116a390919063ffffffff16565b506001016109c7565b50919050565b600080835111610a5d576040805162461bcd60e51b815260206004820152601760248201527f456d707479206c697374206f6620616464726573736573000000000000000000604482015290519081900360640190fd5b602083511115610aad576040805162461bcd60e51b815260206004820152601660248201527530b2323932b9b9b2b99036b7b932903a3432b710199960511b604482015290519081900360640190fd5b82518202610abc610847611182565b1015610b0f576040805162461bcd60e51b815260206004820152601b60248201527f646f6573206e6f74206861766520656e6f75676820746f6b656e730000000000604482015290519081900360640190fd5b610b1a6108aa611182565b15610b5d576040805162461bcd60e51b815260206004820152600e60248201526d14d95b99195c88109b1bd8dad95960921b604482015290519081900360640190fd5b6000805b8451811015610bfb5760006001600160a01b0316858281518110610b8157fe5b60200260200101516001600160a01b031614158015610bc45750610bc2858281518110610baa57fe5b6020026020010151600661153790919063ffffffff16565b155b15610bf357610bee610bd4611182565b868381518110610be057fe5b602002602001015186611272565b908301905b600101610b61565b509392505050565b600554610100900460ff1690565b6001600160a01b031660009081526020819052604090205490565b6005546000906201000090046001600160a01b03163314610c7e5760405162461bcd60e51b8152600401808060200182810382526031815260200180611bf56031913960400191505060405180910390fd5b6005546201000090046001600160a01b0316610c98611182565b6001600160a01b031614610ce1576040805162461bcd60e51b81526020600482015260186024820152600080516020611b46833981519152604482015290519081900360640190fd5b60005b8251811015610a0057610cfc838281518110610baa57fe5b610d2757610d27838281518110610d0f57fe5b6020026020010151600661179090919063ffffffff16565b600101610ce4565b6005546201000090046001600160a01b03163314610d7e5760405162461bcd60e51b8152600401808060200182810382526031815260200180611bf56031913960400191505060405180910390fd5b6005546201000090046001600160a01b0316610d98611182565b6001600160a01b031614610de1576040805162461bcd60e51b81526020600482015260186024820152600080516020611b46833981519152604482015290519081900360640190fd5b610de96117ce565b565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065f5780601f106106345761010080835404028352916020019161065f565b6005546201000090046001600160a01b03163314610e9b5760405162461bcd60e51b8152600401808060200182810382526031815260200180611bf56031913960400191505060405180910390fd5b6005546201000090046001600160a01b0316610eb5611182565b6001600160a01b031614610efe576040805162461bcd60e51b81526020600482015260186024820152600080516020611b46833981519152604482015290519081900360640190fd5b60055461090c906201000090046001600160a01b031682611873565b600061067d610f27611182565b8461070b85604051806060016040528060258152602001611bd06025913960016000610f51611182565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6113d916565b600081610f96610847611182565b1015610fe9576040805162461bcd60e51b815260206004820152601b60248201527f646f6573206e6f74206861766520656e6f75676820746f6b656e730000000000604482015290519081900360640190fd5b610ff46108aa611182565b15611037576040805162461bcd60e51b815260206004820152600e60248201526d14d95b99195c88109b1bd8dad95960921b604482015290519081900360640190fd5b61104860068463ffffffff61153716565b1561108b576040805162461bcd60e51b815260206004820152600e60248201526d14d95b99195c88109b1bd8dad95960921b604482015290519081900360640190fd5b61067d611096611182565b8484611272565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546201000090046001600160a01b031633146111175760405162461bcd60e51b8152600401808060200182810382526031815260200180611bf56031913960400191505060405180910390fd5b6005546201000090046001600160a01b0316611131611182565b6001600160a01b03161461117a576040805162461bcd60e51b81526020600482015260186024820152600080516020611b46833981519152604482015290519081900360640190fd5b610de961196f565b3390565b6001600160a01b0383166111cb5760405162461bcd60e51b8152600401808060200182810382526024815260200180611bac6024913960400191505060405180910390fd5b6001600160a01b0382166112105760405162461bcd60e51b8152600401808060200182810382526022815260200180611ad66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166112b75760405162461bcd60e51b8152600401808060200182810382526025815260200180611b876025913960400191505060405180910390fd5b6001600160a01b0382166112fc5760405162461bcd60e51b8152600401808060200182810382526023815260200180611a916023913960400191505060405180910390fd5b6113078383836119f6565b61134a81604051806060016040528060268152602001611af8602691396001600160a01b038616600090815260208190526040902054919063ffffffff6113d916565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461137f908263ffffffff61147016565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156114685760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561142d578181015183820152602001611415565b50505050905090810190601f16801561145a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156114ca576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60608160000180548060200260200160405190810160405280929190818152602001828054801561152b57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161150d575b50505050509050919050565b6000805b61154484611a4a565b81101561159157826001600160a01b031684600001828154811061156457fe5b6000918252602090912001546001600160a01b03161415611589576001915050610681565b60010161153b565b5060009392505050565b6001600160a01b0382166115e05760405162461bcd60e51b8152600401808060200182810382526021815260200180611b666021913960400191505060405180910390fd5b6115ec826000836119f6565b61162f81604051806060016040528060228152602001611ab4602291396001600160a01b038516600090815260208190526040902054919063ffffffff6113d916565b6001600160a01b03831660009081526020819052604090205560025461165b908263ffffffff611a4e16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000805b6116b084611a4a565b81101561159157826001600160a01b03168460000182815481106116d057fe5b6000918252602090912001546001600160a01b03161415611788578360016116f782611a4a565b038154811061170257fe5b60009182526020909120015484546001600160a01b039091169085908390811061172857fe5b600091825260209091200180546001600160a01b0319166001600160a01b0392909216919091179055835484908061175c57fe5b600082815260209020810160001990810180546001600160a01b03191690550190555060019050610681565b6001016116a7565b61179a8282611537565b6117ca5781546001810183556000838152602090200180546001600160a01b0319166001600160a01b0383161790555b5050565b600554610100900460ff161561181e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611856611182565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b0382166118ce576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6118da600083836119f6565b6002546118ed908263ffffffff61147016565b6002556001600160a01b038216600090815260208190526040902054611919908263ffffffff61147016565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600554610100900460ff166119c2576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611856611182565b611a01838383611a45565b611a09610c03565b15611a455760405162461bcd60e51b815260040180806020018281038252602a815260200180611c26602a913960400191505060405180910390fd5b505050565b5490565b60006114ca83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113d956fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654e6f742074686520636f6e74726163742063726561746f72000000000000000045524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f546869732066756e6374696f6e20636f756c64206f6e6c7920626520657865637574656420627920746865206f776e657245524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220720a2d5396d24ae054bbceef6b9574ed78ac8825e40d3c34bc8637d595b82d7b64736f6c634300060a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80635c975abb116100ad578063a0712d6811610071578063a0712d6814610528578063a457c2d714610545578063a9059cbb14610571578063dd62ed3e1461059d578063f7b188a5146105cb5761012c565b80635c975abb1461044757806370a082311461044f57806378436fb0146104755780638456cb591461051857806395d89b41146105205761012c565b806339509351116100f4578063395093511461025c5780633ce7c4581461028857806342966c68146102e057806347763ebf146102ff5780634ca64b3a146103a25761012c565b806306fdde0314610131578063095ea7b3146101ae57806318160ddd146101ee57806323b872dd14610208578063313ce5671461023e575b600080fd5b6101396105d3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101da600480360360408110156101c457600080fd5b506001600160a01b038135169060200135610669565b604080519115158252519081900360200190f35b6101f6610687565b60408051918252519081900360200190f35b6101da6004803603606081101561021e57600080fd5b506001600160a01b0381358116916020810135909116906040013561068d565b61024661071a565b6040805160ff9092168252519081900360200190f35b6101da6004803603604081101561027257600080fd5b506001600160a01b038135169060200135610723565b610290610777565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156102cc5781810151838201526020016102b4565b505050509050019250505060405180910390f35b6102fd600480360360208110156102f657600080fd5b503561083b565b005b6101f66004803603602081101561031557600080fd5b81019060208101813564010000000081111561033057600080fd5b82018360208201111561034257600080fd5b8035906020019184602083028401116401000000008311171561036457600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061090f945050505050565b6101f6600480360360408110156103b857600080fd5b8101906020810181356401000000008111156103d357600080fd5b8201836020820111156103e557600080fd5b8035906020019184602083028401116401000000008311171561040757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610a06915050565b6101da610c03565b6101f66004803603602081101561046557600080fd5b50356001600160a01b0316610c11565b6101f66004803603602081101561048b57600080fd5b8101906020810181356401000000008111156104a657600080fd5b8201836020820111156104b857600080fd5b803590602001918460208302840111640100000000831117156104da57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610c2c945050505050565b6102fd610d2f565b610139610deb565b6102fd6004803603602081101561053e57600080fd5b5035610e4c565b6101da6004803603604081101561055b57600080fd5b506001600160a01b038135169060200135610f1a565b6101da6004803603604081101561058757600080fd5b506001600160a01b038135169060200135610f88565b6101f6600480360360408110156105b357600080fd5b506001600160a01b038135811691602001351661109d565b6102fd6110c8565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065f5780601f106106345761010080835404028352916020019161065f565b820191906000526020600020905b81548152906001019060200180831161064257829003601f168201915b5050505050905090565b600061067d610676611182565b8484611186565b5060015b92915050565b60025490565b600061069a848484611272565b610710846106a6611182565b61070b85604051806060016040528060288152602001611b1e602891396001600160a01b038a166000908152600160205260408120906106e4611182565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6113d916565b611186565b5060019392505050565b60055460ff1690565b600061067d610730611182565b8461070b8560016000610741611182565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61147016565b6005546060906201000090046001600160a01b031633146107c95760405162461bcd60e51b8152600401808060200182810382526031815260200180611bf56031913960400191505060405180910390fd5b6005546201000090046001600160a01b03166107e3611182565b6001600160a01b03161461082c576040805162461bcd60e51b81526020600482015260186024820152600080516020611b46833981519152604482015290519081900360640190fd5b61083660066114d1565b905090565b8061084c610847611182565b610c11565b101561089f576040805162461bcd60e51b815260206004820152601b60248201527f646f6573206e6f74206861766520656e6f75676820746f6b656e730000000000604482015290519081900360640190fd5b6108b86108aa611182565b60069063ffffffff61153716565b156108fb576040805162461bcd60e51b815260206004820152600e60248201526d14d95b99195c88109b1bd8dad95960921b604482015290519081900360640190fd5b61090c610906611182565b8261159b565b50565b6005546000906201000090046001600160a01b031633146109615760405162461bcd60e51b8152600401808060200182810382526031815260200180611bf56031913960400191505060405180910390fd5b6005546201000090046001600160a01b031661097b611182565b6001600160a01b0316146109c4576040805162461bcd60e51b81526020600482015260186024820152600080516020611b46833981519152604482015290519081900360640190fd5b60005b8251811015610a00576109f78382815181106109df57fe5b602002602001015160066116a390919063ffffffff16565b506001016109c7565b50919050565b600080835111610a5d576040805162461bcd60e51b815260206004820152601760248201527f456d707479206c697374206f6620616464726573736573000000000000000000604482015290519081900360640190fd5b602083511115610aad576040805162461bcd60e51b815260206004820152601660248201527530b2323932b9b9b2b99036b7b932903a3432b710199960511b604482015290519081900360640190fd5b82518202610abc610847611182565b1015610b0f576040805162461bcd60e51b815260206004820152601b60248201527f646f6573206e6f74206861766520656e6f75676820746f6b656e730000000000604482015290519081900360640190fd5b610b1a6108aa611182565b15610b5d576040805162461bcd60e51b815260206004820152600e60248201526d14d95b99195c88109b1bd8dad95960921b604482015290519081900360640190fd5b6000805b8451811015610bfb5760006001600160a01b0316858281518110610b8157fe5b60200260200101516001600160a01b031614158015610bc45750610bc2858281518110610baa57fe5b6020026020010151600661153790919063ffffffff16565b155b15610bf357610bee610bd4611182565b868381518110610be057fe5b602002602001015186611272565b908301905b600101610b61565b509392505050565b600554610100900460ff1690565b6001600160a01b031660009081526020819052604090205490565b6005546000906201000090046001600160a01b03163314610c7e5760405162461bcd60e51b8152600401808060200182810382526031815260200180611bf56031913960400191505060405180910390fd5b6005546201000090046001600160a01b0316610c98611182565b6001600160a01b031614610ce1576040805162461bcd60e51b81526020600482015260186024820152600080516020611b46833981519152604482015290519081900360640190fd5b60005b8251811015610a0057610cfc838281518110610baa57fe5b610d2757610d27838281518110610d0f57fe5b6020026020010151600661179090919063ffffffff16565b600101610ce4565b6005546201000090046001600160a01b03163314610d7e5760405162461bcd60e51b8152600401808060200182810382526031815260200180611bf56031913960400191505060405180910390fd5b6005546201000090046001600160a01b0316610d98611182565b6001600160a01b031614610de1576040805162461bcd60e51b81526020600482015260186024820152600080516020611b46833981519152604482015290519081900360640190fd5b610de96117ce565b565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065f5780601f106106345761010080835404028352916020019161065f565b6005546201000090046001600160a01b03163314610e9b5760405162461bcd60e51b8152600401808060200182810382526031815260200180611bf56031913960400191505060405180910390fd5b6005546201000090046001600160a01b0316610eb5611182565b6001600160a01b031614610efe576040805162461bcd60e51b81526020600482015260186024820152600080516020611b46833981519152604482015290519081900360640190fd5b60055461090c906201000090046001600160a01b031682611873565b600061067d610f27611182565b8461070b85604051806060016040528060258152602001611bd06025913960016000610f51611182565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6113d916565b600081610f96610847611182565b1015610fe9576040805162461bcd60e51b815260206004820152601b60248201527f646f6573206e6f74206861766520656e6f75676820746f6b656e730000000000604482015290519081900360640190fd5b610ff46108aa611182565b15611037576040805162461bcd60e51b815260206004820152600e60248201526d14d95b99195c88109b1bd8dad95960921b604482015290519081900360640190fd5b61104860068463ffffffff61153716565b1561108b576040805162461bcd60e51b815260206004820152600e60248201526d14d95b99195c88109b1bd8dad95960921b604482015290519081900360640190fd5b61067d611096611182565b8484611272565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546201000090046001600160a01b031633146111175760405162461bcd60e51b8152600401808060200182810382526031815260200180611bf56031913960400191505060405180910390fd5b6005546201000090046001600160a01b0316611131611182565b6001600160a01b03161461117a576040805162461bcd60e51b81526020600482015260186024820152600080516020611b46833981519152604482015290519081900360640190fd5b610de961196f565b3390565b6001600160a01b0383166111cb5760405162461bcd60e51b8152600401808060200182810382526024815260200180611bac6024913960400191505060405180910390fd5b6001600160a01b0382166112105760405162461bcd60e51b8152600401808060200182810382526022815260200180611ad66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166112b75760405162461bcd60e51b8152600401808060200182810382526025815260200180611b876025913960400191505060405180910390fd5b6001600160a01b0382166112fc5760405162461bcd60e51b8152600401808060200182810382526023815260200180611a916023913960400191505060405180910390fd5b6113078383836119f6565b61134a81604051806060016040528060268152602001611af8602691396001600160a01b038616600090815260208190526040902054919063ffffffff6113d916565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461137f908263ffffffff61147016565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156114685760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561142d578181015183820152602001611415565b50505050905090810190601f16801561145a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156114ca576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60608160000180548060200260200160405190810160405280929190818152602001828054801561152b57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161150d575b50505050509050919050565b6000805b61154484611a4a565b81101561159157826001600160a01b031684600001828154811061156457fe5b6000918252602090912001546001600160a01b03161415611589576001915050610681565b60010161153b565b5060009392505050565b6001600160a01b0382166115e05760405162461bcd60e51b8152600401808060200182810382526021815260200180611b666021913960400191505060405180910390fd5b6115ec826000836119f6565b61162f81604051806060016040528060228152602001611ab4602291396001600160a01b038516600090815260208190526040902054919063ffffffff6113d916565b6001600160a01b03831660009081526020819052604090205560025461165b908263ffffffff611a4e16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000805b6116b084611a4a565b81101561159157826001600160a01b03168460000182815481106116d057fe5b6000918252602090912001546001600160a01b03161415611788578360016116f782611a4a565b038154811061170257fe5b60009182526020909120015484546001600160a01b039091169085908390811061172857fe5b600091825260209091200180546001600160a01b0319166001600160a01b0392909216919091179055835484908061175c57fe5b600082815260209020810160001990810180546001600160a01b03191690550190555060019050610681565b6001016116a7565b61179a8282611537565b6117ca5781546001810183556000838152602090200180546001600160a01b0319166001600160a01b0383161790555b5050565b600554610100900460ff161561181e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611856611182565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b0382166118ce576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6118da600083836119f6565b6002546118ed908263ffffffff61147016565b6002556001600160a01b038216600090815260208190526040902054611919908263ffffffff61147016565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600554610100900460ff166119c2576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611856611182565b611a01838383611a45565b611a09610c03565b15611a455760405162461bcd60e51b815260040180806020018281038252602a815260200180611c26602a913960400191505060405180910390fd5b505050565b5490565b60006114ca83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113d956fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654e6f742074686520636f6e74726163742063726561746f72000000000000000045524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f546869732066756e6374696f6e20636f756c64206f6e6c7920626520657865637574656420627920746865206f776e657245524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220720a2d5396d24ae054bbceef6b9574ed78ac8825e40d3c34bc8637d595b82d7b64736f6c634300060a0033

Deployed Bytecode Sourcemap

29099:3397:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17446:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19552:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19552:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18521:100;;;:::i;:::-;;;;;;;;;;;;;;;;20195:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20195:321:0;;;;;;;;;;;;;;;;;:::i;18373:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20925:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20925:218:0;;;;;;;;:::i;31963:217::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29827:240;;;;;;;;;;;;;;;;-1:-1:-1;29827:240:0;;:::i;:::-;;31650:305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31650:305:0;;-1:-1:-1;31650:305:0;;-1:-1:-1;;;;;31650:305:0:i;30493:764::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30493:764:0;;-1:-1:-1;;30493:764:0;;;-1:-1:-1;30493:764:0;;-1:-1:-1;;30493:764:0:i;27344:78::-;;;:::i;18684:119::-;;;;;;;;;;;;;;;;-1:-1:-1;18684:119:0;-1:-1:-1;;;;;18684:119:0;;:::i;31265:379::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31265:379:0;;-1:-1:-1;31265:379:0;;-1:-1:-1;;;;;31265:379:0:i;32188:146::-;;;:::i;17648:87::-;;;:::i;29629:190::-;;;;;;;;;;;;;;;;-1:-1:-1;29629:190:0;;:::i;21646:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21646:269:0;;;;;;;;:::i;30075:410::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30075:410:0;;;;;;;;:::i;19254:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19254:151:0;;;;;;;;;;:::i;32343:150::-;;;:::i;17446:83::-;17516:5;17509:12;;;;;;;;-1:-1:-1;;17509:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17483:13;;17509:12;;17516:5;;17509:12;;17516:5;17509:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17446:83;:::o;19552:169::-;19635:4;19652:39;19661:12;:10;:12::i;:::-;19675:7;19684:6;19652:8;:39::i;:::-;-1:-1:-1;19709:4:0;19552:169;;;;;:::o;18521:100::-;18601:12;;18521:100;:::o;20195:321::-;20301:4;20318:36;20328:6;20336:9;20347:6;20318:9;:36::i;:::-;20365:121;20374:6;20382:12;:10;:12::i;:::-;20396:89;20434:6;20396:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20396:19:0;;;;;;:11;:19;;;;;;20416:12;:10;:12::i;:::-;-1:-1:-1;;;;;20396:33:0;;;;;;;;;;;;-1:-1:-1;20396:33:0;;;:89;;:37;:89;:::i;:::-;20365:8;:121::i;:::-;-1:-1:-1;20504:4:0;20195:321;;;;;:::o;18373:83::-;18439:9;;;;18373:83;:::o;20925:218::-;21013:4;21030:83;21039:12;:10;:12::i;:::-;21053:7;21062:50;21101:10;21062:11;:25;21074:12;:10;:12::i;:::-;-1:-1:-1;;;;;21062:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21062:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;31963:217::-;29532:15;;32024:16;;29532:15;;;-1:-1:-1;;;;;29532:15:0;29518:10;:29;29510:91;;;;-1:-1:-1;;;29510:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32076:15:::1;::::0;;;::::1;-1:-1:-1::0;;;;;32076:15:0::1;32062:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;32062:29:0::1;;32053:67;;;::::0;;-1:-1:-1;;;32053:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;32053:67:0;;;;;;;;;;;;;::::1;;32138:34;:16;:32;:34::i;:::-;32131:41;;31963:217:::0;:::o;29827:240::-;29909:6;29884:23;29894:12;:10;:12::i;:::-;29884:9;:23::i;:::-;:31;;29875:72;;;;;-1:-1:-1;;;29875:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29967:37;29991:12;:10;:12::i;:::-;29967:16;;:37;:23;:37;:::i;:::-;29966:38;29958:64;;;;;-1:-1:-1;;;29958:64:0;;;;;;;;;;;;-1:-1:-1;;;29958:64:0;;;;;;;;;;;;;;;30033:26;30039:12;:10;:12::i;:::-;30052:6;30033:5;:26::i;:::-;29827:240;:::o;31650:305::-;29532:15;;31734:7;;29532:15;;;-1:-1:-1;;;;;29532:15:0;29518:10;:29;29510:91;;;;-1:-1:-1;;;29510:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31776:15:::1;::::0;;;::::1;-1:-1:-1::0;;;;;31776:15:0::1;31762:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;31762:29:0::1;;31753:67;;;::::0;;-1:-1:-1;;;31753:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;31753:67:0;;;;;;;;;;;;;::::1;;31838:6;31833:115;31852:10;:17;31850:1;:19;31833:115;;;31891:45;31922:10;31933:1;31922:13;;;;;;;;;;;;;;31891:16;:30;;:45;;;;:::i;:::-;-1:-1:-1::0;31871:3:0::1;;31833:115;;;;31650:305:::0;;;:::o;30493:764::-;30574:7;30620:1;30602:10;:17;:19;30593:56;;;;;-1:-1:-1;;;30593:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30690:2;30669:10;:17;:23;;30660:59;;;;;-1:-1:-1;;;30660:59:0;;;;;;;;;;;;-1:-1:-1;;;30660:59:0;;;;;;;;;;;;;;;30772:10;:17;30765:6;:24;30739:23;30749:12;:10;:12::i;30739:23::-;:51;;30730:92;;;;;-1:-1:-1;;;30730:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30842:37;30866:12;:10;:12::i;30842:37::-;30841:38;30833:64;;;;;-1:-1:-1;;;30833:64:0;;;;;;;;;;;;-1:-1:-1;;;30833:64:0;;;;;;;;;;;;;;;30910:24;;30949:265;30966:10;:17;30964:1;:19;30949:265;;;31034:1;-1:-1:-1;;;;;31009:27:0;:10;31020:1;31009:13;;;;;;;;;;;;;;-1:-1:-1;;;;;31009:27:0;;;31008:72;;;;;31041:38;31065:10;31076:1;31065:13;;;;;;;;;;;;;;31041:16;:23;;:38;;;;:::i;:::-;31040:39;31008:72;31005:198;;;31098:46;31108:12;:10;:12::i;:::-;31122:10;31133:1;31122:13;;;;;;;;;;;;;;31137:6;31098:9;:46::i;:::-;31161:26;;;;31005:198;30985:3;;30949:265;;;-1:-1:-1;31233:16:0;30493:764;-1:-1:-1;;;30493:764:0:o;27344:78::-;27407:7;;;;;;;;27344:78::o;18684:119::-;-1:-1:-1;;;;;18777:18:0;18750:7;18777:18;;;;;;;;;;;;18684:119::o;31265:379::-;29532:15;;31347:7;;29532:15;;;-1:-1:-1;;;;;29532:15:0;29518:10;:29;29510:91;;;;-1:-1:-1;;;29510:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31390:15:::1;::::0;;;::::1;-1:-1:-1::0;;;;;31390:15:0::1;31376:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;31376:29:0::1;;31367:67;;;::::0;;-1:-1:-1;;;31367:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;31367:67:0;;;;;;;;;;;;;::::1;;31452:6;31447:190;31466:10;:17;31464:1;:19;31447:190;;;31509:38;31533:10;31544:1;31533:13;;;;;;;31509:38;31505:121;;31567:43;31596:10;31607:1;31596:13;;;;;;;;;;;;;;31567:16;:28;;:43;;;;:::i;:::-;31485:3;;31447:190;;32188:146:::0;29532:15;;;;;-1:-1:-1;;;;;29532:15:0;29518:10;:29;29510:91;;;;-1:-1:-1;;;29510:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32257:15:::1;::::0;;;::::1;-1:-1:-1::0;;;;;32257:15:0::1;32243:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;32243:29:0::1;;32234:67;;;::::0;;-1:-1:-1;;;32234:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;32234:67:0;;;;;;;;;;;;;::::1;;32312:14;:12;:14::i;:::-;32188:146::o:0;17648:87::-;17720:7;17713:14;;;;;;;;-1:-1:-1;;17713:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17687:13;;17713:14;;17720:7;;17713:14;;17720:7;17713:14;;;;;;;;;;;;;;;;;;;;;;;;29629:190;29532:15;;;;;-1:-1:-1;;;;;29532:15:0;29518:10;:29;29510:91;;;;-1:-1:-1;;;29510:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29718:15:::1;::::0;;;::::1;-1:-1:-1::0;;;;;29718:15:0::1;29704:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;29704:29:0::1;;29695:67;;;::::0;;-1:-1:-1;;;29695:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;29695:67:0;;;;;;;;;;;;;::::1;;29780:15;::::0;29774:37:::1;::::0;29780:15;;::::1;-1:-1:-1::0;;;;;29780:15:0::1;29797:13:::0;29774:5:::1;:37::i;21646:269::-:0;21739:4;21756:129;21765:12;:10;:12::i;:::-;21779:7;21788:96;21827:15;21788:96;;;;;;;;;;;;;;;;;:11;:25;21800:12;:10;:12::i;:::-;-1:-1:-1;;;;;21788:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21788:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;30075:410::-;30153:4;30204:6;30179:23;30189:12;:10;:12::i;30179:23::-;:31;;30170:72;;;;;-1:-1:-1;;;30170:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30262:37;30286:12;:10;:12::i;30262:37::-;30261:38;30253:64;;;;;-1:-1:-1;;;30253:64:0;;;;;;;;;;;;-1:-1:-1;;;30253:64:0;;;;;;;;;;;;;;;30337:34;:16;30361:9;30337:34;:23;:34;:::i;:::-;30336:35;30328:61;;;;;-1:-1:-1;;;30328:61:0;;;;;;;;;;;;-1:-1:-1;;;30328:61:0;;;;;;;;;;;;;;;30410:42;30420:12;:10;:12::i;:::-;30434:9;30445:6;30410:9;:42::i;19254:151::-;-1:-1:-1;;;;;19370:18:0;;;19343:7;19370:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19254:151::o;32343:150::-;29532:15;;;;;-1:-1:-1;;;;;29532:15:0;29518:10;:29;29510:91;;;;-1:-1:-1;;;29510:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32414:15:::1;::::0;;;::::1;-1:-1:-1::0;;;;;32414:15:0::1;32400:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;32400:29:0::1;;32391:67;;;::::0;;-1:-1:-1;;;32391:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;32391:67:0;;;;;;;;;;;;;::::1;;32469:16;:14;:16::i;3957:106::-:0;4045:10;3957:106;:::o;24793:346::-;-1:-1:-1;;;;;24895:19:0;;24887:68;;;;-1:-1:-1;;;24887:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24974:21:0;;24966:68;;;;-1:-1:-1;;;24966:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25047:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25099:32;;;;;;;;;;;;;;;;;24793:346;;;:::o;22405:539::-;-1:-1:-1;;;;;22511:20:0;;22503:70;;;;-1:-1:-1;;;22503:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22592:23:0;;22584:71;;;;-1:-1:-1;;;22584:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22668:47;22689:6;22697:9;22708:6;22668:20;:47::i;:::-;22748:71;22770:6;22748:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22748:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;22728:17:0;;;:9;:17;;;;;;;;;;;:91;;;;22853:20;;;;;;;:32;;22878:6;22853:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;22830:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;22901:35;;;;;;;22830:20;;22901:35;;;;;;;;;;;;;22405:539;;;:::o;8936:192::-;9022:7;9058:12;9050:6;;;;9042:29;;;;-1:-1:-1;;;9042:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9094:5:0;;;8936:192::o;8049:181::-;8107:7;8139:5;;;8163:6;;;;8155:46;;;;;-1:-1:-1;;;8155:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8221:1;8049:181;-1:-1:-1;;;8049:181:0:o;3005:126::-;3076:16;3112:4;:11;;3105:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3105:18:0;;;;;;;;;;;;;;;;;;;;;;;3005:126;;;:::o;2612:269::-;2692:4;;2709:142;2730:11;:4;:9;:11::i;:::-;2726:1;:15;2709:142;;;2785:7;-1:-1:-1;;;;;2767:25:0;:4;:11;;2779:1;2767:14;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2767:14:0;:25;2763:77;;;2820:4;2813:11;;;;;2763:77;2743:3;;2709:142;;;-1:-1:-1;2868:5:0;;2612:269;-1:-1:-1;;;2612:269:0:o;23935:418::-;-1:-1:-1;;;;;24019:21:0;;24011:67;;;;-1:-1:-1;;;24011:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24091:49;24112:7;24129:1;24133:6;24091:20;:49::i;:::-;24174:68;24197:6;24174:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24174:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;24153:18:0;;:9;:18;;;;;;;;;;:89;24268:12;;:24;;24285:6;24268:24;:16;:24;:::i;:::-;24253:12;:39;24308:37;;;;;;;;24334:1;;-1:-1:-1;;;;;24308:37:0;;;;;;;;;;;;23935:418;;:::o;1313:371::-;1395:4;;1412:242;1433:11;:4;:9;:11::i;:::-;1429:1;:15;1412:242;;;1488:7;-1:-1:-1;;;;;1470:25:0;:4;:11;;1482:1;1470:14;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1470:14:0;:25;1466:177;;;1533:4;1559:1;1545:11;1533:4;1545:9;:11::i;:::-;:15;1533:28;;;;;;;;;;;;;;;;;;1516:14;;-1:-1:-1;;;;;1533:28:0;;;;1516:4;;1528:1;;1516:14;;;;;;;;;;;;;;;:45;;-1:-1:-1;;;;;;1516:45:0;-1:-1:-1;;;;;1516:45:0;;;;;;;;;;1580:17;;;;;;;;;;;;;;;;;;-1:-1:-1;;1580:17:0;;;;;-1:-1:-1;;;;;;1580:17:0;;;;;;-1:-1:-1;1580:17:0;;-1:-1:-1;1616:11:0;;1466:177;1446:3;;1412:242;;791:161;876:21;883:4;889:7;876:6;:21::i;:::-;871:74;;910:25;;;;;;;-1:-1:-1;910:25:0;;;;;;;;;-1:-1:-1;;;;;;910:25:0;-1:-1:-1;;;;;910:25:0;;;;;871:74;791:161;;:::o;27895:118::-;27581:7;;;;;;;27580:8;27572:37;;;;;-1:-1:-1;;;27572:37:0;;;;;;;;;;;;-1:-1:-1;;;27572:37:0;;;;;;;;;;;;;;;27955:7:::1;:14:::0;;-1:-1:-1;;27955:14:0::1;;;::::0;;27985:20:::1;27992:12;:10;:12::i;:::-;27985:20;::::0;;-1:-1:-1;;;;;27985:20:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;27895:118::o:0;23225:378::-;-1:-1:-1;;;;;23309:21:0;;23301:65;;;;;-1:-1:-1;;;23301:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23379:49;23408:1;23412:7;23421:6;23379:20;:49::i;:::-;23456:12;;:24;;23473:6;23456:24;:16;:24;:::i;:::-;23441:12;:39;-1:-1:-1;;;;;23512:18:0;;:9;:18;;;;;;;;;;;:30;;23535:6;23512:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;23491:18:0;;:9;:18;;;;;;;;;;;:51;;;;23558:37;;;;;;;23491:18;;:9;;23558:37;;;;;;;;;;23225:378;;:::o;28077:120::-;27780:7;;;;;;;27772:40;;;;;-1:-1:-1;;;27772:40:0;;;;;;;;;;;;-1:-1:-1;;;27772:40:0;;;;;;;;;;;;;;;28136:7:::1;:15:::0;;-1:-1:-1;;28136:15:0::1;::::0;;28167:22:::1;28176:12;:10;:12::i;28782:238::-:0;28891:44;28918:4;28924:2;28928:6;28891:26;:44::i;:::-;28957:8;:6;:8::i;:::-;28956:9;28948:64;;;;-1:-1:-1;;;28948:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28782:238;;;:::o;2281:112::-;2367:18;;2281:112::o;8505:136::-;8563:7;8590:43;8594:1;8597;8590:43;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

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