ETH Price: $2,649.29 (+0.49%)

Token

Andie Case Music NFTs (ACMN)
 

Overview

Max Total Supply

48 ACMN

Holders

22

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x710e1d3683d7709fec0bc81d0d5a50647052cb89
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:
AndieCase

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : AndieCase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

/// @author Sergio Martell - Motley Ds

/**
* @notice This is the first iteration for the implementation of the erc-1155 for the Music 3.0 initiative.
* this contract is an artist based contract, that will be controlled by either the artist or their management team.
* The structure of the contract allows for multiple releases or "drops" that can all be under the same instrument.
*/

/**
* @dev This is an Artist Controlled Music 3.0 ERC-1155 Contract, for Band NFTs.
* Please review the docs at www.bandnfts.com and the metadata on these assets to be able to interact with the 
* Music 3.0 and Band Royalty ecosystem.
 */

contract AndieCase is ERC1155, ReentrancyGuard, Ownable {
    string public name;
    string public symbol;

    // Releases - store base URI for the different releases from the artist, this way there is no need to have 1 shared baseURI.
    // note: Make sure that you are referencing an uploaded folder, not the file itself. The contract will give back the baseURI+tokenID
    // and also make sure you remove the .json extension to the file when uploading the folder.

    mapping (uint256 => string) private _releases;

    // Prices - for each of the releases, prices must be set in Gwei.
    mapping (uint256 => uint256) private _prices;

    // Supplies - Per release, the total number of tokens that will exist per release.
    mapping (uint256 => uint256) private _supplies;

    // Tokens minted, a way to track the amount of tokens that have been minted per release.
    mapping(uint256 => uint256) private _minted;

    address _rylty = 0x02A0355545A6c6F3951288C2DC878e930a738235;
    address _bstage = 0x69226ec93F31B11a1AAB0253CA3F4bAF8D56B407;
    address _band = 0xfAE7ba7eA15Dd2eAd68593f0701793bC43B7dB10;
    address _whomag = 0x06C9dd014e5B8b103E3Df5f6BF21076Aaaf08d01;

    // Switch to close and open sale;
    
    bool _saleActive = false;

    event ReleaseMinted(address sender, uint256 quantity, uint256 tokenId);

    constructor() ERC1155("") {
        name = "Andie Case Music NFTs";
        symbol = "ACMN";
        _releases[0] = "https://ipfs.io/ipfs/QmYkZbJ2fKyUoGs7RtLzdCwv7ZSTLmNkGF8LvShotXnQE7/";
        _supplies[0] = 777;
        _prices[0] = 0.03 ether;
        _minted[0] = 0;
    }
    
    // Owner Only functions.
    
    function setSaleState(bool _newSaleActive) external onlyOwner {
    _saleActive = _newSaleActive;
    }

     // Owner mint, will reflect on total supply. 

    function ownerMint(uint256 id, uint256 amount)
        public
        onlyOwner
        {
            require(_minted[id]+ amount <= _supplies[id], "This release has reached it's limited supply!");
            _mint(msg.sender, id, amount, "");
            _minted[id]+= amount;
        }

    function changeBaseURI(string memory _uri, uint256 tokenId) 
        public 
        onlyOwner
        {
            _releases[tokenId] = _uri;
        }
        
    function changePrice(uint256 _price, uint256 tokenId)
        public
        onlyOwner
        {
            _prices[tokenId] = _price;
        }

    /**
    * @dev please take notice of the _releases comment. And make sure that the folder that is uploaded to IPFS has a file with the tokenId as the name (0,1,2,3),
    * the token Ids must me whole numbers.
    */

    function createRelease(uint256 tokenId, uint256 supply, uint256 price, string memory baseURI) 
        public
        onlyOwner 
        {
            _releases[tokenId] = baseURI;
            _supplies[tokenId] = supply;
            _prices[tokenId] = price;
        }

    function disburse() external onlyOwner {
        uint _rylamount = address(this).balance * 125/10000;
        uint _bstageamount = address(this).balance * 125/10000;
        uint _bndamount = address(this).balance * 375/1000;
        uint _distamount = address(this).balance * 10/100;
        
        require(payable(_rylty).send(_rylamount), "Failed to send to rylty stake pool");
        require(payable(_band).send(_bndamount), "Failed to send to BAND");
        require(payable(_bstage).send(_bstageamount),  "Failed to send to BSTAGE stake pool");
        require(payable(_whomag).send(_distamount), "Failed to send to Distributor");
        require(payable(msg.sender).send(address(this).balance));
    }


    function emergencyWithdraw() external payable onlyOwner {
        (bool success, ) = payable(_band).call{ value: address(this).balance }(
        ''
        );
        require(success);
    }

    // API

    function mint(uint256 id, uint256 amount)
        public
        payable
        nonReentrant
    {   
        require(_saleActive, "Sale not active");
        require(_supplies[id] > 0, "This release does not exist.");
        require(_minted[id]+ amount <= _supplies[id], "This release has reached it's limited supply!");
        require(msg.value >= amount * _prices[id], "The amount sent doesn't cover the price for the asset");
        _mint(msg.sender, id, amount, "");
        _minted[id]+= amount;
        emit ReleaseMinted(msg.sender, amount, id);
    }

    function totalSupply(uint256 id) public view returns (uint256 supply){
        return _minted[id];
    }

    /**
    * @dev Returns the URI to the contract metadata as required by OpenSea
    */

    function contractURI() public pure returns (string memory){
        return "ipfs://bafkreigpjh3cbldi2qxy2ehdux24wrwg43w4vmgxoiqcuoaczgwkkhtxm4";
    }

    function uri(uint256 tokenId) override public view returns (string memory) {
        return(string(abi.encodePacked( _releases[tokenId], Strings.toString(tokenId))));
    }

// fallback functions to handle someone sending ETH to contract

  fallback() external payable {}

  receive() external payable {}

 }

File 2 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

File 4 of 12 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

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

File 5 of 12 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 6 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 7 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

File 9 of 12 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

File 10 of 12 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

File 11 of 12 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

File 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ReleaseMinted","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"},{"stateMutability":"payable","type":"fallback"},{"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":"string","name":"_uri","type":"string"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"string","name":"baseURI","type":"string"}],"name":"createRelease","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disburse","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"bool","name":"_newSaleActive","type":"bool"}],"name":"setSaleState","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":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"supply","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"},{"stateMutability":"payable","type":"receive"}]

