ETH Price: $3,105.01 (+4.46%)
Gas: 5 Gwei

Token

dMMM (dMMM)
 

Overview

Max Total Supply

58,292,075.6873287972 dMMM

Holders

832

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Synthetix: Proxy SNX Token
Balance
0.7 dMMM

Value
$0.00
0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xD0000006...5aFB011eA
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Token

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-06-28
*/

// SPDX-License-Identifier: MIT
//      _ __  __ __  __ __  __     _
//     | |  \/  |  \/  |  \/  |   (_)
//   __| | \  / | \  / | \  / |    _  ___
//  / _` | |\/| | |\/| | |\/| |   | |/ _ \
// | (_| | |  | | |  | | |  | |  _| | (_) |
//  \__,_|_|  |_|_|  |_|_|  |_| (_)_|\___/

// dMMM dApp: https://dMMM.io
// Official Website: http://d-mmm.github.io/
// Telegram Channel:  https://t.me/dMMM2020
// Github: https://github.com/d-mmm
// WhitePaper: https://dMMM.io/whitepaper

pragma solidity >=0.6.0;

// SPDX-License-Identifier: MIT



// SPDX-License-Identifier: MIT



/**
 * @dev Interface of the ERC777Token standard as defined in the EIP.
 *
 * This contract uses the
 * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 registry standard] to let
 * token holders and recipients react to token movements by using setting implementers
 * for the associated interfaces in said registry. See {IERC1820Registry} and
 * {ERC1820Implementer}.
 */
