ETH Price: $2,992.07 (+3.79%)
Gas: 3 Gwei

Token

Lion DAO Legend (LGND)
 

Overview

Max Total Supply

111 LGND

Holders

93

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x691c415200dc6bb0200856e9ed7c146411077fc0
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LIONDAO

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-04
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

///
/// @dev Interface for the NFT Royalty Standard
///
interface IEIP2981 {
    /// ERC165 bytes to add to interface array - set in parent contract
    /// implementing this standard
    ///
    /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a

    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _salePrice - the sale price of the NFT asset specified by _tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for _salePrice
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver,uint256 royaltyAmount);
}

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}
/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}
/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}
/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

        (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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        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

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}
contract EIP2981 is IEIP2981, ERC165 {

    address internal royaltyAddr;
    uint256 internal royaltyPerc; // percentage in basis (out of 10,000)

    /**
    *   @notice constructor
    *   @dev need inheriting contracts to accept the parameters in their constructor
    *   @param addr is the royalty payout address
    *   @param perc is the royalty percentage, multiplied by 1000. Ex: 7.5% => 750
    */
    constructor(address addr, uint256 perc) {
        royaltyAddr = addr;
        royaltyPerc = perc;
    }

    /**
    *   @notice override ERC 165 implementation of this function
    *   @dev if using this contract with another contract that suppports ERC 265, will have to override in the inheriting contract
    */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165) returns (bool) {
        return interfaceId == type(IEIP2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
    *   @notice EIP 2981 royalty support
    *   @dev royalty payout made to the owner of the contract and the owner can't be the 0 address
    *   @dev royalty amount determined when contract is deployed, and then divided by 1000 in this function
    *   @dev royalty amount not dependent on _tokenId
    */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver, uint256 royaltyAmount) {
        require(royaltyAddr != address(0));
        return (royaltyAddr, royaltyPerc * _salePrice / 10000);
    }
}
/**
 * @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.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * 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[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

contract LIONDAO is ERC1155, EIP2981, Ownable  {
    using Strings for uint256;

    string public name = "Lion DAO Legend";
    string public symbol = "LGND";
    uint256 public currentSupply = 0;
    uint256 public maxTotalSupply = 111;

    constructor(address _royaltyRecipient, uint256 _royaltyAmount) EIP2981(_royaltyRecipient, _royaltyAmount) ERC1155("ipfs://QmZv5444uaSCA1vBzXCyQduEZf9k3dW5Pzmsk5wqxzNWsp/") Ownable() {}

   
    function supportsInterface(bytes4 _interfaceId) public view virtual override(ERC1155, EIP2981) returns (bool) {
        return super.supportsInterface(_interfaceId);
    }

    function setBaseURI(string memory _uri) public onlyOwner {
        _setURI(_uri);
        emit URI(_uri, 0);
    }
    
    function uri(uint256 _tokenId) override public view returns (string memory) {
        return string(abi.encodePacked(ERC1155.uri(_tokenId), _tokenId.toString(),".json"));
    }
    
    function totalSupply() public view returns(uint256) {
        return maxTotalSupply;
    }
  
    function changeRoyaltyRecipient(address _newRecipient) public onlyOwner {
        require(_newRecipient != address(0), "Error: new recipient is the zero address");
        royaltyAddr = _newRecipient;
    }


    function changeRoyaltyPercentage(uint256 _newPerc) public onlyOwner {
        require(_newPerc <= 10000, "Error: new percentage is greater than 10,0000");
        royaltyPerc = _newPerc;
    }
    
    function mint(address account)
        public
        onlyOwner
    {
        require(currentSupply + 1 <= maxTotalSupply);
            _mint(account, currentSupply + 1, 1, "");
       
        currentSupply = 1 + currentSupply;
    }

    function addressBatchMint(address[] calldata _to)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < _to.length; i++) {           
                    mint(_to[i]);
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"uint256","name":"_royaltyAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","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":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"addressBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPerc","type":"uint256"}],"name":"changeRoyaltyPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newRecipient","type":"address"}],"name":"changeRoyaltyRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60c0604052600f60808190526e131a5bdb88111053c8131959d95b99608a1b60a09081526200003291600691906200016c565b50604080518082019091526004808252631311d39160e21b602090920191825262000060916007916200016c565b506000600855606f6009553480156200007857600080fd5b5060405162002236380380620022368339810160408190526200009b9162000212565b81816040518060600160405280603681526020016200220060369139620000c28162000101565b50600380546001600160a01b0319166001600160a01b039390931692909217909155600455620000f9620000f33390565b6200011a565b50506200028b565b8051620001169060029060208401906200016c565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017a906200024e565b90600052602060002090601f0160209004810192826200019e5760008555620001e9565b82601f10620001b957805160ff1916838001178555620001e9565b82800160010185558215620001e9579182015b82811115620001e9578251825591602001919060010190620001cc565b50620001f7929150620001fb565b5090565b5b80821115620001f75760008155600101620001fc565b600080604083850312156200022657600080fd5b82516001600160a01b03811681146200023e57600080fd5b6020939093015192949293505050565b600181811c908216806200026357607f821691505b602082108114156200028557634e487b7160e01b600052602260045260246000fd5b50919050565b611f65806200029b6000396000f3fe608060405234801561001057600080fd5b50600436106101415760003560e01c806355f804b3116100b85780638da5cb5b1161007c5780638da5cb5b1461029f57806395d89b41146102ba578063a22cb465146102c2578063e985e9c5146102d5578063f242432a14610311578063f2fde38b1461032457600080fd5b806355f804b3146102555780636a62784214610268578063715018a61461027b57806371f802e814610283578063771282f61461029657600080fd5b80632a55205a1161010a5780632a55205a146101bf5780632ab4d052146101f15780632eb2c2d6146101fa5780633a45a5d31461020f5780634bd0d89c146102225780634e1273f41461023557600080fd5b8062fdd58e1461014657806301ffc9a71461016c57806306fdde031461018f5780630e89341c146101a457806318160ddd146101b7575b600080fd5b61015961015436600461156e565b610337565b6040519081526020015b60405180910390f35b61017f61017a3660046115ae565b6103ce565b6040519015158152602001610163565b6101976103df565b604051610163919061162e565b6101976101b2366004611641565b61046d565b600954610159565b6101d26101cd36600461165a565b6104a8565b604080516001600160a01b039093168352602083019190915201610163565b61015960095481565b61020d6102083660046117d2565b6104f8565b005b61020d61021d36600461187c565b61058f565b61020d610230366004611641565b610642565b610248610243366004611897565b6106d9565b604051610163919061199d565b61020d6102633660046119b0565b610803565b61020d61027636600461187c565b610872565b61020d6108f6565b61020d6102913660046119f9565b61092c565b61015960085481565b6005546040516001600160a01b039091168152602001610163565b6101976109a2565b61020d6102d0366004611a6e565b6109af565b61017f6102e3366004611aaa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61020d61031f366004611add565b6109be565b61020d61033236600461187c565b610a45565b60006001600160a01b0383166103a85760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006103d982610ae0565b92915050565b600680546103ec90611b42565b80601f016020809104026020016040519081016040528092919081815260200182805461041890611b42565b80156104655780601f1061043a57610100808354040283529160200191610465565b820191906000526020600020905b81548152906001019060200180831161044857829003601f168201915b505050505081565b606061047882610b05565b61048183610b99565b604051602001610492929190611b7d565b6040516020818303038152906040529050919050565b60035460009081906001600160a01b03166104c257600080fd5b6003546004546001600160a01b0390911690612710906104e3908690611bd2565b6104ed9190611c07565b915091509250929050565b6001600160a01b038516331480610514575061051485336102e3565b61057b5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161039f565b6105888585858585610c9f565b5050505050565b6005546001600160a01b031633146105b95760405162461bcd60e51b815260040161039f90611c1b565b6001600160a01b0381166106205760405162461bcd60e51b815260206004820152602860248201527f4572726f723a206e657720726563697069656e7420697320746865207a65726f604482015267206164647265737360c01b606482015260840161039f565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461066c5760405162461bcd60e51b815260040161039f90611c1b565b6127108111156106d45760405162461bcd60e51b815260206004820152602d60248201527f4572726f723a206e65772070657263656e74616765206973206772656174657260448201526c0207468616e2031302c3030303609c1b606482015260840161039f565b600455565b6060815183511461073e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161039f565b6000835167ffffffffffffffff81111561075a5761075a61167c565b604051908082528060200260200182016040528015610783578160200160208202803683370190505b50905060005b84518110156107fb576107ce8582815181106107a7576107a7611c50565b60200260200101518583815181106107c1576107c1611c50565b6020026020010151610337565b8282815181106107e0576107e0611c50565b60209081029190910101526107f481611c66565b9050610789565b509392505050565b6005546001600160a01b0316331461082d5760405162461bcd60e51b815260040161039f90611c1b565b61083681610e7c565b60007f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051610867919061162e565b60405180910390a250565b6005546001600160a01b0316331461089c5760405162461bcd60e51b815260040161039f90611c1b565b6009546008546108ad906001611c81565b11156108b857600080fd5b6108e28160085460016108cb9190611c81565b600160405180602001604052806000815250610e8f565b6008546108f0906001611c81565b60085550565b6005546001600160a01b031633146109205760405162461bcd60e51b815260040161039f90611c1b565b61092a6000610f99565b565b6005546001600160a01b031633146109565760405162461bcd60e51b815260040161039f90611c1b565b60005b8181101561099d5761098b83838381811061097657610976611c50565b9050602002016020810190610276919061187c565b8061099581611c66565b915050610959565b505050565b600780546103ec90611b42565b6109ba338383610feb565b5050565b6001600160a01b0385163314806109da57506109da85336102e3565b610a385760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161039f565b61058885858585856110cc565b6005546001600160a01b03163314610a6f5760405162461bcd60e51b815260040161039f90611c1b565b6001600160a01b038116610ad45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039f565b610add81610f99565b50565b60006001600160e01b0319821663152a902d60e11b14806103d957506103d9826111e9565b606060028054610b1490611b42565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4090611b42565b8015610b8d5780601f10610b6257610100808354040283529160200191610b8d565b820191906000526020600020905b815481529060010190602001808311610b7057829003601f168201915b50505050509050919050565b606081610bbd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610be75780610bd181611c66565b9150610be09050600a83611c07565b9150610bc1565b60008167ffffffffffffffff811115610c0257610c0261167c565b6040519080825280601f01601f191660200182016040528015610c2c576020820181803683370190505b5090505b8415610c9757610c41600183611c99565b9150610c4e600a86611cb0565b610c59906030611c81565b60f81b818381518110610c6e57610c6e611c50565b60200101906001600160f81b031916908160001a905350610c90600a86611c07565b9450610c30565b949350505050565b8151835114610d015760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161039f565b6001600160a01b038416610d275760405162461bcd60e51b815260040161039f90611cc4565b3360005b8451811015610e0e576000858281518110610d4857610d48611c50565b602002602001015190506000858381518110610d6657610d66611c50565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610db65760405162461bcd60e51b815260040161039f90611d09565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610df3908490611c81565b9250508190555050505080610e0790611c66565b9050610d2b565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610e5e929190611d53565b60405180910390a4610e74818787878787611239565b505050505050565b80516109ba9060029060208401906114b9565b6001600160a01b038416610eef5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161039f565b33610f0981600087610f00886113a4565b610588886113a4565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610f39908490611c81565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610588816000878787876113ef565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561105f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161039f565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166110f25760405162461bcd60e51b815260040161039f90611cc4565b33611102818787610f00886113a4565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156111435760405162461bcd60e51b815260040161039f90611d09565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611180908490611c81565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46111e08288888888886113ef565b50505050505050565b60006001600160e01b03198216636cdb3d1360e11b148061121a57506001600160e01b031982166303a24d0760e21b145b806103d957506301ffc9a760e01b6001600160e01b03198316146103d9565b6001600160a01b0384163b15610e745760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061127d9089908990889088908890600401611d81565b602060405180830381600087803b15801561129757600080fd5b505af19250505080156112c7575060408051601f3d908101601f191682019092526112c491810190611ddf565b60015b611374576112d3611dfc565b806308c379a0141561130d57506112e8611e18565b806112f3575061130f565b8060405162461bcd60e51b815260040161039f919061162e565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161039f565b6001600160e01b0319811663bc197c8160e01b146111e05760405162461bcd60e51b815260040161039f90611ea2565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106113de576113de611c50565b602090810291909101015292915050565b6001600160a01b0384163b15610e745760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906114339089908990889088908890600401611eea565b602060405180830381600087803b15801561144d57600080fd5b505af192505050801561147d575060408051601f3d908101601f1916820190925261147a91810190611ddf565b60015b611489576112d3611dfc565b6001600160e01b0319811663f23a6e6160e01b146111e05760405162461bcd60e51b815260040161039f90611ea2565b8280546114c590611b42565b90600052602060002090601f0160209004810192826114e7576000855561152d565b82601f1061150057805160ff191683800117855561152d565b8280016001018555821561152d579182015b8281111561152d578251825591602001919060010190611512565b5061153992915061153d565b5090565b5b80821115611539576000815560010161153e565b80356001600160a01b038116811461156957600080fd5b919050565b6000806040838503121561158157600080fd5b61158a83611552565b946020939093013593505050565b6001600160e01b031981168114610add57600080fd5b6000602082840312156115c057600080fd5b81356115cb81611598565b9392505050565b60005b838110156115ed5781810151838201526020016115d5565b838111156115fc576000848401525b50505050565b6000815180845261161a8160208601602086016115d2565b601f01601f19169290920160200192915050565b6020815260006115cb6020830184611602565b60006020828403121561165357600080fd5b5035919050565b6000806040838503121561166d57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156116b8576116b861167c565b6040525050565b600067ffffffffffffffff8211156116d9576116d961167c565b5060051b60200190565b600082601f8301126116f457600080fd5b81356020611701826116bf565b60405161170e8282611692565b83815260059390931b850182019282810191508684111561172e57600080fd5b8286015b848110156117495780358352918301918301611732565b509695505050505050565b600067ffffffffffffffff83111561176e5761176e61167c565b604051611785601f8501601f191660200182611692565b80915083815284848401111561179a57600080fd5b83836020830137600060208583010152509392505050565b600082601f8301126117c357600080fd5b6115cb83833560208501611754565b600080600080600060a086880312156117ea57600080fd5b6117f386611552565b945061180160208701611552565b9350604086013567ffffffffffffffff8082111561181e57600080fd5b61182a89838a016116e3565b9450606088013591508082111561184057600080fd5b61184c89838a016116e3565b9350608088013591508082111561186257600080fd5b5061186f888289016117b2565b9150509295509295909350565b60006020828403121561188e57600080fd5b6115cb82611552565b600080604083850312156118aa57600080fd5b823567ffffffffffffffff808211156118c257600080fd5b818501915085601f8301126118d657600080fd5b813560206118e3826116bf565b6040516118f08282611692565b83815260059390931b850182019282810191508984111561191057600080fd5b948201945b838610156119355761192686611552565b82529482019490820190611915565b9650508601359250508082111561194b57600080fd5b50611958858286016116e3565b9150509250929050565b600081518084526020808501945080840160005b8381101561199257815187529582019590820190600101611976565b509495945050505050565b6020815260006115cb6020830184611962565b6000602082840312156119c257600080fd5b813567ffffffffffffffff8111156119d957600080fd5b8201601f810184136119ea57600080fd5b610c9784823560208401611754565b60008060208385031215611a0c57600080fd5b823567ffffffffffffffff80821115611a2457600080fd5b818501915085601f830112611a3857600080fd5b813581811115611a4757600080fd5b8660208260051b8501011115611a5c57600080fd5b60209290920196919550909350505050565b60008060408385031215611a8157600080fd5b611a8a83611552565b915060208301358015158114611a9f57600080fd5b809150509250929050565b60008060408385031215611abd57600080fd5b611ac683611552565b9150611ad460208401611552565b90509250929050565b600080600080600060a08688031215611af557600080fd5b611afe86611552565b9450611b0c60208701611552565b93506040860135925060608601359150608086013567ffffffffffffffff811115611b3657600080fd5b61186f888289016117b2565b600181811c90821680611b5657607f821691505b60208210811415611b7757634e487b7160e01b600052602260045260246000fd5b50919050565b60008351611b8f8184602088016115d2565b835190830190611ba38183602088016115d2565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611bec57611bec611bbc565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611c1657611c16611bf1565b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611c7a57611c7a611bbc565b5060010190565b60008219821115611c9457611c94611bbc565b500190565b600082821015611cab57611cab611bbc565b500390565b600082611cbf57611cbf611bf1565b500690565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000611d666040830185611962565b8281036020840152611d788185611962565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611dad90830186611962565b8281036060840152611dbf8186611962565b90508281036080840152611dd38185611602565b98975050505050505050565b600060208284031215611df157600080fd5b81516115cb81611598565b600060033d1115611e155760046000803e5060005160e01c5b90565b600060443d1015611e265790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611e5657505050505090565b8285019150815181811115611e6e5750505050505090565b843d8701016020828501011115611e885750505050505090565b611e9760208286010187611692565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611f2490830184611602565b97965050505050505056fea2646970667358221220b99e726a3d9ddbe467f8949430350c2c9b928bde52c6719908f21e6892b8c6df64736f6c63430008090033697066733a2f2f516d5a763534343475615343413176427a584379516475455a66396b33645735507a6d736b357771787a4e5773702f00000000000000000000000085ce68b05991183c9eb65620525243387a8a2fef00000000000000000000000000000000000000000000000000000000000003e8

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101415760003560e01c806355f804b3116100b85780638da5cb5b1161007c5780638da5cb5b1461029f57806395d89b41146102ba578063a22cb465146102c2578063e985e9c5146102d5578063f242432a14610311578063f2fde38b1461032457600080fd5b806355f804b3146102555780636a62784214610268578063715018a61461027b57806371f802e814610283578063771282f61461029657600080fd5b80632a55205a1161010a5780632a55205a146101bf5780632ab4d052146101f15780632eb2c2d6146101fa5780633a45a5d31461020f5780634bd0d89c146102225780634e1273f41461023557600080fd5b8062fdd58e1461014657806301ffc9a71461016c57806306fdde031461018f5780630e89341c146101a457806318160ddd146101b7575b600080fd5b61015961015436600461156e565b610337565b6040519081526020015b60405180910390f35b61017f61017a3660046115ae565b6103ce565b6040519015158152602001610163565b6101976103df565b604051610163919061162e565b6101976101b2366004611641565b61046d565b600954610159565b6101d26101cd36600461165a565b6104a8565b604080516001600160a01b039093168352602083019190915201610163565b61015960095481565b61020d6102083660046117d2565b6104f8565b005b61020d61021d36600461187c565b61058f565b61020d610230366004611641565b610642565b610248610243366004611897565b6106d9565b604051610163919061199d565b61020d6102633660046119b0565b610803565b61020d61027636600461187c565b610872565b61020d6108f6565b61020d6102913660046119f9565b61092c565b61015960085481565b6005546040516001600160a01b039091168152602001610163565b6101976109a2565b61020d6102d0366004611a6e565b6109af565b61017f6102e3366004611aaa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61020d61031f366004611add565b6109be565b61020d61033236600461187c565b610a45565b60006001600160a01b0383166103a85760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006103d982610ae0565b92915050565b600680546103ec90611b42565b80601f016020809104026020016040519081016040528092919081815260200182805461041890611b42565b80156104655780601f1061043a57610100808354040283529160200191610465565b820191906000526020600020905b81548152906001019060200180831161044857829003601f168201915b505050505081565b606061047882610b05565b61048183610b99565b604051602001610492929190611b7d565b6040516020818303038152906040529050919050565b60035460009081906001600160a01b03166104c257600080fd5b6003546004546001600160a01b0390911690612710906104e3908690611bd2565b6104ed9190611c07565b915091509250929050565b6001600160a01b038516331480610514575061051485336102e3565b61057b5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161039f565b6105888585858585610c9f565b5050505050565b6005546001600160a01b031633146105b95760405162461bcd60e51b815260040161039f90611c1b565b6001600160a01b0381166106205760405162461bcd60e51b815260206004820152602860248201527f4572726f723a206e657720726563697069656e7420697320746865207a65726f604482015267206164647265737360c01b606482015260840161039f565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461066c5760405162461bcd60e51b815260040161039f90611c1b565b6127108111156106d45760405162461bcd60e51b815260206004820152602d60248201527f4572726f723a206e65772070657263656e74616765206973206772656174657260448201526c0207468616e2031302c3030303609c1b606482015260840161039f565b600455565b6060815183511461073e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161039f565b6000835167ffffffffffffffff81111561075a5761075a61167c565b604051908082528060200260200182016040528015610783578160200160208202803683370190505b50905060005b84518110156107fb576107ce8582815181106107a7576107a7611c50565b60200260200101518583815181106107c1576107c1611c50565b6020026020010151610337565b8282815181106107e0576107e0611c50565b60209081029190910101526107f481611c66565b9050610789565b509392505050565b6005546001600160a01b0316331461082d5760405162461bcd60e51b815260040161039f90611c1b565b61083681610e7c565b60007f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051610867919061162e565b60405180910390a250565b6005546001600160a01b0316331461089c5760405162461bcd60e51b815260040161039f90611c1b565b6009546008546108ad906001611c81565b11156108b857600080fd5b6108e28160085460016108cb9190611c81565b600160405180602001604052806000815250610e8f565b6008546108f0906001611c81565b60085550565b6005546001600160a01b031633146109205760405162461bcd60e51b815260040161039f90611c1b565b61092a6000610f99565b565b6005546001600160a01b031633146109565760405162461bcd60e51b815260040161039f90611c1b565b60005b8181101561099d5761098b83838381811061097657610976611c50565b9050602002016020810190610276919061187c565b8061099581611c66565b915050610959565b505050565b600780546103ec90611b42565b6109ba338383610feb565b5050565b6001600160a01b0385163314806109da57506109da85336102e3565b610a385760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161039f565b61058885858585856110cc565b6005546001600160a01b03163314610a6f5760405162461bcd60e51b815260040161039f90611c1b565b6001600160a01b038116610ad45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039f565b610add81610f99565b50565b60006001600160e01b0319821663152a902d60e11b14806103d957506103d9826111e9565b606060028054610b1490611b42565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4090611b42565b8015610b8d5780601f10610b6257610100808354040283529160200191610b8d565b820191906000526020600020905b815481529060010190602001808311610b7057829003601f168201915b50505050509050919050565b606081610bbd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610be75780610bd181611c66565b9150610be09050600a83611c07565b9150610bc1565b60008167ffffffffffffffff811115610c0257610c0261167c565b6040519080825280601f01601f191660200182016040528015610c2c576020820181803683370190505b5090505b8415610c9757610c41600183611c99565b9150610c4e600a86611cb0565b610c59906030611c81565b60f81b818381518110610c6e57610c6e611c50565b60200101906001600160f81b031916908160001a905350610c90600a86611c07565b9450610c30565b949350505050565b8151835114610d015760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161039f565b6001600160a01b038416610d275760405162461bcd60e51b815260040161039f90611cc4565b3360005b8451811015610e0e576000858281518110610d4857610d48611c50565b602002602001015190506000858381518110610d6657610d66611c50565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610db65760405162461bcd60e51b815260040161039f90611d09565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610df3908490611c81565b9250508190555050505080610e0790611c66565b9050610d2b565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610e5e929190611d53565b60405180910390a4610e74818787878787611239565b505050505050565b80516109ba9060029060208401906114b9565b6001600160a01b038416610eef5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161039f565b33610f0981600087610f00886113a4565b610588886113a4565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610f39908490611c81565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610588816000878787876113ef565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561105f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161039f565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166110f25760405162461bcd60e51b815260040161039f90611cc4565b33611102818787610f00886113a4565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156111435760405162461bcd60e51b815260040161039f90611d09565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611180908490611c81565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46111e08288888888886113ef565b50505050505050565b60006001600160e01b03198216636cdb3d1360e11b148061121a57506001600160e01b031982166303a24d0760e21b145b806103d957506301ffc9a760e01b6001600160e01b03198316146103d9565b6001600160a01b0384163b15610e745760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061127d9089908990889088908890600401611d81565b602060405180830381600087803b15801561129757600080fd5b505af19250505080156112c7575060408051601f3d908101601f191682019092526112c491810190611ddf565b60015b611374576112d3611dfc565b806308c379a0141561130d57506112e8611e18565b806112f3575061130f565b8060405162461bcd60e51b815260040161039f919061162e565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161039f565b6001600160e01b0319811663bc197c8160e01b146111e05760405162461bcd60e51b815260040161039f90611ea2565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106113de576113de611c50565b602090810291909101015292915050565b6001600160a01b0384163b15610e745760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906114339089908990889088908890600401611eea565b602060405180830381600087803b15801561144d57600080fd5b505af192505050801561147d575060408051601f3d908101601f1916820190925261147a91810190611ddf565b60015b611489576112d3611dfc565b6001600160e01b0319811663f23a6e6160e01b146111e05760405162461bcd60e51b815260040161039f90611ea2565b8280546114c590611b42565b90600052602060002090601f0160209004810192826114e7576000855561152d565b82601f1061150057805160ff191683800117855561152d565b8280016001018555821561152d579182015b8281111561152d578251825591602001919060010190611512565b5061153992915061153d565b5090565b5b80821115611539576000815560010161153e565b80356001600160a01b038116811461156957600080fd5b919050565b6000806040838503121561158157600080fd5b61158a83611552565b946020939093013593505050565b6001600160e01b031981168114610add57600080fd5b6000602082840312156115c057600080fd5b81356115cb81611598565b9392505050565b60005b838110156115ed5781810151838201526020016115d5565b838111156115fc576000848401525b50505050565b6000815180845261161a8160208601602086016115d2565b601f01601f19169290920160200192915050565b6020815260006115cb6020830184611602565b60006020828403121561165357600080fd5b5035919050565b6000806040838503121561166d57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156116b8576116b861167c565b6040525050565b600067ffffffffffffffff8211156116d9576116d961167c565b5060051b60200190565b600082601f8301126116f457600080fd5b81356020611701826116bf565b60405161170e8282611692565b83815260059390931b850182019282810191508684111561172e57600080fd5b8286015b848110156117495780358352918301918301611732565b509695505050505050565b600067ffffffffffffffff83111561176e5761176e61167c565b604051611785601f8501601f191660200182611692565b80915083815284848401111561179a57600080fd5b83836020830137600060208583010152509392505050565b600082601f8301126117c357600080fd5b6115cb83833560208501611754565b600080600080600060a086880312156117ea57600080fd5b6117f386611552565b945061180160208701611552565b9350604086013567ffffffffffffffff8082111561181e57600080fd5b61182a89838a016116e3565b9450606088013591508082111561184057600080fd5b61184c89838a016116e3565b9350608088013591508082111561186257600080fd5b5061186f888289016117b2565b9150509295509295909350565b60006020828403121561188e57600080fd5b6115cb82611552565b600080604083850312156118aa57600080fd5b823567ffffffffffffffff808211156118c257600080fd5b818501915085601f8301126118d657600080fd5b813560206118e3826116bf565b6040516118f08282611692565b83815260059390931b850182019282810191508984111561191057600080fd5b948201945b838610156119355761192686611552565b82529482019490820190611915565b9650508601359250508082111561194b57600080fd5b50611958858286016116e3565b9150509250929050565b600081518084526020808501945080840160005b8381101561199257815187529582019590820190600101611976565b509495945050505050565b6020815260006115cb6020830184611962565b6000602082840312156119c257600080fd5b813567ffffffffffffffff8111156119d957600080fd5b8201601f810184136119ea57600080fd5b610c9784823560208401611754565b60008060208385031215611a0c57600080fd5b823567ffffffffffffffff80821115611a2457600080fd5b818501915085601f830112611a3857600080fd5b813581811115611a4757600080fd5b8660208260051b8501011115611a5c57600080fd5b60209290920196919550909350505050565b60008060408385031215611a8157600080fd5b611a8a83611552565b915060208301358015158114611a9f57600080fd5b809150509250929050565b60008060408385031215611abd57600080fd5b611ac683611552565b9150611ad460208401611552565b90509250929050565b600080600080600060a08688031215611af557600080fd5b611afe86611552565b9450611b0c60208701611552565b93506040860135925060608601359150608086013567ffffffffffffffff811115611b3657600080fd5b61186f888289016117b2565b600181811c90821680611b5657607f821691505b60208210811415611b7757634e487b7160e01b600052602260045260246000fd5b50919050565b60008351611b8f8184602088016115d2565b835190830190611ba38183602088016115d2565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611bec57611bec611bbc565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611c1657611c16611bf1565b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611c7a57611c7a611bbc565b5060010190565b60008219821115611c9457611c94611bbc565b500190565b600082821015611cab57611cab611bbc565b500390565b600082611cbf57611cbf611bf1565b500690565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000611d666040830185611962565b8281036020840152611d788185611962565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611dad90830186611962565b8281036060840152611dbf8186611962565b90508281036080840152611dd38185611602565b98975050505050505050565b600060208284031215611df157600080fd5b81516115cb81611598565b600060033d1115611e155760046000803e5060005160e01c5b90565b600060443d1015611e265790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611e5657505050505090565b8285019150815181811115611e6e5750505050505090565b843d8701016020828501011115611e885750505050505090565b611e9760208286010187611692565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611f2490830184611602565b97965050505050505056fea2646970667358221220b99e726a3d9ddbe467f8949430350c2c9b928bde52c6719908f21e6892b8c6df64736f6c63430008090033

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

00000000000000000000000085ce68b05991183c9eb65620525243387a8a2fef00000000000000000000000000000000000000000000000000000000000003e8

-----Decoded View---------------
Arg [0] : _royaltyRecipient (address): 0x85CE68b05991183C9eb65620525243387a8a2feF
Arg [1] : _royaltyAmount (uint256): 1000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000085ce68b05991183c9eb65620525243387a8a2fef
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8


Deployed Bytecode Sourcemap

39786:1939:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26283:231;;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;26283:231:0;;;;;;;;40235:173;;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;40235:173:0;1019:187:1;39874:38:0;;;:::i;:::-;;;;;;;:::i;40545:178::-;;;;;;:::i;:::-;;:::i;40735:92::-;40805:14;;40735:92;;21765:241;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;2592:32:1;;;2574:51;;2656:2;2641:18;;2634:34;;;;2547:18;21765:241:0;2400:274:1;39994:35:0;;;;;;28222:442;;;;;;:::i;:::-;;:::i;:::-;;40837:209;;;;;;:::i;:::-;;:::i;41056:195::-;;;;;;:::i;:::-;;:::i;26680:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40416:117::-;;;;;;:::i;:::-;;:::i;41263:242::-;;;;;;:::i;:::-;;:::i;23581:103::-;;;:::i;41513:207::-;;;;;;:::i;:::-;;:::i;39955:32::-;;;;;;22930:87;23003:6;;22930:87;;-1:-1:-1;;;;;23003:6:0;;;8959:51:1;;8947:2;8932:18;22930:87:0;8813:203:1;39919:29:0;;;:::i;27277:155::-;;;;;;:::i;:::-;;:::i;27504:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27627:27:0;;;27603:4;27627:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;27504:168;27744:401;;;;;;:::i;:::-;;:::i;23839:201::-;;;;;;:::i;:::-;;:::i;26283:231::-;26369:7;-1:-1:-1;;;;;26397:21:0;;26389:77;;;;-1:-1:-1;;;26389:77:0;;10451:2:1;26389:77:0;;;10433:21:1;10490:2;10470:18;;;10463:30;10529:34;10509:18;;;10502:62;-1:-1:-1;;;10580:18:1;;;10573:41;10631:19;;26389:77:0;;;;;;;;;-1:-1:-1;26484:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;26484:22:0;;;;;;;;;;;;26283:231::o;40235:173::-;40339:4;40363:37;40387:12;40363:23;:37::i;:::-;40356:44;40235:173;-1:-1:-1;;40235:173:0:o;39874:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40545:178::-;40606:13;40663:21;40675:8;40663:11;:21::i;:::-;40686:19;:8;:17;:19::i;:::-;40646:68;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40632:83;;40545:178;;;:::o;21765:241::-;21907:11;;21847:16;;;;-1:-1:-1;;;;;21907:11:0;21899:34;;;;;;21952:11;;21965;;-1:-1:-1;;;;;21952:11:0;;;;21992:5;;21965:24;;21979:10;;21965:24;:::i;:::-;:32;;;;:::i;:::-;21944:54;;;;21765:241;;;;;:::o;28222:442::-;-1:-1:-1;;;;;28455:20:0;;19483:10;28455:20;;:60;;-1:-1:-1;28479:36:0;28496:4;19483:10;27504:168;:::i;28479:36::-;28433:160;;;;-1:-1:-1;;;28433:160:0;;12452:2:1;28433:160:0;;;12434:21:1;12491:2;12471:18;;;12464:30;12530:34;12510:18;;;12503:62;-1:-1:-1;;;12581:18:1;;;12574:48;12639:19;;28433:160:0;12250:414:1;28433:160:0;28604:52;28627:4;28633:2;28637:3;28642:7;28651:4;28604:22;:52::i;:::-;28222:442;;;;;:::o;40837:209::-;23003:6;;-1:-1:-1;;;;;23003:6:0;19483:10;23150:23;23142:68;;;;-1:-1:-1;;;23142:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40928:27:0;::::1;40920:80;;;::::0;-1:-1:-1;;;40920:80:0;;13232:2:1;40920:80:0::1;::::0;::::1;13214:21:1::0;13271:2;13251:18;;;13244:30;13310:34;13290:18;;;13283:62;-1:-1:-1;;;13361:18:1;;;13354:38;13409:19;;40920:80:0::1;13030:404:1::0;40920:80:0::1;41011:11;:27:::0;;-1:-1:-1;;;;;;41011:27:0::1;-1:-1:-1::0;;;;;41011:27:0;;;::::1;::::0;;;::::1;::::0;;40837:209::o;41056:195::-;23003:6;;-1:-1:-1;;;;;23003:6:0;19483:10;23150:23;23142:68;;;;-1:-1:-1;;;23142:68:0;;;;;;;:::i;:::-;41155:5:::1;41143:8;:17;;41135:75;;;::::0;-1:-1:-1;;;41135:75:0;;13641:2:1;41135:75:0::1;::::0;::::1;13623:21:1::0;13680:2;13660:18;;;13653:30;13719:34;13699:18;;;13692:62;-1:-1:-1;;;13770:18:1;;;13763:43;13823:19;;41135:75:0::1;13439:409:1::0;41135:75:0::1;41221:11;:22:::0;41056:195::o;26680:524::-;26836:16;26897:3;:10;26878:8;:15;:29;26870:83;;;;-1:-1:-1;;;26870:83:0;;14055:2:1;26870:83:0;;;14037:21:1;14094:2;14074:18;;;14067:30;14133:34;14113:18;;;14106:62;-1:-1:-1;;;14184:18:1;;;14177:39;14233:19;;26870:83:0;13853:405:1;26870:83:0;26966:30;27013:8;:15;26999:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26999:30:0;;26966:63;;27047:9;27042:122;27066:8;:15;27062:1;:19;27042:122;;;27122:30;27132:8;27141:1;27132:11;;;;;;;;:::i;:::-;;;;;;;27145:3;27149:1;27145:6;;;;;;;;:::i;:::-;;;;;;;27122:9;:30::i;:::-;27103:13;27117:1;27103:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;27083:3;;;:::i;:::-;;;27042:122;;;-1:-1:-1;27183:13:0;26680:524;-1:-1:-1;;;26680:524:0:o;40416:117::-;23003:6;;-1:-1:-1;;;;;23003:6:0;19483:10;23150:23;23142:68;;;;-1:-1:-1;;;23142:68:0;;;;;;;:::i;:::-;40484:13:::1;40492:4;40484:7;:13::i;:::-;40523:1;40513:12;40517:4;40513:12;;;;;;:::i;:::-;;;;;;;;40416:117:::0;:::o;41263:242::-;23003:6;;-1:-1:-1;;;;;23003:6:0;19483:10;23150:23;23142:68;;;;-1:-1:-1;;;23142:68:0;;;;;;;:::i;:::-;41374:14:::1;::::0;41353:13:::1;::::0;:17:::1;::::0;41369:1:::1;41353:17;:::i;:::-;:35;;41345:44;;;::::0;::::1;;41404:40;41410:7;41419:13;;41435:1;41419:17;;;;:::i;:::-;41438:1;41404:40;;;;;;;;;;;::::0;:5:::1;:40::i;:::-;41484:13;::::0;41480:17:::1;::::0;:1:::1;:17;:::i;:::-;41464:13;:33:::0;-1:-1:-1;41263:242:0:o;23581:103::-;23003:6;;-1:-1:-1;;;;;23003:6:0;19483:10;23150:23;23142:68;;;;-1:-1:-1;;;23142:68:0;;;;;;;:::i;:::-;23646:30:::1;23673:1;23646:18;:30::i;:::-;23581:103::o:0;41513:207::-;23003:6;;-1:-1:-1;;;;;23003:6:0;19483:10;23150:23;23142:68;;;;-1:-1:-1;;;23142:68:0;;;;;;;:::i;:::-;41619:9:::1;41614:99;41634:14:::0;;::::1;41614:99;;;41689:12;41694:3;;41698:1;41694:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;41689:12::-;41650:3:::0;::::1;::::0;::::1;:::i;:::-;;;;41614:99;;;;41513:207:::0;;:::o;39919:29::-;;;;;;;:::i;27277:155::-;27372:52;19483:10;27405:8;27415;27372:18;:52::i;:::-;27277:155;;:::o;27744:401::-;-1:-1:-1;;;;;27952:20:0;;19483:10;27952:20;;:60;;-1:-1:-1;27976:36:0;27993:4;19483:10;27504:168;:::i;27976:36::-;27930:151;;;;-1:-1:-1;;;27930:151:0;;14870:2:1;27930:151:0;;;14852:21:1;14909:2;14889:18;;;14882:30;14948:34;14928:18;;;14921:62;-1:-1:-1;;;14999:18:1;;;14992:39;15048:19;;27930:151:0;14668:405:1;27930:151:0;28092:45;28110:4;28116:2;28120;28124:6;28132:4;28092:17;:45::i;23839:201::-;23003:6;;-1:-1:-1;;;;;23003:6:0;19483:10;23150:23;23142:68;;;;-1:-1:-1;;;23142:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23928:22:0;::::1;23920:73;;;::::0;-1:-1:-1;;;23920:73:0;;15280:2:1;23920:73:0::1;::::0;::::1;15262:21:1::0;15319:2;15299:18;;;15292:30;15358:34;15338:18;;;15331:62;-1:-1:-1;;;15409:18:1;;;15402:36;15455:19;;23920:73:0::1;15078:402:1::0;23920:73:0::1;24004:28;24023:8;24004:18;:28::i;:::-;23839:201:::0;:::o;21228:206::-;21321:4;-1:-1:-1;;;;;;21345:41:0;;-1:-1:-1;;;21345:41:0;;:81;;;21390:36;21414:11;21390:23;:36::i;26027:105::-;26087:13;26120:4;26113:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26027:105;;;:::o;8759:723::-;8815:13;9036:10;9032:53;;-1:-1:-1;;9063:10:0;;;;;;;;;;;;-1:-1:-1;;;9063:10:0;;;;;8759:723::o;9032:53::-;9110:5;9095:12;9151:78;9158:9;;9151:78;;9184:8;;;;:::i;:::-;;-1:-1:-1;9207:10:0;;-1:-1:-1;9215:2:0;9207:10;;:::i;:::-;;;9151:78;;;9239:19;9271:6;9261:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9261:17:0;;9239:39;;9289:154;9296:10;;9289:154;;9323:11;9333:1;9323:11;;:::i;:::-;;-1:-1:-1;9392:10:0;9400:2;9392:5;:10;:::i;:::-;9379:24;;:2;:24;:::i;:::-;9366:39;;9349:6;9356;9349:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9349:56:0;;;;;;;;-1:-1:-1;9420:11:0;9429:2;9420:11;;:::i;:::-;;;9289:154;;;9467:6;8759:723;-1:-1:-1;;;;8759:723:0:o;30306:1074::-;30533:7;:14;30519:3;:10;:28;30511:81;;;;-1:-1:-1;;;30511:81:0;;15934:2:1;30511:81:0;;;15916:21:1;15973:2;15953:18;;;15946:30;16012:34;15992:18;;;15985:62;-1:-1:-1;;;16063:18:1;;;16056:38;16111:19;;30511:81:0;15732:404:1;30511:81:0;-1:-1:-1;;;;;30611:16:0;;30603:66;;;;-1:-1:-1;;;30603:66:0;;;;;;;:::i;:::-;19483:10;30682:16;30799:421;30823:3;:10;30819:1;:14;30799:421;;;30855:10;30868:3;30872:1;30868:6;;;;;;;;:::i;:::-;;;;;;;30855:19;;30889:14;30906:7;30914:1;30906:10;;;;;;;;:::i;:::-;;;;;;;;;;;;30933:19;30955:13;;;;;;;;;;-1:-1:-1;;;;;30955:19:0;;;;;;;;;;;;30906:10;;-1:-1:-1;30997:21:0;;;;30989:76;;;;-1:-1:-1;;;30989:76:0;;;;;;;:::i;:::-;31109:9;:13;;;;;;;;;;;-1:-1:-1;;;;;31109:19:0;;;;;;;;;;31131:20;;;31109:42;;31181:17;;;;;;;:27;;31131:20;;31109:9;31181:27;;31131:20;;31181:27;:::i;:::-;;;;;;;;30840:380;;;30835:3;;;;:::i;:::-;;;30799:421;;;;31267:2;-1:-1:-1;;;;;31237:47:0;31261:4;-1:-1:-1;;;;;31237:47:0;31251:8;-1:-1:-1;;;;;31237:47:0;;31271:3;31276:7;31237:47;;;;;;;:::i;:::-;;;;;;;;31297:75;31333:8;31343:4;31349:2;31353:3;31358:7;31367:4;31297:35;:75::i;:::-;30500:880;30306:1074;;;;;:::o;32224:88::-;32291:13;;;;:4;;:13;;;;;:::i;32698:569::-;-1:-1:-1;;;;;32851:16:0;;32843:62;;;;-1:-1:-1;;;32843:62:0;;17630:2:1;32843:62:0;;;17612:21:1;17669:2;17649:18;;;17642:30;17708:34;17688:18;;;17681:62;-1:-1:-1;;;17759:18:1;;;17752:31;17800:19;;32843:62:0;17428:397:1;32843:62:0;19483:10;32962:102;19483:10;32918:16;33005:2;33009:21;33027:2;33009:17;:21::i;:::-;33032:25;33050:6;33032:17;:25::i;32962:102::-;33077:9;:13;;;;;;;;;;;-1:-1:-1;;;;;33077:17:0;;;;;;;;;:27;;33098:6;;33077:9;:27;;33098:6;;33077:27;:::i;:::-;;;;-1:-1:-1;;33120:52:0;;;18004:25:1;;;18060:2;18045:18;;18038:34;;;-1:-1:-1;;;;;33120:52:0;;;;33153:1;;33120:52;;;;;;17977:18:1;33120:52:0;;;;;;;33185:74;33216:8;33234:1;33238:2;33242;33246:6;33254:4;33185:30;:74::i;24200:191::-;24293:6;;;-1:-1:-1;;;;;24310:17:0;;;-1:-1:-1;;;;;;24310:17:0;;;;;;;24343:40;;24293:6;;;24310:17;24293:6;;24343:40;;24274:16;;24343:40;24263:128;24200:191;:::o;36492:331::-;36647:8;-1:-1:-1;;;;;36638:17:0;:5;-1:-1:-1;;;;;36638:17:0;;;36630:71;;;;-1:-1:-1;;;36630:71:0;;18285:2:1;36630:71:0;;;18267:21:1;18324:2;18304:18;;;18297:30;18363:34;18343:18;;;18336:62;-1:-1:-1;;;18414:18:1;;;18407:39;18463:19;;36630:71:0;18083:405:1;36630:71:0;-1:-1:-1;;;;;36712:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36712:46:0;;;;;;;;;;36774:41;;1159::1;;;36774::0;;1132:18:1;36774:41:0;;;;;;;36492:331;;;:::o;29128:820::-;-1:-1:-1;;;;;29316:16:0;;29308:66;;;;-1:-1:-1;;;29308:66:0;;;;;;;:::i;:::-;19483:10;29431:96;19483:10;29462:4;29468:2;29472:21;29490:2;29472:17;:21::i;29431:96::-;29540:19;29562:13;;;;;;;;;;;-1:-1:-1;;;;;29562:19:0;;;;;;;;;;29600:21;;;;29592:76;;;;-1:-1:-1;;;29592:76:0;;;;;;;:::i;:::-;29704:9;:13;;;;;;;;;;;-1:-1:-1;;;;;29704:19:0;;;;;;;;;;29726:20;;;29704:42;;29768:17;;;;;;;:27;;29726:20;;29704:9;29768:27;;29726:20;;29768:27;:::i;:::-;;;;-1:-1:-1;;29813:46:0;;;18004:25:1;;;18060:2;18045:18;;18038:34;;;-1:-1:-1;;;;;29813:46:0;;;;;;;;;;;;;;17977:18:1;29813:46:0;;;;;;;29872:68;29903:8;29913:4;29919:2;29923;29927:6;29935:4;29872:30;:68::i;:::-;29297:651;;29128:820;;;;;:::o;25306:310::-;25408:4;-1:-1:-1;;;;;;25445:41:0;;-1:-1:-1;;;25445:41:0;;:110;;-1:-1:-1;;;;;;;25503:52:0;;-1:-1:-1;;;25503:52:0;25445:110;:163;;;-1:-1:-1;;;;;;;;;;20422:40:0;;;25572:36;20313:157;38760:813;-1:-1:-1;;;;;39000:13:0;;11890:19;:23;38996:570;;39036:79;;-1:-1:-1;;;39036:79:0;;-1:-1:-1;;;;;39036:43:0;;;;;:79;;39080:8;;39090:4;;39096:3;;39101:7;;39110:4;;39036:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39036:79:0;;;;;;;;-1:-1:-1;;39036:79:0;;;;;;;;;;;;:::i;:::-;;;39032:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;39428:6;39421:14;;-1:-1:-1;;;39421:14:0;;;;;;;;:::i;39032:523::-;;;39477:62;;-1:-1:-1;;;39477:62:0;;20641:2:1;39477:62:0;;;20623:21:1;20680:2;20660:18;;;20653:30;20719:34;20699:18;;;20692:62;-1:-1:-1;;;20770:18:1;;;20763:50;20830:19;;39477:62:0;20439:416:1;39032:523:0;-1:-1:-1;;;;;;39197:60:0;;-1:-1:-1;;;39197:60:0;39193:159;;39282:50;;-1:-1:-1;;;39282:50:0;;;;;;;:::i;39581:198::-;39701:16;;;39715:1;39701:16;;;;;;;;;39647;;39676:22;;39701:16;;;;;;;;;;;;-1:-1:-1;39701:16:0;39676:41;;39739:7;39728:5;39734:1;39728:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;39766:5;39581:198;-1:-1:-1;;39581:198:0:o;38008:744::-;-1:-1:-1;;;;;38223:13:0;;11890:19;:23;38219:526;;38259:72;;-1:-1:-1;;;38259:72:0;;-1:-1:-1;;;;;38259:38:0;;;;;:72;;38298:8;;38308:4;;38314:2;;38318:6;;38326:4;;38259:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38259:72:0;;;;;;;;-1:-1:-1;;38259:72:0;;;;;;;;;;;;:::i;:::-;;;38255:479;;;;:::i;:::-;-1:-1:-1;;;;;;38381:55:0;;-1:-1:-1;;;38381:55:0;38377:154;;38461:50;;-1:-1:-1;;;38461:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;:::-;1003:5;769:245;-1:-1:-1;;;769:245:1:o;1211:258::-;1283:1;1293:113;1307:6;1304:1;1301:13;1293:113;;;1383:11;;;1377:18;1364:11;;;1357:39;1329:2;1322:10;1293:113;;;1424:6;1421:1;1418:13;1415:48;;;1459:1;1450:6;1445:3;1441:16;1434:27;1415:48;;1211:258;;;:::o;1474:::-;1516:3;1554:5;1548:12;1581:6;1576:3;1569:19;1597:63;1653:6;1646:4;1641:3;1637:14;1630:4;1623:5;1619:16;1597:63;:::i;:::-;1714:2;1693:15;-1:-1:-1;;1689:29:1;1680:39;;;;1721:4;1676:50;;1474:258;-1:-1:-1;;1474:258:1:o;1737:220::-;1886:2;1875:9;1868:21;1849:4;1906:45;1947:2;1936:9;1932:18;1924:6;1906:45;:::i;1962:180::-;2021:6;2074:2;2062:9;2053:7;2049:23;2045:32;2042:52;;;2090:1;2087;2080:12;2042:52;-1:-1:-1;2113:23:1;;1962:180;-1:-1:-1;1962:180:1:o;2147:248::-;2215:6;2223;2276:2;2264:9;2255:7;2251:23;2247:32;2244:52;;;2292:1;2289;2282:12;2244:52;-1:-1:-1;;2315:23:1;;;2385:2;2370:18;;;2357:32;;-1:-1:-1;2147:248:1:o;2679:127::-;2740:10;2735:3;2731:20;2728:1;2721:31;2771:4;2768:1;2761:15;2795:4;2792:1;2785:15;2811:249;2921:2;2902:13;;-1:-1:-1;;2898:27:1;2886:40;;2956:18;2941:34;;2977:22;;;2938:62;2935:88;;;3003:18;;:::i;:::-;3039:2;3032:22;-1:-1:-1;;2811:249:1:o;3065:183::-;3125:4;3158:18;3150:6;3147:30;3144:56;;;3180:18;;:::i;:::-;-1:-1:-1;3225:1:1;3221:14;3237:4;3217:25;;3065:183::o;3253:724::-;3307:5;3360:3;3353:4;3345:6;3341:17;3337:27;3327:55;;3378:1;3375;3368:12;3327:55;3414:6;3401:20;3440:4;3463:43;3503:2;3463:43;:::i;:::-;3535:2;3529:9;3547:31;3575:2;3567:6;3547:31;:::i;:::-;3613:18;;;3705:1;3701:10;;;;3689:23;;3685:32;;;3647:15;;;;-1:-1:-1;3729:15:1;;;3726:35;;;3757:1;3754;3747:12;3726:35;3793:2;3785:6;3781:15;3805:142;3821:6;3816:3;3813:15;3805:142;;;3887:17;;3875:30;;3925:12;;;;3838;;3805:142;;;-1:-1:-1;3965:6:1;3253:724;-1:-1:-1;;;;;;3253:724:1:o;3982:468::-;4046:5;4080:18;4072:6;4069:30;4066:56;;;4102:18;;:::i;:::-;4151:2;4145:9;4163:69;4220:2;4199:15;;-1:-1:-1;;4195:29:1;4226:4;4191:40;4145:9;4163:69;:::i;:::-;4250:6;4241:15;;4280:6;4272;4265:22;4320:3;4311:6;4306:3;4302:16;4299:25;4296:45;;;4337:1;4334;4327:12;4296:45;4387:6;4382:3;4375:4;4367:6;4363:17;4350:44;4442:1;4435:4;4426:6;4418;4414:19;4410:30;4403:41;;3982:468;;;;;:::o;4455:220::-;4497:5;4550:3;4543:4;4535:6;4531:17;4527:27;4517:55;;4568:1;4565;4558:12;4517:55;4590:79;4665:3;4656:6;4643:20;4636:4;4628:6;4624:17;4590:79;:::i;4680:943::-;4834:6;4842;4850;4858;4866;4919:3;4907:9;4898:7;4894:23;4890:33;4887:53;;;4936:1;4933;4926:12;4887:53;4959:29;4978:9;4959:29;:::i;:::-;4949:39;;5007:38;5041:2;5030:9;5026:18;5007:38;:::i;:::-;4997:48;;5096:2;5085:9;5081:18;5068:32;5119:18;5160:2;5152:6;5149:14;5146:34;;;5176:1;5173;5166:12;5146:34;5199:61;5252:7;5243:6;5232:9;5228:22;5199:61;:::i;:::-;5189:71;;5313:2;5302:9;5298:18;5285:32;5269:48;;5342:2;5332:8;5329:16;5326:36;;;5358:1;5355;5348:12;5326:36;5381:63;5436:7;5425:8;5414:9;5410:24;5381:63;:::i;:::-;5371:73;;5497:3;5486:9;5482:19;5469:33;5453:49;;5527:2;5517:8;5514:16;5511:36;;;5543:1;5540;5533:12;5511:36;;5566:51;5609:7;5598:8;5587:9;5583:24;5566:51;:::i;:::-;5556:61;;;4680:943;;;;;;;;:::o;5628:186::-;5687:6;5740:2;5728:9;5719:7;5715:23;5711:32;5708:52;;;5756:1;5753;5746:12;5708:52;5779:29;5798:9;5779:29;:::i;5819:1208::-;5937:6;5945;5998:2;5986:9;5977:7;5973:23;5969:32;5966:52;;;6014:1;6011;6004:12;5966:52;6054:9;6041:23;6083:18;6124:2;6116:6;6113:14;6110:34;;;6140:1;6137;6130:12;6110:34;6178:6;6167:9;6163:22;6153:32;;6223:7;6216:4;6212:2;6208:13;6204:27;6194:55;;6245:1;6242;6235:12;6194:55;6281:2;6268:16;6303:4;6326:43;6366:2;6326:43;:::i;:::-;6398:2;6392:9;6410:31;6438:2;6430:6;6410:31;:::i;:::-;6476:18;;;6564:1;6560:10;;;;6552:19;;6548:28;;;6510:15;;;;-1:-1:-1;6588:19:1;;;6585:39;;;6620:1;6617;6610:12;6585:39;6644:11;;;;6664:148;6680:6;6675:3;6672:15;6664:148;;;6746:23;6765:3;6746:23;:::i;:::-;6734:36;;6697:12;;;;6790;;;;6664:148;;;6831:6;-1:-1:-1;;6875:18:1;;6862:32;;-1:-1:-1;;6906:16:1;;;6903:36;;;6935:1;6932;6925:12;6903:36;;6958:63;7013:7;7002:8;6991:9;6987:24;6958:63;:::i;:::-;6948:73;;;5819:1208;;;;;:::o;7032:435::-;7085:3;7123:5;7117:12;7150:6;7145:3;7138:19;7176:4;7205:2;7200:3;7196:12;7189:19;;7242:2;7235:5;7231:14;7263:1;7273:169;7287:6;7284:1;7281:13;7273:169;;;7348:13;;7336:26;;7382:12;;;;7417:15;;;;7309:1;7302:9;7273:169;;;-1:-1:-1;7458:3:1;;7032:435;-1:-1:-1;;;;;7032:435:1:o;7472:261::-;7651:2;7640:9;7633:21;7614:4;7671:56;7723:2;7712:9;7708:18;7700:6;7671:56;:::i;7738:450::-;7807:6;7860:2;7848:9;7839:7;7835:23;7831:32;7828:52;;;7876:1;7873;7866:12;7828:52;7916:9;7903:23;7949:18;7941:6;7938:30;7935:50;;;7981:1;7978;7971:12;7935:50;8004:22;;8057:4;8049:13;;8045:27;-1:-1:-1;8035:55:1;;8086:1;8083;8076:12;8035:55;8109:73;8174:7;8169:2;8156:16;8151:2;8147;8143:11;8109:73;:::i;8193:615::-;8279:6;8287;8340:2;8328:9;8319:7;8315:23;8311:32;8308:52;;;8356:1;8353;8346:12;8308:52;8396:9;8383:23;8425:18;8466:2;8458:6;8455:14;8452:34;;;8482:1;8479;8472:12;8452:34;8520:6;8509:9;8505:22;8495:32;;8565:7;8558:4;8554:2;8550:13;8546:27;8536:55;;8587:1;8584;8577:12;8536:55;8627:2;8614:16;8653:2;8645:6;8642:14;8639:34;;;8669:1;8666;8659:12;8639:34;8722:7;8717:2;8707:6;8704:1;8700:14;8696:2;8692:23;8688:32;8685:45;8682:65;;;8743:1;8740;8733:12;8682:65;8774:2;8766:11;;;;;8796:6;;-1:-1:-1;8193:615:1;;-1:-1:-1;;;;8193:615:1:o;9021:347::-;9086:6;9094;9147:2;9135:9;9126:7;9122:23;9118:32;9115:52;;;9163:1;9160;9153:12;9115:52;9186:29;9205:9;9186:29;:::i;:::-;9176:39;;9265:2;9254:9;9250:18;9237:32;9312:5;9305:13;9298:21;9291:5;9288:32;9278:60;;9334:1;9331;9324:12;9278:60;9357:5;9347:15;;;9021:347;;;;;:::o;9373:260::-;9441:6;9449;9502:2;9490:9;9481:7;9477:23;9473:32;9470:52;;;9518:1;9515;9508:12;9470:52;9541:29;9560:9;9541:29;:::i;:::-;9531:39;;9589:38;9623:2;9612:9;9608:18;9589:38;:::i;:::-;9579:48;;9373:260;;;;;:::o;9638:606::-;9742:6;9750;9758;9766;9774;9827:3;9815:9;9806:7;9802:23;9798:33;9795:53;;;9844:1;9841;9834:12;9795:53;9867:29;9886:9;9867:29;:::i;:::-;9857:39;;9915:38;9949:2;9938:9;9934:18;9915:38;:::i;:::-;9905:48;;10000:2;9989:9;9985:18;9972:32;9962:42;;10051:2;10040:9;10036:18;10023:32;10013:42;;10106:3;10095:9;10091:19;10078:33;10134:18;10126:6;10123:30;10120:50;;;10166:1;10163;10156:12;10120:50;10189:49;10230:7;10221:6;10210:9;10206:22;10189:49;:::i;10661:380::-;10740:1;10736:12;;;;10783;;;10804:61;;10858:4;10850:6;10846:17;10836:27;;10804:61;10911:2;10903:6;10900:14;10880:18;10877:38;10874:161;;;10957:10;10952:3;10948:20;10945:1;10938:31;10992:4;10989:1;10982:15;11020:4;11017:1;11010:15;10874:161;;10661:380;;;:::o;11046:637::-;11326:3;11364:6;11358:13;11380:53;11426:6;11421:3;11414:4;11406:6;11402:17;11380:53;:::i;:::-;11496:13;;11455:16;;;;11518:57;11496:13;11455:16;11552:4;11540:17;;11518:57;:::i;:::-;-1:-1:-1;;;11597:20:1;;11626:22;;;11675:1;11664:13;;11046:637;-1:-1:-1;;;;11046:637:1:o;11688:127::-;11749:10;11744:3;11740:20;11737:1;11730:31;11780:4;11777:1;11770:15;11804:4;11801:1;11794:15;11820:168;11860:7;11926:1;11922;11918:6;11914:14;11911:1;11908:21;11903:1;11896:9;11889:17;11885:45;11882:71;;;11933:18;;:::i;:::-;-1:-1:-1;11973:9:1;;11820:168::o;11993:127::-;12054:10;12049:3;12045:20;12042:1;12035:31;12085:4;12082:1;12075:15;12109:4;12106:1;12099:15;12125:120;12165:1;12191;12181:35;;12196:18;;:::i;:::-;-1:-1:-1;12230:9:1;;12125:120::o;12669:356::-;12871:2;12853:21;;;12890:18;;;12883:30;12949:34;12944:2;12929:18;;12922:62;13016:2;13001:18;;12669:356::o;14263:127::-;14324:10;14319:3;14315:20;14312:1;14305:31;14355:4;14352:1;14345:15;14379:4;14376:1;14369:15;14395:135;14434:3;-1:-1:-1;;14455:17:1;;14452:43;;;14475:18;;:::i;:::-;-1:-1:-1;14522:1:1;14511:13;;14395:135::o;14535:128::-;14575:3;14606:1;14602:6;14599:1;14596:13;14593:39;;;14612:18;;:::i;:::-;-1:-1:-1;14648:9:1;;14535:128::o;15485:125::-;15525:4;15553:1;15550;15547:8;15544:34;;;15558:18;;:::i;:::-;-1:-1:-1;15595:9:1;;15485:125::o;15615:112::-;15647:1;15673;15663:35;;15678:18;;:::i;:::-;-1:-1:-1;15712:9:1;;15615:112::o;16141:401::-;16343:2;16325:21;;;16382:2;16362:18;;;16355:30;16421:34;16416:2;16401:18;;16394:62;-1:-1:-1;;;16487:2:1;16472:18;;16465:35;16532:3;16517:19;;16141:401::o;16547:406::-;16749:2;16731:21;;;16788:2;16768:18;;;16761:30;16827:34;16822:2;16807:18;;16800:62;-1:-1:-1;;;16893:2:1;16878:18;;16871:40;16943:3;16928:19;;16547:406::o;16958:465::-;17215:2;17204:9;17197:21;17178:4;17241:56;17293:2;17282:9;17278:18;17270:6;17241:56;:::i;:::-;17345:9;17337:6;17333:22;17328:2;17317:9;17313:18;17306:50;17373:44;17410:6;17402;17373:44;:::i;:::-;17365:52;16958:465;-1:-1:-1;;;;;16958:465:1:o;18493:827::-;-1:-1:-1;;;;;18890:15:1;;;18872:34;;18942:15;;18937:2;18922:18;;18915:43;18852:3;18989:2;18974:18;;18967:31;;;18815:4;;19021:57;;19058:19;;19050:6;19021:57;:::i;:::-;19126:9;19118:6;19114:22;19109:2;19098:9;19094:18;19087:50;19160:44;19197:6;19189;19160:44;:::i;:::-;19146:58;;19253:9;19245:6;19241:22;19235:3;19224:9;19220:19;19213:51;19281:33;19307:6;19299;19281:33;:::i;:::-;19273:41;18493:827;-1:-1:-1;;;;;;;;18493:827:1:o;19325:249::-;19394:6;19447:2;19435:9;19426:7;19422:23;19418:32;19415:52;;;19463:1;19460;19453:12;19415:52;19495:9;19489:16;19514:30;19538:5;19514:30;:::i;19579:179::-;19614:3;19656:1;19638:16;19635:23;19632:120;;;19702:1;19699;19696;19681:23;-1:-1:-1;19739:1:1;19733:8;19728:3;19724:18;19632:120;19579:179;:::o;19763:671::-;19802:3;19844:4;19826:16;19823:26;19820:39;;;19763:671;:::o;19820:39::-;19886:2;19880:9;-1:-1:-1;;19951:16:1;19947:25;;19944:1;19880:9;19923:50;20002:4;19996:11;20026:16;20061:18;20132:2;20125:4;20117:6;20113:17;20110:25;20105:2;20097:6;20094:14;20091:45;20088:58;;;20139:5;;;;;19763:671;:::o;20088:58::-;20176:6;20170:4;20166:17;20155:28;;20212:3;20206:10;20239:2;20231:6;20228:14;20225:27;;;20245:5;;;;;;19763:671;:::o;20225:27::-;20329:2;20310:16;20304:4;20300:27;20296:36;20289:4;20280:6;20275:3;20271:16;20267:27;20264:69;20261:82;;;20336:5;;;;;;19763:671;:::o;20261:82::-;20352:57;20403:4;20394:6;20386;20382:19;20378:30;20372:4;20352:57;:::i;:::-;-1:-1:-1;20425:3:1;;19763:671;-1:-1:-1;;;;;19763:671:1:o;20860:404::-;21062:2;21044:21;;;21101:2;21081:18;;;21074:30;21140:34;21135:2;21120:18;;21113:62;-1:-1:-1;;;21206:2:1;21191:18;;21184:38;21254:3;21239:19;;20860:404::o;21269:561::-;-1:-1:-1;;;;;21566:15:1;;;21548:34;;21618:15;;21613:2;21598:18;;21591:43;21665:2;21650:18;;21643:34;;;21708:2;21693:18;;21686:34;;;21528:3;21751;21736:19;;21729:32;;;21491:4;;21778:46;;21804:19;;21796:6;21778:46;:::i;:::-;21770:54;21269:561;-1:-1:-1;;;;;;;21269:561:1:o

Swarm Source

ipfs://b99e726a3d9ddbe467f8949430350c2c9b928bde52c6719908f21e6892b8c6df
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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