60806040527302a0355545a6c6f3951288c2dc878e930a738235600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507369226ec93f31b11a1aab0253ca3f4baf8d56b407600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fae7ba7ea15dd2ead68593f0701793bc43b7db10600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507306c9dd014e5b8b103e3df5f6bf21076aaaf08d01600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600e60146101000a81548160ff0219169083151502179055503480156200018057600080fd5b5060405180602001604052806000815250620001a2816200030260201b60201c565b506001600381905550620001cb620001bf6200031e60201b60201c565b6200032660201b60201c565b6040518060400160405280601581526020017f416e6469652043617365204d75736963204e46547300000000000000000000008152506005908051906020019062000218929190620003ec565b506040518060400160405280600481526020017f41434d4e000000000000000000000000000000000000000000000000000000008152506006908051906020019062000266929190620003ec565b5060405180608001604052806044815260200162004b2060449139600760008081526020019081526020016000209080519060200190620002a9929190620003ec565b506103096009600080815260200190815260200160002081905550666a94d74f43000060086000808152602001908152602001600020819055506000600a60008081526020019081526020016000208190555062000501565b80600290805190602001906200031a929190620003ec565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003fa906200049c565b90600052602060002090601f0160209004810192826200041e57600085556200046a565b82601f106200043957805160ff19168380011785556200046a565b828001600101855582156200046a579182015b82811115620004695782518255916020019190600101906200044c565b5b5090506200047991906200047d565b5090565b5b80821115620004985760008160009055506001016200047e565b5090565b60006002820490506001821680620004b557607f821691505b60208210811415620004cc57620004cb620004d2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61460f80620005116000396000f3fe6080604052600436106101435760003560e01c8063abc6fd0b116100b6578063e8a3d4851161006f578063e8a3d4851461041f578063e985e9c51461044a578063f242432a14610487578063f2fde38b146104b0578063f756332c146104d9578063fadc0d96146105025761014a565b8063abc6fd0b14610346578063b3de019c1461035d578063bd85b03914610386578063c4e37095146103c3578063d47573d4146103ec578063db2e21bc146104155761014a565b80632eb2c2d6116101085780632eb2c2d61461024a5780634e1273f414610273578063715018a6146102b05780638da5cb5b146102c757806395d89b41146102f2578063a22cb4651461031d5761014a565b8062fdd58e1461014c57806301ffc9a71461018957806306fdde03146101c65780630e89341c146101f15780631b2ef1ca1461022e5761014a565b3661014a57005b005b34801561015857600080fd5b50610173600480360381019061016e9190612cea565b61052b565b6040516101809190613911565b60405180910390f35b34801561019557600080fd5b506101b060048036038101906101ab9190612dcf565b6105f4565b6040516101bd9190613614565b60405180910390f35b3480156101d257600080fd5b506101db6106d6565b6040516101e8919061362f565b60405180910390f35b3480156101fd57600080fd5b5061021860048036038101906102139190612e85565b610764565b604051610225919061362f565b60405180910390f35b61024860048036038101906102439190612eb2565b6107a9565b005b34801561025657600080fd5b50610271600480360381019061026c9190612b44565b6109fd565b005b34801561027f57600080fd5b5061029a60048036038101906102959190612d2a565b610a9e565b6040516102a791906135bb565b60405180910390f35b3480156102bc57600080fd5b506102c5610bb7565b005b3480156102d357600080fd5b506102dc610c3f565b6040516102e991906134a7565b60405180910390f35b3480156102fe57600080fd5b50610307610c69565b604051610314919061362f565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f9190612caa565b610cf7565b005b34801561035257600080fd5b5061035b610d0d565b005b34801561036957600080fd5b50610384600480360381019061037f9190612eb2565b61109d565b005b34801561039257600080fd5b506103ad60048036038101906103a89190612e85565b611135565b6040516103ba9190613911565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190612da2565b611152565b005b3480156103f857600080fd5b50610413600480360381019061040e9190612eb2565b6111eb565b005b61041d611324565b005b34801561042b57600080fd5b5061043461143b565b604051610441919061362f565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c9190612b04565b61145b565b60405161047e9190613614565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190612c13565b6114ef565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190612ad7565b611590565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190612e29565b611688565b005b34801561050e57600080fd5b5061052960048036038101906105249190612ef2565b611730565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561059c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610593906136d1565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106bf57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106cf57506106ce8261180a565b5b9050919050565b600580546106e390613c9b565b80601f016020809104026020016040519081016040528092919081815260200182805461070f90613c9b565b801561075c5780601f106107315761010080835404028352916020019161075c565b820191906000526020600020905b81548152906001019060200180831161073f57829003601f168201915b505050505081565b60606007600083815260200190815260200160002061078283611874565b60405160200161079392919061346e565b6040516020818303038152906040529050919050565b600260035414156107ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e6906138f1565b60405180910390fd5b6002600381905550600e60149054906101000a900460ff16610846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083d90613751565b60405180910390fd5b600060096000848152602001908152602001600020541161089c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089390613851565b60405180910390fd5b600960008381526020019081526020016000205481600a6000858152602001908152602001600020546108cf9190613ad0565b1115610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090790613831565b60405180910390fd5b60086000838152602001908152602001600020548161092f9190613b57565b341015610971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096890613731565b60405180910390fd5b61098c338383604051806020016040528060008152506119d5565b80600a600084815260200190815260200160002060008282546109af9190613ad0565b925050819055507fe21e3f3ffa35882909eb26aadee18fce7c0a5b465ad776e65e080eecc255b9c33382846040516109e993929190613584565b60405180910390a160016003819055505050565b610a05611b6b565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a4b5750610a4a85610a45611b6b565b61145b565b5b610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a81906137b1565b60405180910390fd5b610a978585858585611b73565b5050505050565b60608151835114610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90613891565b60405180910390fd5b6000835167ffffffffffffffff811115610b0157610b00613e34565b5b604051908082528060200260200182016040528015610b2f5781602001602082028036833780820191505090505b50905060005b8451811015610bac57610b7c858281518110610b5457610b53613e05565b5b6020026020010151858381518110610b6f57610b6e613e05565b5b602002602001015161052b565b828281518110610b8f57610b8e613e05565b5b60200260200101818152505080610ba590613cfe565b9050610b35565b508091505092915050565b610bbf611b6b565b73ffffffffffffffffffffffffffffffffffffffff16610bdd610c3f565b73ffffffffffffffffffffffffffffffffffffffff1614610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a90613811565b60405180910390fd5b610c3d6000611e87565b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60068054610c7690613c9b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca290613c9b565b8015610cef5780601f10610cc457610100808354040283529160200191610cef565b820191906000526020600020905b815481529060010190602001808311610cd257829003601f168201915b505050505081565b610d09610d02611b6b565b8383611f4d565b5050565b610d15611b6b565b73ffffffffffffffffffffffffffffffffffffffff16610d33610c3f565b73ffffffffffffffffffffffffffffffffffffffff1614610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090613811565b60405180910390fd5b6000612710607d47610d9b9190613b57565b610da59190613b26565b90506000612710607d47610db99190613b57565b610dc39190613b26565b905060006103e861017747610dd89190613b57565b610de29190613b26565b905060006064600a47610df59190613b57565b610dff9190613b26565b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90613771565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f24906136b1565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90613691565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611050906137f1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061109757600080fd5b50505050565b6110a5611b6b565b73ffffffffffffffffffffffffffffffffffffffff166110c3610c3f565b73ffffffffffffffffffffffffffffffffffffffff1614611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090613811565b60405180910390fd5b8160086000838152602001908152602001600020819055505050565b6000600a6000838152602001908152602001600020549050919050565b61115a611b6b565b73ffffffffffffffffffffffffffffffffffffffff16611178610c3f565b73ffffffffffffffffffffffffffffffffffffffff16146111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590613811565b60405180910390fd5b80600e60146101000a81548160ff02191690831515021790555050565b6111f3611b6b565b73ffffffffffffffffffffffffffffffffffffffff16611211610c3f565b73ffffffffffffffffffffffffffffffffffffffff1614611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e90613811565b60405180910390fd5b600960008381526020019081526020016000205481600a60008581526020019081526020016000205461129a9190613ad0565b11156112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d290613831565b60405180910390fd5b6112f6338383604051806020016040528060008152506119d5565b80600a600084815260200190815260200160002060008282546113199190613ad0565b925050819055505050565b61132c611b6b565b73ffffffffffffffffffffffffffffffffffffffff1661134a610c3f565b73ffffffffffffffffffffffffffffffffffffffff16146113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790613811565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516113e890613492565b60006040518083038185875af1925050503d8060008114611425576040519150601f19603f3d011682016040523d82523d6000602084013e61142a565b606091505b505090508061143857600080fd5b50565b606060405180608001604052806042815260200161459860429139905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114f7611b6b565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061153d575061153c85611537611b6b565b61145b565b5b61157c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157390613711565b60405180910390fd5b61158985858585856120ba565b5050505050565b611598611b6b565b73ffffffffffffffffffffffffffffffffffffffff166115b6610c3f565b73ffffffffffffffffffffffffffffffffffffffff161461160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390613811565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561167c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611673906136f1565b60405180910390fd5b61168581611e87565b50565b611690611b6b565b73ffffffffffffffffffffffffffffffffffffffff166116ae610c3f565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90613811565b60405180910390fd5b8160076000838152602001908152602001600020908051906020019061172b9291906127af565b505050565b611738611b6b565b73ffffffffffffffffffffffffffffffffffffffff16611756610c3f565b73ffffffffffffffffffffffffffffffffffffffff16146117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a390613811565b60405180910390fd5b806007600086815260200190815260200160002090805190602001906117d39291906127af565b5082600960008681526020019081526020016000208190555081600860008681526020019081526020016000208190555050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b606060008214156118bc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506119d0565b600082905060005b600082146118ee5780806118d790613cfe565b915050600a826118e79190613b26565b91506118c4565b60008167ffffffffffffffff81111561190a57611909613e34565b5b6040519080825280601f01601f19166020018201604052801561193c5781602001600182028036833780820191505090505b5090505b600085146119c9576001826119559190613bb1565b9150600a856119649190613d47565b60306119709190613ad0565b60f81b81838151811061198657611985613e05565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856119c29190613b26565b9450611940565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3c906138d1565b60405180910390fd5b6000611a4f611b6b565b9050611a7081600087611a618861233c565b611a6a8861233c565b876123b6565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611acf9190613ad0565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611b4d92919061392c565b60405180910390a4611b64816000878787876123be565b5050505050565b600033905090565b8151835114611bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bae906138b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e90613791565b60405180910390fd5b6000611c31611b6b565b9050611c418187878787876123b6565b60005b8451811015611df2576000858281518110611c6257611c61613e05565b5b602002602001015190506000858381518110611c8157611c80613e05565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d19906137d1565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd79190613ad0565b9250508190555050505080611deb90613cfe565b9050611c44565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611e699291906135dd565b60405180910390a4611e7f8187878787876125a5565b505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb390613871565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120ad9190613614565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561212a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212190613791565b60405180910390fd5b6000612134611b6b565b90506121548187876121458861233c565b61214e8861233c565b876123b6565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e2906137d1565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a09190613ad0565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161231d92919061392c565b60405180910390a46123338288888888886123be565b50505050505050565b60606000600167ffffffffffffffff81111561235b5761235a613e34565b5b6040519080825280602002602001820160405280156123895781602001602082028036833780820191505090505b50905082816000815181106123a1576123a0613e05565b5b60200260200101818152505080915050919050565b505050505050565b6123dd8473ffffffffffffffffffffffffffffffffffffffff1661278c565b1561259d578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161242395949392919061352a565b602060405180830381600087803b15801561243d57600080fd5b505af192505050801561246e57506040513d601f19601f8201168201806040525081019061246b9190612dfc565b60015b6125145761247a613e63565b806308c379a014156124d7575061248f6144a5565b8061249a57506124d9565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ce919061362f565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250b90613651565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461259b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259290613671565b60405180910390fd5b505b505050505050565b6125c48473ffffffffffffffffffffffffffffffffffffffff1661278c565b15612784578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161260a9594939291906134c2565b602060405180830381600087803b15801561262457600080fd5b505af192505050801561265557506040513d601f19601f820116820180604052508101906126529190612dfc565b60015b6126fb57612661613e63565b806308c379a014156126be57506126766144a5565b8061268157506126c0565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b5919061362f565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f290613651565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277990613671565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546127bb90613c9b565b90600052602060002090601f0160209004810192826127dd5760008555612824565b82601f106127f657805160ff1916838001178555612824565b82800160010185558215612824579182015b82811115612823578251825591602001919060010190612808565b5b5090506128319190612835565b5090565b5b8082111561284e576000816000905550600101612836565b5090565b60006128656128608461397a565b613955565b9050808382526020820190508285602086028201111561288857612887613e8a565b5b60005b858110156128b8578161289e88826129b6565b84526020840193506020830192505060018101905061288b565b5050509392505050565b60006128d56128d0846139a6565b613955565b905080838252602082019050828560208602820111156128f8576128f7613e8a565b5b60005b85811015612928578161290e8882612ac2565b8452602084019350602083019250506001810190506128fb565b5050509392505050565b6000612945612940846139d2565b613955565b90508281526020810184848401111561296157612960613e8f565b5b61296c848285613c59565b509392505050565b600061298761298284613a03565b613955565b9050828152602081018484840111156129a3576129a2613e8f565b5b6129ae848285613c59565b509392505050565b6000813590506129c58161453b565b92915050565b600082601f8301126129e0576129df613e85565b5b81356129f0848260208601612852565b91505092915050565b600082601f830112612a0e57612a0d613e85565b5b8135612a1e8482602086016128c2565b91505092915050565b600081359050612a3681614552565b92915050565b600081359050612a4b81614569565b92915050565b600081519050612a6081614569565b92915050565b600082601f830112612a7b57612a7a613e85565b5b8135612a8b848260208601612932565b91505092915050565b600082601f830112612aa957612aa8613e85565b5b8135612ab9848260208601612974565b91505092915050565b600081359050612ad181614580565b92915050565b600060208284031215612aed57612aec613e99565b5b6000612afb848285016129b6565b91505092915050565b60008060408385031215612b1b57612b1a613e99565b5b6000612b29858286016129b6565b9250506020612b3a858286016129b6565b9150509250929050565b600080600080600060a08688031215612b6057612b5f613e99565b5b6000612b6e888289016129b6565b9550506020612b7f888289016129b6565b945050604086013567ffffffffffffffff811115612ba057612b9f613e94565b5b612bac888289016129f9565b935050606086013567ffffffffffffffff811115612bcd57612bcc613e94565b5b612bd9888289016129f9565b925050608086013567ffffffffffffffff811115612bfa57612bf9613e94565b5b612c0688828901612a66565b9150509295509295909350565b600080600080600060a08688031215612c2f57612c2e613e99565b5b6000612c3d888289016129b6565b9550506020612c4e888289016129b6565b9450506040612c5f88828901612ac2565b9350506060612c7088828901612ac2565b925050608086013567ffffffffffffffff811115612c9157612c90613e94565b5b612c9d88828901612a66565b9150509295509295909350565b60008060408385031215612cc157612cc0613e99565b5b6000612ccf858286016129b6565b9250506020612ce085828601612a27565b9150509250929050565b60008060408385031215612d0157612d00613e99565b5b6000612d0f858286016129b6565b9250506020612d2085828601612ac2565b9150509250929050565b60008060408385031215612d4157612d40613e99565b5b600083013567ffffffffffffffff811115612d5f57612d5e613e94565b5b612d6b858286016129cb565b925050602083013567ffffffffffffffff811115612d8c57612d8b613e94565b5b612d98858286016129f9565b9150509250929050565b600060208284031215612db857612db7613e99565b5b6000612dc684828501612a27565b91505092915050565b600060208284031215612de557612de4613e99565b5b6000612df384828501612a3c565b91505092915050565b600060208284031215612e1257612e11613e99565b5b6000612e2084828501612a51565b91505092915050565b60008060408385031215612e4057612e3f613e99565b5b600083013567ffffffffffffffff811115612e5e57612e5d613e94565b5b612e6a85828601612a94565b9250506020612e7b85828601612ac2565b9150509250929050565b600060208284031215612e9b57612e9a613e99565b5b6000612ea984828501612ac2565b91505092915050565b60008060408385031215612ec957612ec8613e99565b5b6000612ed785828601612ac2565b9250506020612ee885828601612ac2565b9150509250929050565b60008060008060808587031215612f0c57612f0b613e99565b5b6000612f1a87828801612ac2565b9450506020612f2b87828801612ac2565b9350506040612f3c87828801612ac2565b925050606085013567ffffffffffffffff811115612f5d57612f5c613e94565b5b612f6987828801612a94565b91505092959194509250565b6000612f818383613450565b60208301905092915050565b612f9681613be5565b82525050565b6000612fa782613a59565b612fb18185613a87565b9350612fbc83613a34565b8060005b83811015612fed578151612fd48882612f75565b9750612fdf83613a7a565b925050600181019050612fc0565b5085935050505092915050565b61300381613bf7565b82525050565b600061301482613a64565b61301e8185613a98565b935061302e818560208601613c68565b61303781613e9e565b840191505092915050565b600061304d82613a6f565b6130578185613ab4565b9350613067818560208601613c68565b61307081613e9e565b840191505092915050565b600061308682613a6f565b6130908185613ac5565b93506130a0818560208601613c68565b80840191505092915050565b600081546130b981613c9b565b6130c38186613ac5565b945060018216600081146130de57600181146130ef57613122565b60ff19831686528186019350613122565b6130f885613a44565b60005b8381101561311a578154818901526001820191506020810190506130fb565b838801955050505b50505092915050565b6000613138603483613ab4565b915061314382613ebc565b604082019050919050565b600061315b602883613ab4565b915061316682613f0b565b604082019050919050565b600061317e602383613ab4565b915061318982613f5a565b604082019050919050565b60006131a1601683613ab4565b91506131ac82613fa9565b602082019050919050565b60006131c4602b83613ab4565b91506131cf82613fd2565b604082019050919050565b60006131e7602683613ab4565b91506131f282614021565b604082019050919050565b600061320a602983613ab4565b915061321582614070565b604082019050919050565b600061322d603583613ab4565b9150613238826140bf565b604082019050919050565b6000613250600f83613ab4565b915061325b8261410e565b602082019050919050565b6000613273602283613ab4565b915061327e82614137565b604082019050919050565b6000613296602583613ab4565b91506132a182614186565b604082019050919050565b60006132b9603283613ab4565b91506132c4826141d5565b604082019050919050565b60006132dc602a83613ab4565b91506132e782614224565b604082019050919050565b60006132ff601d83613ab4565b915061330a82614273565b602082019050919050565b6000613322602083613ab4565b915061332d8261429c565b602082019050919050565b6000613345602d83613ab4565b9150613350826142c5565b604082019050919050565b6000613368601c83613ab4565b915061337382614314565b602082019050919050565b600061338b600083613aa9565b91506133968261433d565b600082019050919050565b60006133ae602983613ab4565b91506133b982614340565b604082019050919050565b60006133d1602983613ab4565b91506133dc8261438f565b604082019050919050565b60006133f4602883613ab4565b91506133ff826143de565b604082019050919050565b6000613417602183613ab4565b91506134228261442d565b604082019050919050565b600061343a601f83613ab4565b91506134458261447c565b602082019050919050565b61345981613c4f565b82525050565b61346881613c4f565b82525050565b600061347a82856130ac565b9150613486828461307b565b91508190509392505050565b600061349d8261337e565b9150819050919050565b60006020820190506134bc6000830184612f8d565b92915050565b600060a0820190506134d76000830188612f8d565b6134e46020830187612f8d565b81810360408301526134f68186612f9c565b9050818103606083015261350a8185612f9c565b9050818103608083015261351e8184613009565b90509695505050505050565b600060a08201905061353f6000830188612f8d565b61354c6020830187612f8d565b613559604083018661345f565b613566606083018561345f565b81810360808301526135788184613009565b90509695505050505050565b60006060820190506135996000830186612f8d565b6135a6602083018561345f565b6135b3604083018461345f565b949350505050565b600060208201905081810360008301526135d58184612f9c565b905092915050565b600060408201905081810360008301526135f78185612f9c565b9050818103602083015261360b8184612f9c565b90509392505050565b60006020820190506136296000830184612ffa565b92915050565b600060208201905081810360008301526136498184613042565b905092915050565b6000602082019050818103600083015261366a8161312b565b9050919050565b6000602082019050818103600083015261368a8161314e565b9050919050565b600060208201905081810360008301526136aa81613171565b9050919050565b600060208201905081810360008301526136ca81613194565b9050919050565b600060208201905081810360008301526136ea816131b7565b9050919050565b6000602082019050818103600083015261370a816131da565b9050919050565b6000602082019050818103600083015261372a816131fd565b9050919050565b6000602082019050818103600083015261374a81613220565b9050919050565b6000602082019050818103600083015261376a81613243565b9050919050565b6000602082019050818103600083015261378a81613266565b9050919050565b600060208201905081810360008301526137aa81613289565b9050919050565b600060208201905081810360008301526137ca816132ac565b9050919050565b600060208201905081810360008301526137ea816132cf565b9050919050565b6000602082019050818103600083015261380a816132f2565b9050919050565b6000602082019050818103600083015261382a81613315565b9050919050565b6000602082019050818103600083015261384a81613338565b9050919050565b6000602082019050818103600083015261386a8161335b565b9050919050565b6000602082019050818103600083015261388a816133a1565b9050919050565b600060208201905081810360008301526138aa816133c4565b9050919050565b600060208201905081810360008301526138ca816133e7565b9050919050565b600060208201905081810360008301526138ea8161340a565b9050919050565b6000602082019050818103600083015261390a8161342d565b9050919050565b6000602082019050613926600083018461345f565b92915050565b6000604082019050613941600083018561345f565b61394e602083018461345f565b9392505050565b600061395f613970565b905061396b8282613ccd565b919050565b6000604051905090565b600067ffffffffffffffff82111561399557613994613e34565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139c1576139c0613e34565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139ed576139ec613e34565b5b6139f682613e9e565b9050602081019050919050565b600067ffffffffffffffff821115613a1e57613a1d613e34565b5b613a2782613e9e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613adb82613c4f565b9150613ae683613c4f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b1b57613b1a613d78565b5b828201905092915050565b6000613b3182613c4f565b9150613b3c83613c4f565b925082613b4c57613b4b613da7565b5b828204905092915050565b6000613b6282613c4f565b9150613b6d83613c4f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ba657613ba5613d78565b5b828202905092915050565b6000613bbc82613c4f565b9150613bc783613c4f565b925082821015613bda57613bd9613d78565b5b828203905092915050565b6000613bf082613c2f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c86578082015181840152602081019050613c6b565b83811115613c95576000848401525b50505050565b60006002820490506001821680613cb357607f821691505b60208210811415613cc757613cc6613dd6565b5b50919050565b613cd682613e9e565b810181811067ffffffffffffffff82111715613cf557613cf4613e34565b5b80604052505050565b6000613d0982613c4f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d3c57613d3b613d78565b5b600182019050919050565b6000613d5282613c4f565b9150613d5d83613c4f565b925082613d6d57613d6c613da7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613e825760046000803e613e7f600051613eaf565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e6420746f20425354414745207374616b65207060008201527f6f6f6c0000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e6420746f2042414e4400000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f54686520616d6f756e742073656e7420646f65736e277420636f76657220746860008201527f6520707269636520666f72207468652061737365740000000000000000000000602082015250565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b7f4661696c656420746f2073656e6420746f2072796c7479207374616b6520706f60008201527f6f6c000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e6420746f204469737472696275746f72000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546869732072656c656173652068617320726561636865642069742773206c6960008201527f6d6974656420737570706c792100000000000000000000000000000000000000602082015250565b7f546869732072656c6561736520646f6573206e6f742065786973742e00000000600082015250565b50565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600060443d10156144b557614538565b6144bd613970565b60043d036004823e80513d602482011167ffffffffffffffff821117156144e5575050614538565b808201805167ffffffffffffffff8111156145035750505050614538565b80602083010160043d038501811115614520575050505050614538565b61452f82602001850186613ccd565b82955050505050505b90565b61454481613be5565b811461454f57600080fd5b50565b61455b81613bf7565b811461456657600080fd5b50565b61457281613c03565b811461457d57600080fd5b50565b61458981613c4f565b811461459457600080fd5b5056fe697066733a2f2f6261666b72656967706a683363626c64693271787932656864757832347772776734337734766d67786f697163756f61637a67776b6b6874786d34a2646970667358221220a57448b71041e8331cad5109ba5ac1c5fe4c42127f2a524825b720865138350e64736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d596b5a624a32664b79556f47733752744c7a64437776375a53544c6d4e6b4746384c7653686f74586e5145372f