interface IERC777 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the smallest part of the token that is not divisible. This
     * means all token operations (creation, movement and destruction) must have
     * amounts that are a multiple of this number.
     *
     * For most token contracts, this value will equal 1.
     */
    function granularity() external view returns (uint256);

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * If send or receive hooks are registered for the caller and `recipient`,
     * the corresponding functions will be called with `data` and empty
     * `operatorData`. See {IERC777Sender} and {IERC777Recipient}.
     *
     * Emits a {Sent} event.
     *
     * Requirements
     *
     * - the caller must have at least `amount` tokens.
     * - `recipient` cannot be the zero address.
     * - if `recipient` is a contract, it must implement the {IERC777Recipient}
     * interface.
     */
    function send(address recipient, uint256 amount, bytes calldata data) external;

    /**
     * @dev Destroys `amount` tokens from the caller's account, reducing the
     * total supply.
     *
     * If a send hook is registered for the caller, the corresponding function
     * will be called with `data` and empty `operatorData`. See {IERC777Sender}.
     *
     * Emits a {Burned} event.
     *
     * Requirements
     *
     * - the caller must have at least `amount` tokens.
     */
    function burn(uint256 amount, bytes calldata data) external;

    /**
     * @dev Returns true if an account is an operator of `tokenHolder`.
     * Operators can send and burn tokens on behalf of their owners. All
     * accounts are their own operator.
     *
     * See {operatorSend} and {operatorBurn}.
     */
    function isOperatorFor(address operator, address tokenHolder) external view returns (bool);

    /**
     * @dev Make an account an operator of the caller.
     *
     * See {isOperatorFor}.
     *
     * Emits an {AuthorizedOperator} event.
     *
     * Requirements
     *
     * - `operator` cannot be calling address.
     */
    function authorizeOperator(address operator) external;

    /**
     * @dev Revoke an account's operator status for the caller.
     *
     * See {isOperatorFor} and {defaultOperators}.
     *
     * Emits a {RevokedOperator} event.
     *
     * Requirements
     *
     * - `operator` cannot be calling address.
     */
    function revokeOperator(address operator) external;

    /**
     * @dev Returns the list of default operators. These accounts are operators
     * for all token holders, even if {authorizeOperator} was never called on
     * them.
     *
     * This list is immutable, but individual holders may revoke these via
     * {revokeOperator}, in which case {isOperatorFor} will return false.
     */
    function defaultOperators() external view returns (address[] memory);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient`. The caller must
     * be an operator of `sender`.
     *
     * If send or receive hooks are registered for `sender` and `recipient`,
     * the corresponding functions will be called with `data` and
     * `operatorData`. See {IERC777Sender} and {IERC777Recipient}.
     *
     * Emits a {Sent} event.
     *
     * Requirements
     *
     * - `sender` cannot be the zero address.
     * - `sender` must have at least `amount` tokens.
     * - the caller must be an operator for `sender`.
     * - `recipient` cannot be the zero address.
     * - if `recipient` is a contract, it must implement the {IERC777Recipient}
     * interface.
     */
    function operatorSend(
        address sender,
        address recipient,
        uint256 amount,
        bytes calldata data,
        bytes calldata operatorData
    ) external;

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the total supply.
     * The caller must be an operator of `account`.
     *
     * If a send hook is registered for `account`, the corresponding function
     * will be called with `data` and `operatorData`. See {IERC777Sender}.
     *
     * Emits a {Burned} event.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     * - the caller must be an operator for `account`.
     */
    function operatorBurn(
        address account,
        uint256 amount,
        bytes calldata data,
        bytes calldata operatorData
    ) external;

    event Sent(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256 amount,
        bytes data,
        bytes operatorData
    );

    event Minted(address indexed operator, address indexed to, uint256 amount, bytes data, bytes operatorData);

    event Burned(address indexed operator, address indexed from, uint256 amount, bytes data, bytes operatorData);

    event AuthorizedOperator(address indexed operator, address indexed tokenHolder);

    event RevokedOperator(address indexed operator, address indexed tokenHolder);
}

// SPDX-License-Identifier: MIT



/**
 * @dev Interface of the ERC777TokensRecipient standard as defined in the EIP.
 *
 * Accounts can be notified of {IERC777} tokens being sent to them by having a
 * contract implement this interface (contract holders can be their own
 * implementer) and registering it on the
 * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 global registry].
 *
 * See {IERC1820Registry} and {ERC1820Implementer}.
 */
interface IERC777Recipient {
    /**
     * @dev Called by an {IERC777} token contract whenever tokens are being
     * moved or created into a registered account (`to`). The type of operation
     * is conveyed by `from` being the zero address or not.
     *
     * This call occurs _after_ the token contract's state is updated, so
     * {IERC777-balanceOf}, etc., can be used to query the post-operation state.
     *
     * This function may revert to prevent the operation from being executed.
     */
    function tokensReceived(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes calldata userData,
        bytes calldata operatorData
    ) external;
}

// SPDX-License-Identifier: MIT



/**
 * @dev Interface of the ERC777TokensSender standard as defined in the EIP.
 *
 * {IERC777} Token holders can be notified of operations performed on their
 * tokens by having a contract implement this interface (contract holders can be
 *  their own implementer) and registering it on the
 * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 global registry].
 *
 * See {IERC1820Registry} and {ERC1820Implementer}.
 */
interface IERC777Sender {
    /**
     * @dev Called by an {IERC777} token contract whenever a registered holder's
     * (`from`) tokens are about to be moved or destroyed. The type of operation
     * is conveyed by `to` being the zero address or not.
     *
     * This call occurs _before_ the token contract's state is updated, so
     * {IERC777-balanceOf}, etc., can be used to query the pre-operation state.
     *
     * This function may revert to prevent the operation from being executed.
     */
    function tokensToSend(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes calldata userData,
        bytes calldata operatorData
    ) external;
}

// SPDX-License-Identifier: MIT



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

// SPDX-License-Identifier: MIT



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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

    function per(uint256 a, uint256 base, uint256 percent) internal pure returns (uint256) {
        return div(mul(a,percent),base);
    }
}

// SPDX-License-Identifier: MIT



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

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

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT



/**
 * @dev Interface of the global ERC1820 Registry, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1820[EIP]. Accounts may register
 * implementers for interfaces in this registry, as well as query support.
 *
 * Implementers may be shared by multiple accounts, and can also implement more
 * than a single interface for each account. Contracts can implement interfaces
 * for themselves, but externally-owned accounts (EOA) must delegate this to a
 * contract.
 *
 * {IERC165} interfaces can also be queried via the registry.
 *
 * For an in-depth explanation and source code analysis, see the EIP text.
 */
interface IERC1820Registry {
    /**
     * @dev Sets `newManager` as the manager for `account`. A manager of an
     * account is able to set interface implementers for it.
     *
     * By default, each account is its own manager. Passing a value of `0x0` in
     * `newManager` will reset the manager to this initial state.
     *
     * Emits a {ManagerChanged} event.
     *
     * Requirements:
     *
     * - the caller must be the current manager for `account`.
     */
    function setManager(address account, address newManager) external;

    /**
     * @dev Returns the manager for `account`.
     *
     * See {setManager}.
     */
    function getManager(address account) external view returns (address);

    /**
     * @dev Sets the `implementer` contract as ``account``'s implementer for
     * `interfaceHash`.
     *
     * `account` being the zero address is an alias for the caller's address.
     * The zero address can also be used in `implementer` to remove an old one.
     *
     * See {interfaceHash} to learn how these are created.
     *
     * Emits an {InterfaceImplementerSet} event.
     *
     * Requirements:
     *
     * - the caller must be the current manager for `account`.
     * - `interfaceHash` must not be an {IERC165} interface id (i.e. it must not
     * end in 28 zeroes).
     * - `implementer` must implement {IERC1820Implementer} and return true when
     * queried for support, unless `implementer` is the caller. See
     * {IERC1820Implementer-canImplementInterfaceForAddress}.
     */
    function setInterfaceImplementer(address account, bytes32 interfaceHash, address implementer) external;

    /**
     * @dev Returns the implementer of `interfaceHash` for `account`. If no such
     * implementer is registered, returns the zero address.
     *
     * If `interfaceHash` is an {IERC165} interface id (i.e. it ends with 28
     * zeroes), `account` will be queried for support of it.
     *
     * `account` being the zero address is an alias for the caller's address.
     */
    function getInterfaceImplementer(address account, bytes32 interfaceHash) external view returns (address);

    /**
     * @dev Returns the interface hash for an `interfaceName`, as defined in the
     * corresponding
     * https://eips.ethereum.org/EIPS/eip-1820#interface-name[section of the EIP].
     */
    function interfaceHash(string calldata interfaceName) external pure returns (bytes32);

    /**
     *  @notice Updates the cache with whether the contract implements an ERC165 interface or not.
     *  @param account Address of the contract for which to update the cache.
     *  @param interfaceId ERC165 interface for which to update the cache.
     */
    function updateERC165Cache(address account, bytes4 interfaceId) external;

    /**
     *  @notice Checks whether a contract implements an ERC165 interface or not.
     *  If the result is not cached a direct lookup on the contract address is performed.
     *  If the result is not cached or the cached value is out-of-date, the cache MUST be updated manually by calling
     *  {updateERC165Cache} with the contract address.
     *  @param account Address of the contract to check.
     *  @param interfaceId ERC165 interface to check.
     *  @return True if `account` implements `interfaceId`, false otherwise.
     */
    function implementsERC165Interface(address account, bytes4 interfaceId) external view returns (bool);

    /**
     *  @notice Checks whether a contract implements an ERC165 interface or not without using nor updating the cache.
     *  @param account Address of the contract to check.
     *  @param interfaceId ERC165 interface to check.
     *  @return True if `account` implements `interfaceId`, false otherwise.
     */
    function implementsERC165InterfaceNoCache(address account, bytes4 interfaceId) external view returns (bool);

    event InterfaceImplementerSet(address indexed account, bytes32 indexed interfaceHash, address indexed implementer);

    event ManagerChanged(address indexed account, address indexed newManager);
}


/**
 * @dev Implementation of the {IERC777} 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}.
 *
 * Support for ERC20 is included in this contract, as specified by the EIP: both
 * the ERC777 and ERC20 interfaces can be safely used when interacting with it.
 * Both {IERC777-Sent} and {IERC20-Transfer} events are emitted on token
 * movements.
 *
 * Additionally, the {IERC777-granularity} value is hard-coded to `1`, meaning that there
 * are no special restrictions in the amount of tokens that created, moved, or
 * destroyed. This makes integration with ERC20 applications seamless.
 */
contract ERC777 is IERC777, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    IERC1820Registry constant internal _ERC1820_REGISTRY = IERC1820Registry(0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24);

    mapping(address => uint256) private _balances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    // We inline the result of the following hashes because Solidity doesn't resolve them at compile time.
    // See https://github.com/ethereum/solidity/issues/4024.

    // keccak256("ERC777TokensSender")
    bytes32 constant private _TOKENS_SENDER_INTERFACE_HASH =
        0x29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe895;

    // keccak256("ERC777TokensRecipient")
    bytes32 constant private _TOKENS_RECIPIENT_INTERFACE_HASH =
        0xb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b;

    // This isn't ever read from - it's only used to respond to the defaultOperators query.
    address[] private _defaultOperatorsArray;

    // Immutable, but accounts may revoke them (tracked in __revokedDefaultOperators).
    mapping(address => bool) private _defaultOperators;

    // For each account, a mapping of its operators and revoked default operators.
    mapping(address => mapping(address => bool)) private _operators;
    mapping(address => mapping(address => bool)) private _revokedDefaultOperators;

    // ERC20-allowances
    mapping (address => mapping (address => uint256)) private _allowances;

    /**
     * @dev `defaultOperators` may be an empty array.
     */
    constructor(
        string memory name,
        string memory symbol,
        address[] memory defaultOperators
    ) public {
        _name = name;
        _symbol = symbol;

        _defaultOperatorsArray = defaultOperators;
        for (uint256 i = 0; i < _defaultOperatorsArray.length; i++) {
            _defaultOperators[_defaultOperatorsArray[i]] = true;
        }

        // register interfaces
        _ERC1820_REGISTRY.setInterfaceImplementer(address(this), keccak256("ERC777Token"), address(this));
        _ERC1820_REGISTRY.setInterfaceImplementer(address(this), keccak256("ERC20Token"), address(this));
    }

    /**
     * @dev See {IERC777-name}.
     */
    function name() public view override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC777-symbol}.
     */
    function symbol() public view override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {ERC20-decimals}.
     *
     * Always returns 18, as per the
     * [ERC777 EIP](https://eips.ethereum.org/EIPS/eip-777#backward-compatibility).
     */
    function decimals() public pure returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC777-granularity}.
     *
     * This implementation always returns `1`.
     */
    function granularity() public view override returns (uint256) {
        return 1;
    }

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

    /**
     * @dev Returns the amount of tokens owned by an account (`tokenHolder`).
     */
    function balanceOf(address tokenHolder) public view override(IERC20, IERC777) returns (uint256) {
        return _balances[tokenHolder];
    }

    /**
     * @dev See {IERC777-send}.
     *
     * Also emits a {IERC20-Transfer} event for ERC20 compatibility.
     */
    function send(address recipient, uint256 amount, bytes memory data) public override  {
        _send(msg.sender, recipient, amount, data, "", true);
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Unlike `send`, `recipient` is _not_ required to implement the {IERC777Recipient}
     * interface if it is a contract.
     *
     * Also emits a {Sent} event.
     */
    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require(recipient != address(0), "ERC777: transfer to the zero address");

        address from = msg.sender;

        _callTokensToSend(from, from, recipient, amount, "", "");

        _move(from, from, recipient, amount, "", "");

        _callTokensReceived(from, from, recipient, amount, "", "", false);

        return true;
    }

    /**
     * @dev See {IERC777-burn}.
     *
     * Also emits a {IERC20-Transfer} event for ERC20 compatibility.
     */
    function burn(uint256 amount, bytes memory data) public override  {
        _burn(msg.sender, amount, data, "");
    }

    /**
     * @dev See {IERC777-isOperatorFor}.
     */
    function isOperatorFor(
        address operator,
        address tokenHolder
    ) public view override returns (bool) {
        return operator == tokenHolder ||
            (_defaultOperators[operator] && !_revokedDefaultOperators[tokenHolder][operator]) ||
            _operators[tokenHolder][operator];
    }

    /**
     * @dev See {IERC777-authorizeOperator}.
     */
    function authorizeOperator(address operator) public override  {
        require(msg.sender != operator, "ERC777: authorizing self as operator");

        if (_defaultOperators[operator]) {
            delete _revokedDefaultOperators[msg.sender][operator];
        } else {
            _operators[msg.sender][operator] = true;
        }

        emit AuthorizedOperator(operator, msg.sender);
    }

    /**
     * @dev See {IERC777-revokeOperator}.
     */
    function revokeOperator(address operator) public override  {
        require(operator != msg.sender, "ERC777: revoking self as operator");

        if (_defaultOperators[operator]) {
            _revokedDefaultOperators[msg.sender][operator] = true;
        } else {
            delete _operators[msg.sender][operator];
        }

        emit RevokedOperator(operator, msg.sender);
    }

    /**
     * @dev See {IERC777-defaultOperators}.
     */
    function defaultOperators() public view override returns (address[] memory) {
        return _defaultOperatorsArray;
    }

    /**
     * @dev See {IERC777-operatorSend}.
     *
     * Emits {Sent} and {IERC20-Transfer} events.
     */
    function operatorSend(
        address sender,
        address recipient,
        uint256 amount,
        bytes memory data,
        bytes memory operatorData
    )
    public override
    {
        require(isOperatorFor(msg.sender, sender), "ERC777: caller is not an operator for holder");
        _send(sender, recipient, amount, data, operatorData, true);
    }

    /**
     * @dev See {IERC777-operatorBurn}.
     *
     * Emits {Burned} and {IERC20-Transfer} events.
     */
    function operatorBurn(address account, uint256 amount, bytes memory data, bytes memory operatorData) public override {
        require(isOperatorFor(msg.sender, account), "ERC777: caller is not an operator for holder");
        _burn(account, amount, data, operatorData);
    }

    /**
     * @dev See {IERC20-allowance}.
     *
     * Note that operator and allowance concepts are orthogonal: operators may
     * not have allowance, and accounts with allowance may not be operators
     * themselves.
     */
    function allowance(address holder, address spender) public view override returns (uint256) {
        return _allowances[holder][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Note that accounts cannot have allowance issued by their operators.
     */
    function approve(address spender, uint256 value) public override returns (bool) {
        address holder = msg.sender;
        _approve(holder, spender, value);
        return true;
    }

   /**
    * @dev See {IERC20-transferFrom}.
    *
    * Note that operator and allowance concepts are orthogonal: operators cannot
    * call `transferFrom` (unless they have allowance), and accounts with
    * allowance cannot call `operatorSend` (unless they are operators).
    *
    * Emits {Sent}, {IERC20-Transfer} and {IERC20-Approval} events.
    */
    function transferFrom(address holder, address recipient, uint256 amount) public override returns (bool) {
        require(recipient != address(0), "ERC777: transfer to the zero address");
        require(holder != address(0), "ERC777: transfer from the zero address");

        address spender = msg.sender;

        _callTokensToSend(spender, holder, recipient, amount, "", "");

        _move(spender, holder, recipient, amount, "", "");
        _approve(holder, spender, _allowances[holder][spender].sub(amount, "ERC777: transfer amount exceeds allowance"));

        _callTokensReceived(spender, holder, recipient, amount, "", "", false);

        return true;
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * If a send hook is registered for `account`, the corresponding function
     * will be called with `operator`, `data` and `operatorData`.
     *
     * See {IERC777Sender} and {IERC777Recipient}.
     *
     * Emits {Minted} and {IERC20-Transfer} events.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - if `account` is a contract, it must implement the {IERC777Recipient}
     * interface.
     */
    function _mint(
        address account,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    )
    internal virtual
    {
        require(account != address(0), "ERC777: mint to the zero address");

        address operator = msg.sender;

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

        // Update state variables
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);

        _callTokensReceived(operator, address(0), account, amount, userData, operatorData, true);

        emit Minted(operator, account, amount, userData, operatorData);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Send tokens
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient
     */
    function _send(
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData,
        bool requireReceptionAck
    )
        internal
    {
        require(from != address(0), "ERC777: send from the zero address");
        require(to != address(0), "ERC777: send to the zero address");

        address operator = msg.sender;

        _callTokensToSend(operator, from, to, amount, userData, operatorData);

        _move(operator, from, to, amount, userData, operatorData);

        _callTokensReceived(operator, from, to, amount, userData, operatorData, requireReceptionAck);
    }

    /**
     * @dev Burn tokens
     * @param from address token holder address
     * @param amount uint256 amount of tokens to burn
     * @param data bytes extra information provided by the token holder
     * @param operatorData bytes extra information provided by the operator (if any)
     */
    function _burn(
        address from,
        uint256 amount,
        bytes memory data,
        bytes memory operatorData
    )
        internal virtual
    {
        require(from != address(0), "ERC777: burn from the zero address");

        address operator = msg.sender;

        _beforeTokenTransfer(operator, from, address(0), amount);

        _callTokensToSend(operator, from, address(0), amount, data, operatorData);

        // Update state variables
        _balances[from] = _balances[from].sub(amount, "ERC777: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);

        emit Burned(operator, from, amount, data, operatorData);
        emit Transfer(from, address(0), amount);
    }

    function _move(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    )
        private
    {
        _beforeTokenTransfer(operator, from, to, amount);

        _balances[from] = _balances[from].sub(amount, "ERC777: transfer amount exceeds balance");
        _balances[to] = _balances[to].add(amount);

        emit Sent(operator, from, to, amount, userData, operatorData);
        emit Transfer(from, to, amount);
    }

    /**
     * @dev See {ERC20-_approve}.
     *
     * Note that accounts cannot have allowance issued by their operators.
     */
    function _approve(address holder, address spender, uint256 value) internal {
        require(holder != address(0), "ERC777: approve from the zero address");
        require(spender != address(0), "ERC777: approve to the zero address");

        _allowances[holder][spender] = value;
        emit Approval(holder, spender, value);
    }

    /**
     * @dev Call from.tokensToSend() if the interface is registered
     * @param operator address operator requesting the transfer
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     */
    function _callTokensToSend(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    )
        private
    {
        address implementer = _ERC1820_REGISTRY.getInterfaceImplementer(from, _TOKENS_SENDER_INTERFACE_HASH);
        if (implementer != address(0)) {
            IERC777Sender(implementer).tokensToSend(operator, from, to, amount, userData, operatorData);
        }
    }

    /**
     * @dev Call to.tokensReceived() if the interface is registered. Reverts if the recipient is a contract but
     * tokensReceived() was not registered for the recipient
     * @param operator address operator requesting the transfer
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient
     */
    function _callTokensReceived(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData,
        bool requireReceptionAck
    )
        private
    {
        address implementer = _ERC1820_REGISTRY.getInterfaceImplementer(to, _TOKENS_RECIPIENT_INTERFACE_HASH);
        if (implementer != address(0)) {
            IERC777Recipient(implementer).tokensReceived(operator, from, to, amount, userData, operatorData);
        } else if (requireReceptionAck) {
            require(!to.isContract(), "ERC777: token recipient contract has no implementer for ERC777TokensRecipient");
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes
     * calls to {send}, {transfer}, {operatorSend}, 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 operator, address from, address to, uint256 amount) internal virtual { }
}

// SPDX-License-Identifier: MIT



/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable {
    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 = msg.sender;
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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


contract Token is ERC777, Ownable {
    uint256 public constant _maxSupply = 5 * (10**8) * (10**18);

    modifier noOverflow(uint256 _amt) {
        require(_maxSupply >= totalSupply().add(_amt), "totalSupply overflow");
        _;
    }

    constructor() public ERC777("dMMM", "dMMM", new address[](0)) {
        return;
    }

    function mint(address _address, uint256 _amount)
        public
        noOverflow(_amount)
        onlyOwner
    {
        _mint(_address, _amount, "", "");
    }
}

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":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"tokenHolder","type":"address"}],"name":"AuthorizedOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"tokenHolder","type":"address"}],"name":"RevokedOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Sent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holder","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"authorizeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenHolder","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"defaultOperators","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"granularity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"tokenHolder","type":"address"}],"name":"isOperatorFor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"operatorBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"operatorSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"revokeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"send","outputs":[],"stateMutability":"nonpayable","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":"holder","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405180604001604052806004815260200163644d4d4d60e01b81525060405180604001604052806004815260200163644d4d4d60e01b815250600060405190808252806020026020018201604052801562000078578160200160208202803883390190505b5082516200008e90600290602086019062000296565b508151620000a490600390602085019062000296565b508051620000ba9060049060208401906200031b565b5060005b6004548110156200011a5760016005600060048481548110620000dd57fe5b6000918252602080832091909101546001600160a01b031683528201929092526040019020805460ff1916911515919091179055600101620000be565b50604080516a22a9219b9b9baa37b5b2b760a91b8152815190819003600b0181206329965a1d60e01b82523060048301819052602483019190915260448201529051731820a4b7618bde71dce8cdc73aab6c95905fad24916329965a1d91606480830192600092919082900301818387803b1580156200019957600080fd5b505af1158015620001ae573d6000803e3d6000fd5b5050604080516922a92199182a37b5b2b760b11b8152815190819003600a0181206329965a1d60e01b82523060048301819052602483019190915260448201529051731820a4b7618bde71dce8cdc73aab6c95905fad2493506329965a1d9250606480830192600092919082900301818387803b1580156200022f57600080fd5b505af115801562000244573d6000803e3d6000fd5b5050600980546001600160a01b03191633908117909155604051909550859450600093507f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09250839150a350620003c8565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002d957805160ff191683800117855562000309565b8280016001018555821562000309579182015b8281111562000309578251825591602001919060010190620002ec565b506200031792915062000381565b5090565b82805482825590600052602060002090810192821562000373579160200282015b828111156200037357825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200033c565b5062000317929150620003a1565b6200039e91905b8082111562000317576000815560010162000388565b90565b6200039e91905b80821115620003175780546001600160a01b0319168155600101620003a8565b6123bf80620003d86000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063d95b63711161007c578063d95b6371146105c1578063dd62ed3e146105ef578063f2fde38b1461061d578063fad8b32a14610643578063fc673c4f14610669578063fe9d9303146107a75761014d565b8063715018a6146104825780638da5cb5b1461048a578063959b8c3f146104ae57806395d89b41146104d45780639bd9bbc6146104dc578063a9059cbb146105955761014d565b806323b872dd1161011557806323b872dd14610289578063313ce567146102bf57806340c10f19146102dd578063556f0dc71461030b57806362ad1b831461031357806370a082311461045c5761014d565b806306e485381461015257806306fdde03146101aa578063095ea7b31461022757806318160ddd1461026757806322f4596f14610281575b600080fd5b61015a610852565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561019657818101518382015260200161017e565b505050509050019250505060405180910390f35b6101b26108b4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ec5781810151838201526020016101d4565b50505050905090810190601f1680156102195780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102536004803603604081101561023d57600080fd5b506001600160a01b03813516906020013561093e565b604080519115158252519081900360200190f35b61026f610956565b60408051918252519081900360200190f35b61026f61095c565b6102536004803603606081101561029f57600080fd5b506001600160a01b0381358116916020810135909116906040013561096c565b6102c7610ae8565b6040805160ff9092168252519081900360200190f35b610309600480360360408110156102f357600080fd5b506001600160a01b038135169060200135610aed565b005b61026f610beb565b610309600480360360a081101561032957600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561036357600080fd5b82018360208201111561037557600080fd5b803590602001918460018302840111600160201b8311171561039657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156103e857600080fd5b8201836020820111156103fa57600080fd5b803590602001918460018302840111600160201b8311171561041b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610bf0945050505050565b61026f6004803603602081101561047257600080fd5b50356001600160a01b0316610c4b565b610309610c66565b610492610d0f565b604080516001600160a01b039092168252519081900360200190f35b610309600480360360208110156104c457600080fd5b50356001600160a01b0316610d1e565b6101b2610e1f565b610309600480360360608110156104f257600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561052157600080fd5b82018360208201111561053357600080fd5b803590602001918460018302840111600160201b8311171561055457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610e80945050505050565b610253600480360360408110156105ab57600080fd5b506001600160a01b038135169060200135610e9e565b610253600480360360408110156105d757600080fd5b506001600160a01b0381358116916020013516610f70565b61026f6004803603604081101561060557600080fd5b506001600160a01b0381358116916020013516611012565b6103096004803603602081101561063357600080fd5b50356001600160a01b031661103d565b6103096004803603602081101561065957600080fd5b50356001600160a01b031661113d565b6103096004803603608081101561067f57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156106ae57600080fd5b8201836020820111156106c057600080fd5b803590602001918460018302840111600160201b831117156106e157600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561073357600080fd5b82018360208201111561074557600080fd5b803590602001918460018302840111600160201b8311171561076657600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061123e945050505050565b610309600480360360408110156107bd57600080fd5b81359190810190604081016020820135600160201b8111156107de57600080fd5b8201836020820111156107f057600080fd5b803590602001918460018302840111600160201b8311171561081157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611295945050505050565b606060048054806020026020016040519081016040528092919081815260200182805480156108aa57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161088c575b5050505050905090565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156108aa5780601f10610912576101008083540402835291602001916108aa565b820191906000526020600020905b81548152906001019060200180831161092057509395945050505050565b60003361094c8185856112b4565b5060019392505050565b60015490565b6b019d971e4fe8401e7400000081565b60006001600160a01b0383166109b35760405162461bcd60e51b81526004018080602001828103825260248152602001806122a56024913960400191505060405180910390fd5b6001600160a01b0384166109f85760405162461bcd60e51b815260040180806020018281038252602681526020018061231e6026913960400191505060405180910390fd5b6000339050610a298186868660405180602001604052806000815250604051806020016040528060008152506113a0565b610a558186868660405180602001604052806000815250604051806020016040528060008152506115e8565b610aaf8582610aaa866040518060600160405280602981526020016122f5602991396001600160a01b03808c166000908152600860209081526040808320938b1683529290522054919063ffffffff61180d16565b6112b4565b610add81868686604051806020016040528060008152506040518060200160405280600081525060006118a4565b506001949350505050565b601290565b80610b0681610afa610956565b9063ffffffff611b4416565b6b019d971e4fe8401e740000001015610b5d576040805162461bcd60e51b8152602060048201526014602482015273746f74616c537570706c79206f766572666c6f7760601b604482015290519081900360640190fd5b6009546001600160a01b03163314610bbc576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610be683836040518060200160405280600081525060405180602001604052806000815250611b9e565b505050565b600190565b610bfa3386610f70565b610c355760405162461bcd60e51b815260040180806020018281038252602c8152602001806122c9602c913960400191505060405180910390fd5b610c4485858585856001611dd7565b5050505050565b6001600160a01b031660009081526020819052604090205490565b6009546001600160a01b03163314610cc5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b6009546001600160a01b031690565b336001600160a01b0382161415610d665760405162461bcd60e51b81526004018080602001828103825260248152602001806122136024913960400191505060405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff1615610db7573360009081526007602090815260408083206001600160a01b03851684529091529020805460ff19169055610de6565b3360009081526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790555b60405133906001600160a01b038316907ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f990600090a350565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108aa5780601f10610912576101008083540402835291602001916108aa565b610be633848484604051806020016040528060008152506001611dd7565b60006001600160a01b038316610ee55760405162461bcd60e51b81526004018080602001828103825260248152602001806122a56024913960400191505060405180910390fd5b6000339050610f168182868660405180602001604052806000815250604051806020016040528060008152506113a0565b610f428182868660405180602001604052806000815250604051806020016040528060008152506115e8565b61094c81828686604051806020016040528060008152506040518060200160405280600081525060006118a4565b6000816001600160a01b0316836001600160a01b03161480610fdb57506001600160a01b03831660009081526005602052604090205460ff168015610fdb57506001600160a01b0380831660009081526007602090815260408083209387168352929052205460ff16155b8061100b57506001600160a01b0380831660009081526006602090815260408083209387168352929052205460ff165b9392505050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b6009546001600160a01b0316331461109c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166110e15760405162461bcd60e51b81526004018080602001828103825260268152602001806121cb6026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381163314156111855760405162461bcd60e51b81526004018080602001828103825260218152602001806122376021913960400191505060405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff16156111d9573360009081526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611205565b3360009081526006602090815260408083206001600160a01b03851684529091529020805460ff191690555b60405133906001600160a01b038316907f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa190600090a350565b6112483385610f70565b6112835760405162461bcd60e51b815260040180806020018281038252602c8152602001806122c9602c913960400191505060405180910390fd5b61128f84848484611ea3565b50505050565b6112b033838360405180602001604052806000815250611ea3565b5050565b6001600160a01b0383166112f95760405162461bcd60e51b815260040180806020018281038252602581526020018061215d6025913960400191505060405180910390fd5b6001600160a01b03821661133e5760405162461bcd60e51b81526004018080602001828103825260238152602001806123676023913960400191505060405180910390fd5b6001600160a01b03808416600081815260086020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6040805163555ddc6560e11b81526001600160a01b03871660048201527f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe89560248201529051600091731820a4b7618bde71dce8cdc73aab6c95905fad249163aabbb8ca91604480820192602092909190829003018186803b15801561142457600080fd5b505afa158015611438573d6000803e3d6000fd5b505050506040513d602081101561144e57600080fd5b505190506001600160a01b038116156115df57806001600160a01b03166375ab97828888888888886040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156115145781810151838201526020016114fc565b50505050905090810190601f1680156115415780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561157457818101518382015260200161155c565b50505050905090810190601f1680156115a15780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b1580156115c657600080fd5b505af11580156115da573d6000803e3d6000fd5b505050505b50505050505050565b6115f48686868661128f565b611637836040518060600160405280602781526020016121a4602791396001600160a01b038816600090815260208190526040902054919063ffffffff61180d16565b6001600160a01b03808716600090815260208190526040808220939093559086168152205461166c908463ffffffff611b4416565b600080866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b0316876001600160a01b03167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc82614677987868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561171d578181015183820152602001611705565b50505050905090810190601f16801561174a5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561177d578181015183820152602001611765565b50505050905090810190601f1680156117aa5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a4836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050565b6000818484111561189c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611861578181015183820152602001611849565b50505050905090810190601f16801561188e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6040805163555ddc6560e11b81526001600160a01b03871660048201527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248201529051600091731820a4b7618bde71dce8cdc73aab6c95905fad249163aabbb8ca91604480820192602092909190829003018186803b15801561192857600080fd5b505afa15801561193c573d6000803e3d6000fd5b505050506040513d602081101561195257600080fd5b505190506001600160a01b03811615611ae657806001600160a01b03166223de298989898989896040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611a175781810151838201526020016119ff565b50505050905090810190601f168015611a445780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611a77578181015183820152602001611a5f565b50505050905090810190601f168015611aa45780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b158015611ac957600080fd5b505af1158015611add573d6000803e3d6000fd5b50505050611b3a565b8115611b3a57611afe866001600160a01b03166120de565b15611b3a5760405162461bcd60e51b815260040180806020018281038252604d815260200180612258604d913960600191505060405180910390fd5b5050505050505050565b60008282018381101561100b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038416611bf9576040805162461bcd60e51b815260206004820181905260248201527f4552433737373a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b33611c07816000878761128f565b600154611c1a908563ffffffff611b4416565b6001556001600160a01b038516600090815260208190526040902054611c46908563ffffffff611b4416565b6001600160a01b038616600090815260208190526040812091909155611c739082908787878760016118a4565b846001600160a01b0316816001600160a01b03167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611cf2578181015183820152602001611cda565b50505050905090810190601f168015611d1f5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611d52578181015183820152602001611d3a565b50505050905090810190601f168015611d7f5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805185815290516001600160a01b038716916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b6001600160a01b038616611e1c5760405162461bcd60e51b81526004018080602001828103825260228152602001806121826022913960400191505060405180910390fd5b6001600160a01b038516611e77576040805162461bcd60e51b815260206004820181905260248201527f4552433737373a2073656e6420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b33611e868188888888886113a0565b611e948188888888886115e8565b6115df818888888888886118a4565b6001600160a01b038416611ee85760405162461bcd60e51b81526004018080602001828103825260228152602001806121f16022913960400191505060405180910390fd5b33611ef6818660008761128f565b611f05818660008787876113a0565b611f4884604051806060016040528060238152602001612344602391396001600160a01b038816600090815260208190526040902054919063ffffffff61180d16565b6001600160a01b038616600090815260208190526040902055600154611f74908563ffffffff61211a16565b600181905550846001600160a01b0316816001600160a01b03167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a4098868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611ff9578181015183820152602001611fe1565b50505050905090810190601f1680156120265780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015612059578181015183820152602001612041565b50505050905090810190601f1680156120865780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805185815290516000916001600160a01b038816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061211257508115155b949350505050565b600061100b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061180d56fe4552433737373a20617070726f76652066726f6d20746865207a65726f20616464726573734552433737373a2073656e642066726f6d20746865207a65726f20616464726573734552433737373a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433737373a206275726e2066726f6d20746865207a65726f20616464726573734552433737373a20617574686f72697a696e672073656c66206173206f70657261746f724552433737373a207265766f6b696e672073656c66206173206f70657261746f724552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e744552433737373a207472616e7366657220746f20746865207a65726f20616464726573734552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f7220666f7220686f6c6465724552433737373a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654552433737373a207472616e736665722066726f6d20746865207a65726f20616464726573734552433737373a206275726e20616d6f756e7420657863656564732062616c616e63654552433737373a20617070726f766520746f20746865207a65726f2061646472657373a264697066735822122014cd87c310e354b05781bd844d4e809fd79b76f34614b50017295ab5fe4b35d264736f6c63430006020033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063d95b63711161007c578063d95b6371146105c1578063dd62ed3e146105ef578063f2fde38b1461061d578063fad8b32a14610643578063fc673c4f14610669578063fe9d9303146107a75761014d565b8063715018a6146104825780638da5cb5b1461048a578063959b8c3f146104ae57806395d89b41146104d45780639bd9bbc6146104dc578063a9059cbb146105955761014d565b806323b872dd1161011557806323b872dd14610289578063313ce567146102bf57806340c10f19146102dd578063556f0dc71461030b57806362ad1b831461031357806370a082311461045c5761014d565b806306e485381461015257806306fdde03146101aa578063095ea7b31461022757806318160ddd1461026757806322f4596f14610281575b600080fd5b61015a610852565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561019657818101518382015260200161017e565b505050509050019250505060405180910390f35b6101b26108b4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ec5781810151838201526020016101d4565b50505050905090810190601f1680156102195780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102536004803603604081101561023d57600080fd5b506001600160a01b03813516906020013561093e565b604080519115158252519081900360200190f35b61026f610956565b60408051918252519081900360200190f35b61026f61095c565b6102536004803603606081101561029f57600080fd5b506001600160a01b0381358116916020810135909116906040013561096c565b6102c7610ae8565b6040805160ff9092168252519081900360200190f35b610309600480360360408110156102f357600080fd5b506001600160a01b038135169060200135610aed565b005b61026f610beb565b610309600480360360a081101561032957600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561036357600080fd5b82018360208201111561037557600080fd5b803590602001918460018302840111600160201b8311171561039657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156103e857600080fd5b8201836020820111156103fa57600080fd5b803590602001918460018302840111600160201b8311171561041b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610bf0945050505050565b61026f6004803603602081101561047257600080fd5b50356001600160a01b0316610c4b565b610309610c66565b610492610d0f565b604080516001600160a01b039092168252519081900360200190f35b610309600480360360208110156104c457600080fd5b50356001600160a01b0316610d1e565b6101b2610e1f565b610309600480360360608110156104f257600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561052157600080fd5b82018360208201111561053357600080fd5b803590602001918460018302840111600160201b8311171561055457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610e80945050505050565b610253600480360360408110156105ab57600080fd5b506001600160a01b038135169060200135610e9e565b610253600480360360408110156105d757600080fd5b506001600160a01b0381358116916020013516610f70565b61026f6004803603604081101561060557600080fd5b506001600160a01b0381358116916020013516611012565b6103096004803603602081101561063357600080fd5b50356001600160a01b031661103d565b6103096004803603602081101561065957600080fd5b50356001600160a01b031661113d565b6103096004803603608081101561067f57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156106ae57600080fd5b8201836020820111156106c057600080fd5b803590602001918460018302840111600160201b831117156106e157600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561073357600080fd5b82018360208201111561074557600080fd5b803590602001918460018302840111600160201b8311171561076657600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061123e945050505050565b610309600480360360408110156107bd57600080fd5b81359190810190604081016020820135600160201b8111156107de57600080fd5b8201836020820111156107f057600080fd5b803590602001918460018302840111600160201b8311171561081157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611295945050505050565b606060048054806020026020016040519081016040528092919081815260200182805480156108aa57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161088c575b5050505050905090565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156108aa5780601f10610912576101008083540402835291602001916108aa565b820191906000526020600020905b81548152906001019060200180831161092057509395945050505050565b60003361094c8185856112b4565b5060019392505050565b60015490565b6b019d971e4fe8401e7400000081565b60006001600160a01b0383166109b35760405162461bcd60e51b81526004018080602001828103825260248152602001806122a56024913960400191505060405180910390fd5b6001600160a01b0384166109f85760405162461bcd60e51b815260040180806020018281038252602681526020018061231e6026913960400191505060405180910390fd5b6000339050610a298186868660405180602001604052806000815250604051806020016040528060008152506113a0565b610a558186868660405180602001604052806000815250604051806020016040528060008152506115e8565b610aaf8582610aaa866040518060600160405280602981526020016122f5602991396001600160a01b03808c166000908152600860209081526040808320938b1683529290522054919063ffffffff61180d16565b6112b4565b610add81868686604051806020016040528060008152506040518060200160405280600081525060006118a4565b506001949350505050565b601290565b80610b0681610afa610956565b9063ffffffff611b4416565b6b019d971e4fe8401e740000001015610b5d576040805162461bcd60e51b8152602060048201526014602482015273746f74616c537570706c79206f766572666c6f7760601b604482015290519081900360640190fd5b6009546001600160a01b03163314610bbc576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610be683836040518060200160405280600081525060405180602001604052806000815250611b9e565b505050565b600190565b610bfa3386610f70565b610c355760405162461bcd60e51b815260040180806020018281038252602c8152602001806122c9602c913960400191505060405180910390fd5b610c4485858585856001611dd7565b5050505050565b6001600160a01b031660009081526020819052604090205490565b6009546001600160a01b03163314610cc5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b6009546001600160a01b031690565b336001600160a01b0382161415610d665760405162461bcd60e51b81526004018080602001828103825260248152602001806122136024913960400191505060405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff1615610db7573360009081526007602090815260408083206001600160a01b03851684529091529020805460ff19169055610de6565b3360009081526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790555b60405133906001600160a01b038316907ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f990600090a350565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108aa5780601f10610912576101008083540402835291602001916108aa565b610be633848484604051806020016040528060008152506001611dd7565b60006001600160a01b038316610ee55760405162461bcd60e51b81526004018080602001828103825260248152602001806122a56024913960400191505060405180910390fd5b6000339050610f168182868660405180602001604052806000815250604051806020016040528060008152506113a0565b610f428182868660405180602001604052806000815250604051806020016040528060008152506115e8565b61094c81828686604051806020016040528060008152506040518060200160405280600081525060006118a4565b6000816001600160a01b0316836001600160a01b03161480610fdb57506001600160a01b03831660009081526005602052604090205460ff168015610fdb57506001600160a01b0380831660009081526007602090815260408083209387168352929052205460ff16155b8061100b57506001600160a01b0380831660009081526006602090815260408083209387168352929052205460ff165b9392505050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b6009546001600160a01b0316331461109c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166110e15760405162461bcd60e51b81526004018080602001828103825260268152602001806121cb6026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381163314156111855760405162461bcd60e51b81526004018080602001828103825260218152602001806122376021913960400191505060405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff16156111d9573360009081526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611205565b3360009081526006602090815260408083206001600160a01b03851684529091529020805460ff191690555b60405133906001600160a01b038316907f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa190600090a350565b6112483385610f70565b6112835760405162461bcd60e51b815260040180806020018281038252602c8152602001806122c9602c913960400191505060405180910390fd5b61128f84848484611ea3565b50505050565b6112b033838360405180602001604052806000815250611ea3565b5050565b6001600160a01b0383166112f95760405162461bcd60e51b815260040180806020018281038252602581526020018061215d6025913960400191505060405180910390fd5b6001600160a01b03821661133e5760405162461bcd60e51b81526004018080602001828103825260238152602001806123676023913960400191505060405180910390fd5b6001600160a01b03808416600081815260086020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6040805163555ddc6560e11b81526001600160a01b03871660048201527f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe89560248201529051600091731820a4b7618bde71dce8cdc73aab6c95905fad249163aabbb8ca91604480820192602092909190829003018186803b15801561142457600080fd5b505afa158015611438573d6000803e3d6000fd5b505050506040513d602081101561144e57600080fd5b505190506001600160a01b038116156115df57806001600160a01b03166375ab97828888888888886040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156115145781810151838201526020016114fc565b50505050905090810190601f1680156115415780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561157457818101518382015260200161155c565b50505050905090810190601f1680156115a15780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b1580156115c657600080fd5b505af11580156115da573d6000803e3d6000fd5b505050505b50505050505050565b6115f48686868661128f565b611637836040518060600160405280602781526020016121a4602791396001600160a01b038816600090815260208190526040902054919063ffffffff61180d16565b6001600160a01b03808716600090815260208190526040808220939093559086168152205461166c908463ffffffff611b4416565b600080866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b0316876001600160a01b03167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc82614677987868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561171d578181015183820152602001611705565b50505050905090810190601f16801561174a5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561177d578181015183820152602001611765565b50505050905090810190601f1680156117aa5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a4836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050565b6000818484111561189c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611861578181015183820152602001611849565b50505050905090810190601f16801561188e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6040805163555ddc6560e11b81526001600160a01b03871660048201527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248201529051600091731820a4b7618bde71dce8cdc73aab6c95905fad249163aabbb8ca91604480820192602092909190829003018186803b15801561192857600080fd5b505afa15801561193c573d6000803e3d6000fd5b505050506040513d602081101561195257600080fd5b505190506001600160a01b03811615611ae657806001600160a01b03166223de298989898989896040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611a175781810151838201526020016119ff565b50505050905090810190601f168015611a445780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611a77578181015183820152602001611a5f565b50505050905090810190601f168015611aa45780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b158015611ac957600080fd5b505af1158015611add573d6000803e3d6000fd5b50505050611b3a565b8115611b3a57611afe866001600160a01b03166120de565b15611b3a5760405162461bcd60e51b815260040180806020018281038252604d815260200180612258604d913960600191505060405180910390fd5b5050505050505050565b60008282018381101561100b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038416611bf9576040805162461bcd60e51b815260206004820181905260248201527f4552433737373a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b33611c07816000878761128f565b600154611c1a908563ffffffff611b4416565b6001556001600160a01b038516600090815260208190526040902054611c46908563ffffffff611b4416565b6001600160a01b038616600090815260208190526040812091909155611c739082908787878760016118a4565b846001600160a01b0316816001600160a01b03167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611cf2578181015183820152602001611cda565b50505050905090810190601f168015611d1f5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611d52578181015183820152602001611d3a565b50505050905090810190601f168015611d7f5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805185815290516001600160a01b038716916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b6001600160a01b038616611e1c5760405162461bcd60e51b81526004018080602001828103825260228152602001806121826022913960400191505060405180910390fd5b6001600160a01b038516611e77576040805162461bcd60e51b815260206004820181905260248201527f4552433737373a2073656e6420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b33611e868188888888886113a0565b611e948188888888886115e8565b6115df818888888888886118a4565b6001600160a01b038416611ee85760405162461bcd60e51b81526004018080602001828103825260228152602001806121f16022913960400191505060405180910390fd5b33611ef6818660008761128f565b611f05818660008787876113a0565b611f4884604051806060016040528060238152602001612344602391396001600160a01b038816600090815260208190526040902054919063ffffffff61180d16565b6001600160a01b038616600090815260208190526040902055600154611f74908563ffffffff61211a16565b600181905550846001600160a01b0316816001600160a01b03167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a4098868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611ff9578181015183820152602001611fe1565b50505050905090810190601f1680156120265780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015612059578181015183820152602001612041565b50505050905090810190601f1680156120865780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805185815290516000916001600160a01b038816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061211257508115155b949350505050565b600061100b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061180d56fe4552433737373a20617070726f76652066726f6d20746865207a65726f20616464726573734552433737373a2073656e642066726f6d20746865207a65726f20616464726573734552433737373a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433737373a206275726e2066726f6d20746865207a65726f20616464726573734552433737373a20617574686f72697a696e672073656c66206173206f70657261746f724552433737373a207265766f6b696e672073656c66206173206f70657261746f724552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e744552433737373a207472616e7366657220746f20746865207a65726f20616464726573734552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f7220666f7220686f6c6465724552433737373a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654552433737373a207472616e736665722066726f6d20746865207a65726f20616464726573734552433737373a206275726e20616d6f756e7420657863656564732062616c616e63654552433737373a20617070726f766520746f20746865207a65726f2061646472657373a264697066735822122014cd87c310e354b05781bd844d4e809fd79b76f34614b50017295ab5fe4b35d264736f6c63430006020033

Deployed Bytecode Sourcemap

48162:519:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48162:519:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35369:124;;;:::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;35369:124:0;;;;;;;;;;;;;;;;;31572:92;;;:::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;31572:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36940:191;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36940:191:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;32366:117;;;:::i;:::-;;;;;;;;;;;;;;;;48203:59;;;:::i;37507:684::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;37507:684:0;;;;;;;;;;;;;;;;;:::i;32013:76::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48509:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;48509:169:0;;;;;;;;:::i;:::-;;32211:89;;;:::i;35619:375::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;35619:375:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;35619:375:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;35619:375:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;35619:375:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;35619:375:0;;;;;;;;-1:-1:-1;35619:375:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;35619:375:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;35619:375:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;35619:375:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;35619:375:0;;-1:-1:-1;35619:375:0;;-1:-1:-1;;;;;35619:375:0:i;32588:144::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32588:144:0;-1:-1:-1;;;;;32588:144:0;;:::i;47606:148::-;;;:::i;46966:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;46966:79:0;;;;;;;;;;;;;;34424:407;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34424:407:0;-1:-1:-1;;;;;34424:407:0;;:::i;31725:96::-;;;:::i;32869:156::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;32869:156:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;32869:156:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;32869:156:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;32869:156:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;32869:156:0;;-1:-1:-1;32869:156:0;;-1:-1:-1;;;;;32869:156:0:i;33266:441::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;33266:441:0;;;;;;;;:::i;34032:320::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;34032:320:0;;;;;;;;;;:::i;36650:145::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36650:145:0;;;;;;;;;;:::i;47909:244::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;47909:244:0;-1:-1:-1;;;;;47909:244:0;;:::i;34900:398::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34900:398:0;-1:-1:-1;;;;;34900:398:0;;:::i;36122:280::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;36122:280:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;36122:280:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;36122:280:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;36122:280:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;36122:280:0;;;;;;;;-1:-1:-1;36122:280:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;36122:280:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;36122:280:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;36122:280:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;36122:280:0;;-1:-1:-1;36122:280:0;;-1:-1:-1;;;;;36122:280:0:i;33844:120::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33844:120:0;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;33844:120:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;33844:120:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;33844:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;33844:120:0;;-1:-1:-1;33844:120:0;;-1:-1:-1;;;;;33844:120:0:i;35369:124::-;35427:16;35463:22;35456:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35456:29:0;;;;;;;;;;;;;;;;;;;;;;;35369:124;:::o;31572:92::-;31651:5;31644:12;;;;;;;-1:-1:-1;;31644:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31618:13;;31644:12;;31651:5;;31644:12;;31651:5;31644:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31644:12:0;;31572:92;-1:-1:-1;;;;;31572:92:0:o;36940:191::-;37014:4;37048:10;37069:32;37048:10;37086:7;37095:5;37069:8;:32::i;:::-;-1:-1:-1;37119:4:0;;36940:191;-1:-1:-1;;;36940:191:0:o;32366:117::-;32463:12;;32366:117;:::o;48203:59::-;48240:22;48203:59;:::o;37507:684::-;37605:4;-1:-1:-1;;;;;37630:23:0;;37622:72;;;;-1:-1:-1;;;37622:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37713:20:0;;37705:71;;;;-1:-1:-1;;;37705:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37789:15;37807:10;37789:28;;37830:61;37848:7;37857:6;37865:9;37876:6;37830:61;;;;;;;;;;;;;;;;;;;;;;;;:17;:61::i;:::-;37904:49;37910:7;37919:6;37927:9;37938:6;37904:49;;;;;;;;;;;;;;;;;;;;;;;;:5;:49::i;:::-;37964:112;37973:6;37981:7;37990:85;38023:6;37990:85;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37990:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;:85;;:32;:85;:::i;:::-;37964:8;:112::i;:::-;38089:70;38109:7;38118:6;38126:9;38137:6;38089:70;;;;;;;;;;;;;;;;;;;;;;;;38153:5;38089:19;:70::i;:::-;-1:-1:-1;38179:4:0;;37507:684;-1:-1:-1;;;;37507:684:0:o;32013:76::-;32079:2;32013:76;:::o;48509:169::-;48594:7;48338:23;48356:4;48338:13;:11;:13::i;:::-;:17;:23;:17;:23;:::i;:::-;48240:22;48324:37;;48316:70;;;;;-1:-1:-1;;;48316:70:0;;;;;;;;;;;;-1:-1:-1;;;48316:70:0;;;;;;;;;;;;;;;47178:6:::1;::::0;-1:-1:-1;;;;;47178:6:0::1;47188:10;47178:20;47170:65;;;::::0;;-1:-1:-1;;;47170:65:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48638:32:::2;48644:8;48654:7;48638:32;;;;;;;;;;;::::0;::::2;;;;;;;;;;;::::0;:5:::2;:32::i;:::-;48509:169:::0;;;:::o;32211:89::-;32291:1;32211:89;:::o;35619:375::-;35835:33;35849:10;35861:6;35835:13;:33::i;:::-;35827:90;;;;-1:-1:-1;;;35827:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35928:58;35934:6;35942:9;35953:6;35961:4;35967:12;35981:4;35928:5;:58::i;:::-;35619:375;;;;;:::o;32588:144::-;-1:-1:-1;;;;;32702:22:0;32675:7;32702:22;;;;;;;;;;;;32588:144::o;47606:148::-;47178:6;;-1:-1:-1;;;;;47178:6:0;47188:10;47178:20;47170:65;;;;;-1:-1:-1;;;47170:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47697:6:::1;::::0;47676:40:::1;::::0;47713:1:::1;::::0;-1:-1:-1;;;;;47697:6:0::1;::::0;47676:40:::1;::::0;47713:1;;47676:40:::1;47727:6;:19:::0;;-1:-1:-1;;;;;;47727:19:0::1;::::0;;47606:148::o;46966:79::-;47031:6;;-1:-1:-1;;;;;47031:6:0;46966:79;:::o;34424:407::-;34505:10;-1:-1:-1;;;;;34505:22:0;;;;34497:71;;;;-1:-1:-1;;;34497:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34585:27:0;;;;;;:17;:27;;;;;;;;34581:185;;;34661:10;34636:36;;;;:24;:36;;;;;;;;-1:-1:-1;;;;;34636:46:0;;;;;;;;;34629:53;;-1:-1:-1;;34629:53:0;;;34581:185;;;34726:10;34715:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;34715:32:0;;;;;;;;;:39;;-1:-1:-1;;34715:39:0;34750:4;34715:39;;;34581:185;34783:40;;34812:10;;-1:-1:-1;;;;;34783:40:0;;;;;;;;34424:407;:::o;31725:96::-;31806:7;31799:14;;;;;;;;-1:-1:-1;;31799:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31773:13;;31799:14;;31806:7;;31799:14;;31806:7;31799:14;;;;;;;;;;;;;;;;;;;;;;;;32869:156;32965:52;32971:10;32983:9;32994:6;33002:4;32965:52;;;;;;;;;;;;33012:4;32965:5;:52::i;33266:441::-;33344:4;-1:-1:-1;;;;;33369:23:0;;33361:72;;;;-1:-1:-1;;;33361:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33446:12;33461:10;33446:25;;33484:56;33502:4;33508;33514:9;33525:6;33484:56;;;;;;;;;;;;;;;;;;;;;;;;:17;:56::i;:::-;33553:44;33559:4;33565;33571:9;33582:6;33553:44;;;;;;;;;;;;;;;;;;;;;;;;:5;:44::i;:::-;33610:65;33630:4;33636;33642:9;33653:6;33610:65;;;;;;;;;;;;;;;;;;;;;;;;33669:5;33610:19;:65::i;34032:320::-;34149:4;34185:11;-1:-1:-1;;;;;34173:23:0;:8;-1:-1:-1;;;;;34173:23:0;;:121;;;-1:-1:-1;;;;;;34214:27:0;;;;;;:17;:27;;;;;;;;:79;;;;-1:-1:-1;;;;;;34246:37:0;;;;;;;:24;:37;;;;;;;;:47;;;;;;;;;;;;34245:48;34214:79;34173:171;;;-1:-1:-1;;;;;;34311:23:0;;;;;;;:10;:23;;;;;;;;:33;;;;;;;;;;;;34173:171;34166:178;34032:320;-1:-1:-1;;;34032:320:0:o;36650:145::-;-1:-1:-1;;;;;36759:19:0;;;36732:7;36759:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;36650:145::o;47909:244::-;47178:6;;-1:-1:-1;;;;;47178:6:0;47188:10;47178:20;47170:65;;;;;-1:-1:-1;;;47170:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47998:22:0;::::1;47990:73;;;;-1:-1:-1::0;;;47990:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48100:6;::::0;48079:38:::1;::::0;-1:-1:-1;;;;;48079:38:0;;::::1;::::0;48100:6:::1;::::0;48079:38:::1;::::0;48100:6:::1;::::0;48079:38:::1;48128:6;:17:::0;;-1:-1:-1;;;;;;48128:17:0::1;-1:-1:-1::0;;;;;48128:17:0;;;::::1;::::0;;;::::1;::::0;;47909:244::o;34900:398::-;-1:-1:-1;;;;;34978:22:0;;34990:10;34978:22;;34970:68;;;;-1:-1:-1;;;34970:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35055:27:0;;;;;;:17;:27;;;;;;;;35051:185;;;35124:10;35099:36;;;;:24;:36;;;;;;;;-1:-1:-1;;;;;35099:46:0;;;;;;;;;:53;;-1:-1:-1;;35099:53:0;35148:4;35099:53;;;35051:185;;;35203:10;35192:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;35192:32:0;;;;;;;;;35185:39;;-1:-1:-1;;35185:39:0;;;35051:185;35253:37;;35279:10;;-1:-1:-1;;;;;35253:37:0;;;;;;;;34900:398;:::o;36122:280::-;36258:34;36272:10;36284:7;36258:13;:34::i;:::-;36250:91;;;;-1:-1:-1;;;36250:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36352:42;36358:7;36367:6;36375:4;36381:12;36352:5;:42::i;:::-;36122:280;;;;:::o;33844:120::-;33921:35;33927:10;33939:6;33947:4;33921:35;;;;;;;;;;;;:5;:35::i;:::-;33844:120;;:::o;42441:341::-;-1:-1:-1;;;;;42535:20:0;;42527:70;;;;-1:-1:-1;;;42527:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42616:21:0;;42608:69;;;;-1:-1:-1;;;42608:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42690:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;:36;;;42742:32;;;;;;;;;;;;;;;;;42441:341;;;:::o;43266:498::-;43519:78;;;-1:-1:-1;;;43519:78:0;;-1:-1:-1;;;;;43519:78:0;;;;;;29907:66;43519:78;;;;;;43497:19;;29428:42;;43519:41;;:78;;;;;;;;;;;;;;;29428:42;43519:78;;;5:2:-1;;;;30:1;27;20:12;5:2;43519:78:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43519:78:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43519:78:0;;-1:-1:-1;;;;;;43612:25:0;;;43608:149;;43668:11;-1:-1:-1;;;;;43654:39:0;;43694:8;43704:4;43710:2;43714:6;43722:8;43732:12;43654:91;;;;;;;;;;;;;-1:-1:-1;;;;;43654:91:0;-1:-1:-1;;;;;43654:91:0;;;;;;-1:-1:-1;;;;;43654:91:0;-1:-1:-1;;;;;43654:91:0;;;;;;-1:-1:-1;;;;;43654:91:0;-1:-1:-1;;;;;43654:91: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;43654:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43654:91: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;43654:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43654:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43654:91:0;;;;43608:149;43266:498;;;;;;;:::o;41752:544::-;41971:48;41992:8;42002:4;42008:2;42012:6;41971:20;:48::i;:::-;42050:70;42070:6;42050:70;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42050:15:0;;:9;:15;;;;;;;;;;;;:70;;:19;:70;:::i;:::-;-1:-1:-1;;;;;42032:15:0;;;:9;:15;;;;;;;;;;;:88;;;;42147:13;;;;;;;:25;;42165:6;42147:25;:17;:25;:::i;:::-;42131:9;:13;42141:2;-1:-1:-1;;;;;42131:13:0;-1:-1:-1;;;;;42131:13:0;;;;;;;;;;;;:41;;;;42211:2;-1:-1:-1;;;;;42190:56:0;42205:4;-1:-1:-1;;;;;42190:56:0;42195:8;-1:-1:-1;;;;;42190:56:0;;42215:6;42223:8;42233:12;42190:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;42190:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42190:56: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;42190:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42277:2;-1:-1:-1;;;;;42262:26:0;42271:4;-1:-1:-1;;;;;42262:26:0;;42281:6;42262:26;;;;;;;;;;;;;;;;;;41752:544;;;;;;:::o;13768:192::-;13854:7;13890:12;13882:6;;;;13874:29;;;;-1:-1:-1;;;13874: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;13874:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;13926:5:0;;;13768:192::o;44466:705::-;44756:79;;;-1:-1:-1;;;44756:79:0;;-1:-1:-1;;;;;44756:79:0;;;;;;30094:66;44756:79;;;;;;44734:19;;29428:42;;44756:41;;:79;;;;;;;;;;;;;;;29428:42;44756:79;;;5:2:-1;;;;30:1;27;20:12;5:2;44756:79:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44756:79:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44756:79:0;;-1:-1:-1;;;;;;44850:25:0;;;44846:318;;44909:11;-1:-1:-1;;;;;44892:44:0;;44937:8;44947:4;44953:2;44957:6;44965:8;44975:12;44892:96;;;;;;;;;;;;;-1:-1:-1;;;;;44892:96:0;-1:-1:-1;;;;;44892:96:0;;;;;;-1:-1:-1;;;;;44892:96:0;-1:-1:-1;;;;;44892:96:0;;;;;;-1:-1:-1;;;;;44892:96:0;-1:-1:-1;;;;;44892:96: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;44892:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44892:96: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;44892:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44892:96:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44892:96:0;;;;44846:318;;;45010:19;45006:158;;;45055:15;:2;-1:-1:-1;;;;;45055:13:0;;:15::i;:::-;45054:16;45046:106;;;;-1:-1:-1;;;45046:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44466:705;;;;;;;;:::o;12865:181::-;12923:7;12955:5;;;12979:6;;;;12971:46;;;;;-1:-1:-1;;;12971:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;38780:745;-1:-1:-1;;;;;38967:21:0;;38959:66;;;;;-1:-1:-1;;;38959:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39057:10;39080:59;39057:10;39038:16;39123:7;39132:6;39080:20;:59::i;:::-;39202:12;;:24;;39219:6;39202:24;:16;:24;:::i;:::-;39187:12;:39;-1:-1:-1;;;;;39258:18:0;;:9;:18;;;;;;;;;;;:30;;39281:6;39258:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;39237:18:0;;:9;:18;;;;;;;;;;:51;;;;39301:88;;39321:8;;39247:7;39352:6;39360:8;39370:12;39384:4;39301:19;:88::i;:::-;39424:7;-1:-1:-1;;;;;39407:57:0;39414:8;-1:-1:-1;;;;;39407:57:0;;39433:6;39441:8;39451:12;39407:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;39407:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39407:57: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;39407:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39480:37;;;;;;;;-1:-1:-1;;;;;39480:37:0;;;39497:1;;39480:37;;;;;;;;;38780:745;;;;;:::o;40012:672::-;-1:-1:-1;;;;;40248:18:0;;40240:65;;;;-1:-1:-1;;;40240:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40324:16:0;;40316:61;;;;;-1:-1:-1;;;40316:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40409:10;40432:69;40409:10;40460:4;40466:2;40470:6;40478:8;40488:12;40432:17;:69::i;:::-;40514:57;40520:8;40530:4;40536:2;40540:6;40548:8;40558:12;40514:5;:57::i;:::-;40584:92;40604:8;40614:4;40620:2;40624:6;40632:8;40642:12;40656:19;40584;:92::i;40998:746::-;-1:-1:-1;;;;;41182:18:0;;41174:65;;;;-1:-1:-1;;;41174:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41271:10;41294:56;41271:10;41325:4;41252:16;41343:6;41294:20;:56::i;:::-;41363:73;41381:8;41391:4;41405:1;41409:6;41417:4;41423:12;41363:17;:73::i;:::-;41502:66;41522:6;41502:66;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41502:15:0;;:9;:15;;;;;;;;;;;;:66;;:19;:66;:::i;:::-;-1:-1:-1;;;;;41484:15:0;;:9;:15;;;;;;;;;;:84;41594:12;;:24;;41611:6;41594:24;:16;:24;:::i;:::-;41579:12;:39;;;;41653:4;-1:-1:-1;;;;;41636:50:0;41643:8;-1:-1:-1;;;;;41636:50:0;;41659:6;41667:4;41673:12;41636:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;41636:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41636:50: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;41636:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41702:34;;;;;;;;41725:1;;-1:-1:-1;;;;;41702:34:0;;;;;;;;;;;;40998:746;;;;;:::o;18190:619::-;18250:4;18718:20;;18561:66;18758:23;;;;;;:42;;-1:-1:-1;18785:15:0;;;18758:42;18750:51;18190:619;-1:-1:-1;;;;18190:619:0:o;13329:136::-;13387:7;13414:43;13418:1;13421;13414:43;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

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