Deployed Bytecode

0x6080604052600436106101435760003560e01c8063abc6fd0b116100b6578063e8a3d4851161006f578063e8a3d4851461041f578063e985e9c51461044a578063f242432a14610487578063f2fde38b146104b0578063f756332c146104d9578063fadc0d96146105025761014a565b8063abc6fd0b14610346578063b3de019c1461035d578063bd85b03914610386578063c4e37095146103c3578063d47573d4146103ec578063db2e21bc146104155761014a565b80632eb2c2d6116101085780632eb2c2d61461024a5780634e1273f414610273578063715018a6146102b05780638da5cb5b146102c757806395d89b41146102f2578063a22cb4651461031d5761014a565b8062fdd58e1461014c57806301ffc9a71461018957806306fdde03146101c65780630e89341c146101f15780631b2ef1ca1461022e5761014a565b3661014a57005b005b34801561015857600080fd5b50610173600480360381019061016e9190612cea565b61052b565b6040516101809190613911565b60405180910390f35b34801561019557600080fd5b506101b060048036038101906101ab9190612dcf565b6105f4565b6040516101bd9190613614565b60405180910390f35b3480156101d257600080fd5b506101db6106d6565b6040516101e8919061362f565b60405180910390f35b3480156101fd57600080fd5b5061021860048036038101906102139190612e85565b610764565b604051610225919061362f565b60405180910390f35b61024860048036038101906102439190612eb2565b6107a9565b005b34801561025657600080fd5b50610271600480360381019061026c9190612b44565b6109fd565b005b34801561027f57600080fd5b5061029a60048036038101906102959190612d2a565b610a9e565b6040516102a791906135bb565b60405180910390f35b3480156102bc57600080fd5b506102c5610bb7565b005b3480156102d357600080fd5b506102dc610c3f565b6040516102e991906134a7565b60405180910390f35b3480156102fe57600080fd5b50610307610c69565b604051610314919061362f565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f9190612caa565b610cf7565b005b34801561035257600080fd5b5061035b610d0d565b005b34801561036957600080fd5b50610384600480360381019061037f9190612eb2565b61109d565b005b34801561039257600080fd5b506103ad60048036038101906103a89190612e85565b611135565b6040516103ba9190613911565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190612da2565b611152565b005b3480156103f857600080fd5b50610413600480360381019061040e9190612eb2565b6111eb565b005b61041d611324565b005b34801561042b57600080fd5b5061043461143b565b604051610441919061362f565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c9190612b04565b61145b565b60405161047e9190613614565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190612c13565b6114ef565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190612ad7565b611590565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190612e29565b611688565b005b34801561050e57600080fd5b5061052960048036038101906105249190612ef2565b611730565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561059c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610593906136d1565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106bf57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106cf57506106ce8261180a565b5b9050919050565b600580546106e390613c9b565b80601f016020809104026020016040519081016040528092919081815260200182805461070f90613c9b565b801561075c5780601f106107315761010080835404028352916020019161075c565b820191906000526020600020905b81548152906001019060200180831161073f57829003601f168201915b505050505081565b60606007600083815260200190815260200160002061078283611874565b60405160200161079392919061346e565b6040516020818303038152906040529050919050565b600260035414156107ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e6906138f1565b60405180910390fd5b6002600381905550600e60149054906101000a900460ff16610846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083d90613751565b60405180910390fd5b600060096000848152602001908152602001600020541161089c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089390613851565b60405180910390fd5b600960008381526020019081526020016000205481600a6000858152602001908152602001600020546108cf9190613ad0565b1115610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090790613831565b60405180910390fd5b60086000838152602001908152602001600020548161092f9190613b57565b341015610971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096890613731565b60405180910390fd5b61098c338383604051806020016040528060008152506119d5565b80600a600084815260200190815260200160002060008282546109af9190613ad0565b925050819055507fe21e3f3ffa35882909eb26aadee18fce7c0a5b465ad776e65e080eecc255b9c33382846040516109e993929190613584565b60405180910390a160016003819055505050565b610a05611b6b565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a4b5750610a4a85610a45611b6b565b61145b565b5b610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a81906137b1565b60405180910390fd5b610a978585858585611b73565b5050505050565b60608151835114610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90613891565b60405180910390fd5b6000835167ffffffffffffffff811115610b0157610b00613e34565b5b604051908082528060200260200182016040528015610b2f5781602001602082028036833780820191505090505b50905060005b8451811015610bac57610b7c858281518110610b5457610b53613e05565b5b6020026020010151858381518110610b6f57610b6e613e05565b5b602002602001015161052b565b828281518110610b8f57610b8e613e05565b5b60200260200101818152505080610ba590613cfe565b9050610b35565b508091505092915050565b610bbf611b6b565b73ffffffffffffffffffffffffffffffffffffffff16610bdd610c3f565b73ffffffffffffffffffffffffffffffffffffffff1614610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a90613811565b60405180910390fd5b610c3d6000611e87565b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60068054610c7690613c9b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca290613c9b565b8015610cef5780601f10610cc457610100808354040283529160200191610cef565b820191906000526020600020905b815481529060010190602001808311610cd257829003601f168201915b505050505081565b610d09610d02611b6b565b8383611f4d565b5050565b610d15611b6b565b73ffffffffffffffffffffffffffffffffffffffff16610d33610c3f565b73ffffffffffffffffffffffffffffffffffffffff1614610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090613811565b60405180910390fd5b6000612710607d47610d9b9190613b57565b610da59190613b26565b90506000612710607d47610db99190613b57565b610dc39190613b26565b905060006103e861017747610dd89190613b57565b610de29190613b26565b905060006064600a47610df59190613b57565b610dff9190613b26565b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90613771565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f24906136b1565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90613691565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611050906137f1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061109757600080fd5b50505050565b6110a5611b6b565b73ffffffffffffffffffffffffffffffffffffffff166110c3610c3f565b73ffffffffffffffffffffffffffffffffffffffff1614611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090613811565b60405180910390fd5b8160086000838152602001908152602001600020819055505050565b6000600a6000838152602001908152602001600020549050919050565b61115a611b6b565b73ffffffffffffffffffffffffffffffffffffffff16611178610c3f565b73ffffffffffffffffffffffffffffffffffffffff16146111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590613811565b60405180910390fd5b80600e60146101000a81548160ff02191690831515021790555050565b6111f3611b6b565b73ffffffffffffffffffffffffffffffffffffffff16611211610c3f565b73ffffffffffffffffffffffffffffffffffffffff1614611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e90613811565b60405180910390fd5b600960008381526020019081526020016000205481600a60008581526020019081526020016000205461129a9190613ad0565b11156112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d290613831565b60405180910390fd5b6112f6338383604051806020016040528060008152506119d5565b80600a600084815260200190815260200160002060008282546113199190613ad0565b925050819055505050565b61132c611b6b565b73ffffffffffffffffffffffffffffffffffffffff1661134a610c3f565b73ffffffffffffffffffffffffffffffffffffffff16146113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790613811565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516113e890613492565b60006040518083038185875af1925050503d8060008114611425576040519150601f19603f3d011682016040523d82523d6000602084013e61142a565b606091505b505090508061143857600080fd5b50565b606060405180608001604052806042815260200161459860429139905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114f7611b6b565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061153d575061153c85611537611b6b565b61145b565b5b61157c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157390613711565b60405180910390fd5b61158985858585856120ba565b5050505050565b611598611b6b565b73ffffffffffffffffffffffffffffffffffffffff166115b6610c3f565b73ffffffffffffffffffffffffffffffffffffffff161461160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390613811565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561167c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611673906136f1565b60405180910390fd5b61168581611e87565b50565b611690611b6b565b73ffffffffffffffffffffffffffffffffffffffff166116ae610c3f565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90613811565b60405180910390fd5b8160076000838152602001908152602001600020908051906020019061172b9291906127af565b505050565b611738611b6b565b73ffffffffffffffffffffffffffffffffffffffff16611756610c3f565b73ffffffffffffffffffffffffffffffffffffffff16146117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a390613811565b60405180910390fd5b806007600086815260200190815260200160002090805190602001906117d39291906127af565b5082600960008681526020019081526020016000208190555081600860008681526020019081526020016000208190555050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b606060008214156118bc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506119d0565b600082905060005b600082146118ee5780806118d790613cfe565b915050600a826118e79190613b26565b91506118c4565b60008167ffffffffffffffff81111561190a57611909613e34565b5b6040519080825280601f01601f19166020018201604052801561193c5781602001600182028036833780820191505090505b5090505b600085146119c9576001826119559190613bb1565b9150600a856119649190613d47565b60306119709190613ad0565b60f81b81838151811061198657611985613e05565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856119c29190613b26565b9450611940565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3c906138d1565b60405180910390fd5b6000611a4f611b6b565b9050611a7081600087611a618861233c565b611a6a8861233c565b876123b6565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611acf9190613ad0565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611b4d92919061392c565b60405180910390a4611b64816000878787876123be565b5050505050565b600033905090565b8151835114611bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bae906138b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e90613791565b60405180910390fd5b6000611c31611b6b565b9050611c418187878787876123b6565b60005b8451811015611df2576000858281518110611c6257611c61613e05565b5b602002602001015190506000858381518110611c8157611c80613e05565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d19906137d1565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd79190613ad0565b9250508190555050505080611deb90613cfe565b9050611c44565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611e699291906135dd565b60405180910390a4611e7f8187878787876125a5565b505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb390613871565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120ad9190613614565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561212a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212190613791565b60405180910390fd5b6000612134611b6b565b90506121548187876121458861233c565b61214e8861233c565b876123b6565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e2906137d1565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a09190613ad0565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161231d92919061392c565b60405180910390a46123338288888888886123be565b50505050505050565b60606000600167ffffffffffffffff81111561235b5761235a613e34565b5b6040519080825280602002602001820160405280156123895781602001602082028036833780820191505090505b50905082816000815181106123a1576123a0613e05565b5b60200260200101818152505080915050919050565b505050505050565b6123dd8473ffffffffffffffffffffffffffffffffffffffff1661278c565b1561259d578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161242395949392919061352a565b602060405180830381600087803b15801561243d57600080fd5b505af192505050801561246e57506040513d601f19601f8201168201806040525081019061246b9190612dfc565b60015b6125145761247a613e63565b806308c379a014156124d7575061248f6144a5565b8061249a57506124d9565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ce919061362f565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250b90613651565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461259b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259290613671565b60405180910390fd5b505b505050505050565b6125c48473ffffffffffffffffffffffffffffffffffffffff1661278c565b15612784578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161260a9594939291906134c2565b602060405180830381600087803b15801561262457600080fd5b505af192505050801561265557506040513d601f19601f820116820180604052508101906126529190612dfc565b60015b6126fb57612661613e63565b806308c379a014156126be57506126766144a5565b8061268157506126c0565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b5919061362f565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f290613651565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277990613671565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546127bb90613c9b565b90600052602060002090601f0160209004810192826127dd5760008555612824565b82601f106127f657805160ff1916838001178555612824565b82800160010185558215612824579182015b82811115612823578251825591602001919060010190612808565b5b5090506128319190612835565b5090565b5b8082111561284e576000816000905550600101612836565b5090565b60006128656128608461397a565b613955565b9050808382526020820190508285602086028201111561288857612887613e8a565b5b60005b858110156128b8578161289e88826129b6565b84526020840193506020830192505060018101905061288b565b5050509392505050565b60006128d56128d0846139a6565b613955565b905080838252602082019050828560208602820111156128f8576128f7613e8a565b5b60005b85811015612928578161290e8882612ac2565b8452602084019350602083019250506001810190506128fb565b5050509392505050565b6000612945612940846139d2565b613955565b90508281526020810184848401111561296157612960613e8f565b5b61296c848285613c59565b509392505050565b600061298761298284613a03565b613955565b9050828152602081018484840111156129a3576129a2613e8f565b5b6129ae848285613c59565b509392505050565b6000813590506129c58161453b565b92915050565b600082601f8301126129e0576129df613e85565b5b81356129f0848260208601612852565b91505092915050565b600082601f830112612a0e57612a0d613e85565b5b8135612a1e8482602086016128c2565b91505092915050565b600081359050612a3681614552565b92915050565b600081359050612a4b81614569565b92915050565b600081519050612a6081614569565b92915050565b600082601f830112612a7b57612a7a613e85565b5b8135612a8b848260208601612932565b91505092915050565b600082601f830112612aa957612aa8613e85565b5b8135612ab9848260208601612974565b91505092915050565b600081359050612ad181614580565b92915050565b600060208284031215612aed57612aec613e99565b5b6000612afb848285016129b6565b91505092915050565b60008060408385031215612b1b57612b1a613e99565b5b6000612b29858286016129b6565b9250506020612b3a858286016129b6565b9150509250929050565b600080600080600060a08688031215612b6057612b5f613e99565b5b6000612b6e888289016129b6565b9550506020612b7f888289016129b6565b945050604086013567ffffffffffffffff811115612ba057612b9f613e94565b5b612bac888289016129f9565b935050606086013567ffffffffffffffff811115612bcd57612bcc613e94565b5b612bd9888289016129f9565b925050608086013567ffffffffffffffff811115612bfa57612bf9613e94565b5b612c0688828901612a66565b9150509295509295909350565b600080600080600060a08688031215612c2f57612c2e613e99565b5b6000612c3d888289016129b6565b9550506020612c4e888289016129b6565b9450506040612c5f88828901612ac2565b9350506060612c7088828901612ac2565b925050608086013567ffffffffffffffff811115612c9157612c90613e94565b5b612c9d88828901612a66565b9150509295509295909350565b60008060408385031215612cc157612cc0613e99565b5b6000612ccf858286016129b6565b9250506020612ce085828601612a27565b9150509250929050565b60008060408385031215612d0157612d00613e99565b5b6000612d0f858286016129b6565b9250506020612d2085828601612ac2565b9150509250929050565b60008060408385031215612d4157612d40613e99565b5b600083013567ffffffffffffffff811115612d5f57612d5e613e94565b5b612d6b858286016129cb565b925050602083013567ffffffffffffffff811115612d8c57612d8b613e94565b5b612d98858286016129f9565b9150509250929050565b600060208284031215612db857612db7613e99565b5b6000612dc684828501612a27565b91505092915050565b600060208284031215612de557612de4613e99565b5b6000612df384828501612a3c565b91505092915050565b600060208284031215612e1257612e11613e99565b5b6000612e2084828501612a51565b91505092915050565b60008060408385031215612e4057612e3f613e99565b5b600083013567ffffffffffffffff811115612e5e57612e5d613e94565b5b612e6a85828601612a94565b9250506020612e7b85828601612ac2565b9150509250929050565b600060208284031215612e9b57612e9a613e99565b5b6000612ea984828501612ac2565b91505092915050565b60008060408385031215612ec957612ec8613e99565b5b6000612ed785828601612ac2565b9250506020612ee885828601612ac2565b9150509250929050565b60008060008060808587031215612f0c57612f0b613e99565b5b6000612f1a87828801612ac2565b9450506020612f2b87828801612ac2565b9350506040612f3c87828801612ac2565b925050606085013567ffffffffffffffff811115612f5d57612f5c613e94565b5b612f6987828801612a94565b91505092959194509250565b6000612f818383613450565b60208301905092915050565b612f9681613be5565b82525050565b6000612fa782613a59565b612fb18185613a87565b9350612fbc83613a34565b8060005b83811015612fed578151612fd48882612f75565b9750612fdf83613a7a565b925050600181019050612fc0565b5085935050505092915050565b61300381613bf7565b82525050565b600061301482613a64565b61301e8185613a98565b935061302e818560208601613c68565b61303781613e9e565b840191505092915050565b600061304d82613a6f565b6130578185613ab4565b9350613067818560208601613c68565b61307081613e9e565b840191505092915050565b600061308682613a6f565b6130908185613ac5565b93506130a0818560208601613c68565b80840191505092915050565b600081546130b981613c9b565b6130c38186613ac5565b945060018216600081146130de57600181146130ef57613122565b60ff19831686528186019350613122565b6130f885613a44565b60005b8381101561311a578154818901526001820191506020810190506130fb565b838801955050505b50505092915050565b6000613138603483613ab4565b915061314382613ebc565b604082019050919050565b600061315b602883613ab4565b915061316682613f0b565b604082019050919050565b600061317e602383613ab4565b915061318982613f5a565b604082019050919050565b60006131a1601683613ab4565b91506131ac82613fa9565b602082019050919050565b60006131c4602b83613ab4565b91506131cf82613fd2565b604082019050919050565b60006131e7602683613ab4565b91506131f282614021565b604082019050919050565b600061320a602983613ab4565b915061321582614070565b604082019050919050565b600061322d603583613ab4565b9150613238826140bf565b604082019050919050565b6000613250600f83613ab4565b915061325b8261410e565b602082019050919050565b6000613273602283613ab4565b915061327e82614137565b604082019050919050565b6000613296602583613ab4565b91506132a182614186565b604082019050919050565b60006132b9603283613ab4565b91506132c4826141d5565b604082019050919050565b60006132dc602a83613ab4565b91506132e782614224565b604082019050919050565b60006132ff601d83613ab4565b915061330a82614273565b602082019050919050565b6000613322602083613ab4565b915061332d8261429c565b602082019050919050565b6000613345602d83613ab4565b9150613350826142c5565b604082019050919050565b6000613368601c83613ab4565b915061337382614314565b602082019050919050565b600061338b600083613aa9565b91506133968261433d565b600082019050919050565b60006133ae602983613ab4565b91506133b982614340565b604082019050919050565b60006133d1602983613ab4565b91506133dc8261438f565b604082019050919050565b60006133f4602883613ab4565b91506133ff826143de565b604082019050919050565b6000613417602183613ab4565b91506134228261442d565b604082019050919050565b600061343a601f83613ab4565b91506134458261447c565b602082019050919050565b61345981613c4f565b82525050565b61346881613c4f565b82525050565b600061347a82856130ac565b9150613486828461307b565b91508190509392505050565b600061349d8261337e565b9150819050919050565b60006020820190506134bc6000830184612f8d565b92915050565b600060a0820190506134d76000830188612f8d565b6134e46020830187612f8d565b81810360408301526134f68186612f9c565b9050818103606083015261350a8185612f9c565b9050818103608083015261351e8184613009565b90509695505050505050565b600060a08201905061353f6000830188612f8d565b61354c6020830187612f8d565b613559604083018661345f565b613566606083018561345f565b81810360808301526135788184613009565b90509695505050505050565b60006060820190506135996000830186612f8d565b6135a6602083018561345f565b6135b3604083018461345f565b949350505050565b600060208201905081810360008301526135d58184612f9c565b905092915050565b600060408201905081810360008301526135f78185612f9c565b9050818103602083015261360b8184612f9c565b90509392505050565b60006020820190506136296000830184612ffa565b92915050565b600060208201905081810360008301526136498184613042565b905092915050565b6000602082019050818103600083015261366a8161312b565b9050919050565b6000602082019050818103600083015261368a8161314e565b9050919050565b600060208201905081810360008301526136aa81613171565b9050919050565b600060208201905081810360008301526136ca81613194565b9050919050565b600060208201905081810360008301526136ea816131b7565b9050919050565b6000602082019050818103600083015261370a816131da565b9050919050565b6000602082019050818103600083015261372a816131fd565b9050919050565b6000602082019050818103600083015261374a81613220565b9050919050565b6000602082019050818103600083015261376a81613243565b9050919050565b6000602082019050818103600083015261378a81613266565b9050919050565b600060208201905081810360008301526137aa81613289565b9050919050565b600060208201905081810360008301526137ca816132ac565b9050919050565b600060208201905081810360008301526137ea816132cf565b9050919050565b6000602082019050818103600083015261380a816132f2565b9050919050565b6000602082019050818103600083015261382a81613315565b9050919050565b6000602082019050818103600083015261384a81613338565b9050919050565b6000602082019050818103600083015261386a8161335b565b9050919050565b6000602082019050818103600083015261388a816133a1565b9050919050565b600060208201905081810360008301526138aa816133c4565b9050919050565b600060208201905081810360008301526138ca816133e7565b9050919050565b600060208201905081810360008301526138ea8161340a565b9050919050565b6000602082019050818103600083015261390a8161342d565b9050919050565b6000602082019050613926600083018461345f565b92915050565b6000604082019050613941600083018561345f565b61394e602083018461345f565b9392505050565b600061395f613970565b905061396b8282613ccd565b919050565b6000604051905090565b600067ffffffffffffffff82111561399557613994613e34565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139c1576139c0613e34565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139ed576139ec613e34565b5b6139f682613e9e565b9050602081019050919050565b600067ffffffffffffffff821115613a1e57613a1d613e34565b5b613a2782613e9e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613adb82613c4f565b9150613ae683613c4f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b1b57613b1a613d78565b5b828201905092915050565b6000613b3182613c4f565b9150613b3c83613c4f565b925082613b4c57613b4b613da7565b5b828204905092915050565b6000613b6282613c4f565b9150613b6d83613c4f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ba657613ba5613d78565b5b828202905092915050565b6000613bbc82613c4f565b9150613bc783613c4f565b925082821015613bda57613bd9613d78565b5b828203905092915050565b6000613bf082613c2f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c86578082015181840152602081019050613c6b565b83811115613c95576000848401525b50505050565b60006002820490506001821680613cb357607f821691505b60208210811415613cc757613cc6613dd6565b5b50919050565b613cd682613e9e565b810181811067ffffffffffffffff82111715613cf557613cf4613e34565b5b80604052505050565b6000613d0982613c4f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d3c57613d3b613d78565b5b600182019050919050565b6000613d5282613c4f565b9150613d5d83613c4f565b925082613d6d57613d6c613da7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613e825760046000803e613e7f600051613eaf565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e6420746f20425354414745207374616b65207060008201527f6f6f6c0000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e6420746f2042414e4400000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f54686520616d6f756e742073656e7420646f65736e277420636f76657220746860008201527f6520707269636520666f72207468652061737365740000000000000000000000602082015250565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b7f4661696c656420746f2073656e6420746f2072796c7479207374616b6520706f60008201527f6f6c000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e6420746f204469737472696275746f72000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546869732072656c656173652068617320726561636865642069742773206c6960008201527f6d6974656420737570706c792100000000000000000000000000000000000000602082015250565b7f546869732072656c6561736520646f6573206e6f742065786973742e00000000600082015250565b50565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600060443d10156144b557614538565b6144bd613970565b60043d036004823e80513d602482011167ffffffffffffffff821117156144e5575050614538565b808201805167ffffffffffffffff8111156145035750505050614538565b80602083010160043d038501811115614520575050505050614538565b61452f82602001850186613ccd565b82955050505050505b90565b61454481613be5565b811461454f57600080fd5b50565b61455b81613bf7565b811461456657600080fd5b50565b61457281613c03565b811461457d57600080fd5b50565b61458981613c4f565b811461459457600080fd5b5056fe697066733a2f2f6261666b72656967706a683363626c64693271787932656864757832347772776734337734766d67786f697163756f61637a67776b6b6874786d34a2646970667358221220a57448b71041e8331cad5109ba5ac1c5fe4c42127f2a524825b720865138350e64736f6c63430008070033

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.