ETH Price: $3,276.05 (+0.93%)
Gas: 2 Gwei

Token

 

Overview

Max Total Supply

86

Holders

31

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xa47B1FC5ed4b296Dea37806120D9BceFccD80ba6
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:
M3rcuryPost

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : M3rcuryPost.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

///////////////////////////////////////////////////////////////////////////////////////////////
// /$$      /$$  /$$$$$$                                                                     //
//| $$$    /$$$ /$$__  $$                                                                    //
//| $$$$  /$$$$|__/  \ $$  /$$$$$$   /$$$$$$$ /$$   /$$  /$$$$$$  /$$   /$$                  //
//| $$ $$/$$ $$   /$$$$$/ /$$__  $$ /$$_____/| $$  | $$ /$$__  $$| $$  | $$                  //
//| $$  $$$| $$  |___  $$| $$  \__/| $$      | $$  | $$| $$  \__/| $$  | $$                  //
//| $$\  $ | $$ /$$  \ $$| $$      | $$      | $$  | $$| $$      | $$  | $$                  //
//| $$ \/  | $$|  $$$$$$/| $$      |  $$$$$$$|  $$$$$$/| $$      |  $$$$$$$                  //
//|__/     |__/ \______/ |__/       \_______/ \______/ |__/       \____  $$                  //
//                                                                /$$  | $$                  //
//                                                               |  $$$$$$/                  //
//                                                                \______/                   //
//                                                                                           //
//               &&&&&&%%%%%%#%%%##%##,                                      .***,,.*..      //
//        @&&&&&&&%%%%##%##%%%%##########(((((                            /////*****,,,,.,   //
//   @@@&&&&%&&&%%%###%###&%##########((#(/(/(/////                     ####(**,,,**,,,,,*,, //
//@@@&&&&%%%%%%%%#%###%%%%####/###(#((((((((/(///(**/*                 ((%#%(#,,(###(,***//*,//
//@@&&&&%%%#%%#%%%#%##%##%#(###(((((((((((((/////(,/(**/,.            (((%%%%%/(*///#/*/(//**//
//@&&&&%&%##%(#%%%%#%%#####(#((#(((((((/(//((*(//*//**,/***/           (///%((%#%###(//###//(//
//&&&%&%%&%%%#%##%######%####((((((((///((//**/*/*//******/*/,         #(/*/##/(##(////***/**//
//&&%%%%%%%#%####%%##((##((((((((((((/((//(/*////*//***,*//*.*,,         ((///*/*////////((  //
//%%&%%%#%%#%####((#((((/((/((((((/(//(//(//*/*/*//****/,/,*,,*,,*         (((///(/(/(#((    //
//&%%%#%#%#%#(##(##(#(((((/(/(/*/(///(/(//////******//*/,*,**,,,*,*           ^***``^*^      //
//%%%%%%#%###%%((##(((#((/((///(((/(/(((///////*/,***,/***,,,,,,,,,*.                        //
//%%%%#%%%%##%%%%((%#(##((//////((((/**/*(//***,,**,**./*,**,,,*,,*.,.                       //
//%&%%%%%#%%%%#%###(##((((/(#(#/((/*(///**,,,*****/*****/,*/*,*.,.,,,,                       //
//%%%%%###(#%#####(%#(/(/((//(/*/***///(/**/*/**,,,*,,*****,*,*./*.*,,,                      //
//%%(%%%%&%#(#####(#((#((((((/((//(*/*////**///*/*****,.*,,*,,**,,,*,,,*                     //
//%#(%&#%##%##%####(#(//(/((((((///(,/(///(((/*//,/,*/*/,**,,,**/*/,,,.,                     //
///////////////////////////////////////////////////////////////////////////////////////////////


contract M3rcuryPost is ERC1155, Ownable {

    struct dropVariables {
        uint256 price;
        uint256 maxSupply;
        uint256 supply;
        string tokenURI;
        bool saleIsActive;
    }

    address payable _owner;

    mapping(uint256 => dropVariables) public dropInfo;

    constructor() ERC1155("") {
        _owner = payable(msg.sender);
    }

    function uri(uint256 id) override public view returns (string memory) {
        return(dropInfo[id].tokenURI);
    }

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

    function activateSale(uint256 id) public onlyOwner {
        dropInfo[id].saleIsActive = true;
    }

    function deactivateSale(uint256 id) public onlyOwner {
        dropInfo[id].saleIsActive = false;
    }

    function createDrop(uint256 id, uint256 price, uint256 supplyAmt, string memory tokenURI) public onlyOwner {
        require(dropInfo[id].maxSupply == 0, "Drop already exists"); // if you set max supply, there's no turning back because the token can be minted at that point
        dropInfo[id].price = price;
        dropInfo[id].maxSupply = supplyAmt;
        dropInfo[id].tokenURI = tokenURI;
    }

    function devMint(uint256 id, uint256 amount) public onlyOwner {
        require(dropInfo[id].maxSupply > 0, "Drop is not available");
        require(dropInfo[id].supply + amount <= dropInfo[id].maxSupply, "Sold out");

        _mint(msg.sender, id, amount, "");
        dropInfo[id].supply += amount;
    }

    function airdrop(uint256 id, address[] calldata recipients) external onlyOwner {
        require(dropInfo[id].maxSupply > 0, "Drop is not available");
        require(dropInfo[id].supply + recipients.length <= dropInfo[id].maxSupply, "Would exceed max supply");
        for (uint256 i = 0; i < recipients.length; i++) {
            _mint(recipients[i], id, 1, "");
            dropInfo[id].supply += 1;
        }
    }

    function mint(uint256 id, uint256 amount) public payable {
        require(dropInfo[id].saleIsActive == true, "Sale is not active");
        require(dropInfo[id].maxSupply > 0, "Drop is not yet available");
        require(dropInfo[id].supply + amount <= dropInfo[id].maxSupply, "Sold out");
        require(msg.value / amount == dropInfo[id].price, "Drop price is incorrect");

        _mint(msg.sender, id, amount, "");
        dropInfo[id].supply += amount;
    }

    function withdraw() public {
        require(address(this).balance >= 0, "No ether");
        _owner.transfer(address(this).balance);
    }

}

File 2 of 10 : 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 3 of 10 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, 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);

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

        _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);

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

        _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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

        _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);

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

        _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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

        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);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after 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 _afterTokenTransfer(
        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 4 of 10 : 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 5 of 10 : 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 6 of 10 : 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 7 of 10 : 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 8 of 10 : 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 9 of 10 : 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 10 of 10 : 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":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"activateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"supplyAmt","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"createDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"deactivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"dropInfo","outputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"},{"internalType":"bool","name":"saleIsActive","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060200160405280600081525062000033816200009b60201b60201c565b506200005462000048620000b760201b60201c565b620000bf60201b60201c565b33600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200029a565b8060029080519060200190620000b392919062000185565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001939062000235565b90600052602060002090601f016020900481019282620001b7576000855562000203565b82601f10620001d257805160ff191683800117855562000203565b8280016001018555821562000203579182015b8281111562000202578251825591602001919060010190620001e5565b5b50905062000212919062000216565b5090565b5b808211156200023157600081600090555060010162000217565b5090565b600060028204905060018216806200024e57607f821691505b602082108114156200026557620002646200026b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613f8580620002aa6000396000f3fe60806040526004361061011e5760003560e01c80637ab12bb6116100a0578063ca77b85e11610064578063ca77b85e146103c3578063e8a3d485146103ec578063e985e9c514610417578063f242432a14610454578063f2fde38b1461047d5761011e565b80637ab12bb6146102f45780638da5cb5b1461031d578063a22cb46514610348578063a5b985a214610371578063bdf7a8e61461039a5761011e565b80632eb2c2d6116100e75780632eb2c2d6146102375780633ccfd60b146102605780634e1273f4146102775780635170a262146102b4578063715018a6146102dd5761011e565b8062fdd58e1461012357806301ffc9a7146101605780630e89341c1461019d5780631b2ef1ca146101da5780632bb82d3d146101f6575b600080fd5b34801561012f57600080fd5b5061014a6004803603810190610145919061296b565b6104a6565b60405161015791906133e3565b60405180910390f35b34801561016c57600080fd5b5061018760048036038101906101829190612a23565b61056f565b6040516101949190613106565b60405180910390f35b3480156101a957600080fd5b506101c460048036038101906101bf9190612a7d565b610651565b6040516101d19190613121565b60405180910390f35b6101f460048036038101906101ef9190612b0a565b6106f9565b005b34801561020257600080fd5b5061021d60048036038101906102189190612a7d565b6108e5565b60405161022e959493929190613427565b60405180910390f35b34801561024357600080fd5b5061025e600480360381019061025991906127c5565b6109b0565b005b34801561026c57600080fd5b50610275610a51565b005b34801561028357600080fd5b5061029e600480360381019061029991906129ab565b610b00565b6040516102ab91906130ad565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190612b4a565b610c19565b005b3480156102e957600080fd5b506102f2610d55565b005b34801561030057600080fd5b5061031b60048036038101906103169190612a7d565b610ddd565b005b34801561032957600080fd5b50610332610e8b565b60405161033f9190612fd0565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a919061292b565b610eb5565b005b34801561037d57600080fd5b5061039860048036038101906103939190612b0a565b610ecb565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612aaa565b611066565b005b3480156103cf57600080fd5b506103ea60048036038101906103e59190612a7d565b611250565b005b3480156103f857600080fd5b506104016112fe565b60405161040e9190613121565b60405180910390f35b34801561042357600080fd5b5061043e60048036038101906104399190612785565b61131e565b60405161044b9190613106565b60405180910390f35b34801561046057600080fd5b5061047b60048036038101906104769190612894565b6113b2565b005b34801561048957600080fd5b506104a4600480360381019061049f9190612758565b611453565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050e906131a3565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063a57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061064a57506106498261154b565b5b9050919050565b60606005600083815260200190815260200160002060030180546106749061370e565b80601f01602080910402602001604051908101604052809291908181526020018280546106a09061370e565b80156106ed5780601f106106c2576101008083540402835291602001916106ed565b820191906000526020600020905b8154815290600101906020018083116106d057829003601f168201915b50505050509050919050565b600115156005600084815260200190815260200160002060040160009054906101000a900460ff16151514610763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075a90613243565b60405180910390fd5b60006005600084815260200190815260200160002060010154116107bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b3906132e3565b60405180910390fd5b60056000838152602001908152602001600020600101548160056000858152602001908152602001600020600201546107f591906135d1565b1115610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90613323565b60405180910390fd5b600560008381526020019081526020016000206000015481346108599190613627565b14610899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089090613223565b60405180910390fd5b6108b4338383604051806020016040528060008152506115b5565b806005600084815260200190815260200160002060020160008282546108da91906135d1565b925050819055505050565b600560205280600052604060002060009150905080600001549080600101549080600201549080600301805461091a9061370e565b80601f01602080910402602001604051908101604052809291908181526020018280546109469061370e565b80156109935780601f1061096857610100808354040283529160200191610993565b820191906000526020600020905b81548152906001019060200180831161097657829003601f168201915b5050505050908060040160009054906101000a900460ff16905085565b6109b8611766565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109fe57506109fd856109f8611766565b61131e565b5b610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3490613283565b60405180910390fd5b610a4a858585858561176e565b5050505050565b6000471015610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90613183565b60405180910390fd5b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610afd573d6000803e3d6000fd5b50565b60608151835114610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d90613363565b60405180910390fd5b6000835167ffffffffffffffff811115610b6357610b62613876565b5b604051908082528060200260200182016040528015610b915781602001602082028036833780820191505090505b50905060005b8451811015610c0e57610bde858281518110610bb657610bb5613847565b5b6020026020010151858381518110610bd157610bd0613847565b5b60200260200101516104a6565b828281518110610bf157610bf0613847565b5b60200260200101818152505080610c0790613771565b9050610b97565b508091505092915050565b610c21611766565b73ffffffffffffffffffffffffffffffffffffffff16610c3f610e8b565b73ffffffffffffffffffffffffffffffffffffffff1614610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90613303565b60405180910390fd5b6000600560008681526020019081526020016000206001015414610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce5906132c3565b60405180910390fd5b82600560008681526020019081526020016000206000018190555081600560008681526020019081526020016000206001018190555080600560008681526020019081526020016000206003019080519060200190610d4e9291906123da565b5050505050565b610d5d611766565b73ffffffffffffffffffffffffffffffffffffffff16610d7b610e8b565b73ffffffffffffffffffffffffffffffffffffffff1614610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890613303565b60405180910390fd5b610ddb6000611a90565b565b610de5611766565b73ffffffffffffffffffffffffffffffffffffffff16610e03610e8b565b73ffffffffffffffffffffffffffffffffffffffff1614610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090613303565b60405180910390fd5b60016005600083815260200190815260200160002060040160006101000a81548160ff02191690831515021790555050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ec7610ec0611766565b8383611b56565b5050565b610ed3611766565b73ffffffffffffffffffffffffffffffffffffffff16610ef1610e8b565b73ffffffffffffffffffffffffffffffffffffffff1614610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613303565b60405180910390fd5b6000600560008481526020019081526020016000206001015411610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f97906131e3565b60405180910390fd5b6005600083815260200190815260200160002060010154816005600085815260200190815260200160002060020154610fd991906135d1565b111561101a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101190613323565b60405180910390fd5b611035338383604051806020016040528060008152506115b5565b8060056000848152602001908152602001600020600201600082825461105b91906135d1565b925050819055505050565b61106e611766565b73ffffffffffffffffffffffffffffffffffffffff1661108c610e8b565b73ffffffffffffffffffffffffffffffffffffffff16146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990613303565b60405180910390fd5b600060056000858152602001908152602001600020600101541161113b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611132906131e3565b60405180910390fd5b600560008481526020019081526020016000206001015482829050600560008681526020019081526020016000206002015461117791906135d1565b11156111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af906133c3565b60405180910390fd5b60005b8282905081101561124a576112098383838181106111dc576111db613847565b5b90506020020160208101906111f19190612758565b856001604051806020016040528060008152506115b5565b600160056000868152602001908152602001600020600201600082825461123091906135d1565b92505081905550808061124290613771565b9150506111bb565b50505050565b611258611766565b73ffffffffffffffffffffffffffffffffffffffff16611276610e8b565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390613303565b60405180910390fd5b60006005600083815260200190815260200160002060040160006101000a81548160ff02191690831515021790555050565b6060604051806060016040528060358152602001613f1b60359139905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113ba611766565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061140057506113ff856113fa611766565b61131e565b5b61143f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143690613203565b60405180910390fd5b61144c8585858585611cc3565b5050505050565b61145b611766565b73ffffffffffffffffffffffffffffffffffffffff16611479610e8b565b73ffffffffffffffffffffffffffffffffffffffff16146114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690613303565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561153f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611536906131c3565b60405180910390fd5b61154881611a90565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c906133a3565b60405180910390fd5b600061162f611766565b9050600061163c85611f5f565b9050600061164985611f5f565b905061165a83600089858589611fd9565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116b991906135d1565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516117379291906133fe565b60405180910390a461174e83600089858589611fe1565b61175d83600089898989611fe9565b50505050505050565b600033905090565b81518351146117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a990613383565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990613263565b60405180910390fd5b600061182c611766565b905061183c818787878787611fd9565b60005b84518110156119ed57600085828151811061185d5761185c613847565b5b60200260200101519050600085838151811061187c5761187b613847565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561191d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611914906132a3565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119d291906135d1565b92505081905550505050806119e690613771565b905061183f565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611a649291906130cf565b60405180910390a4611a7a818787878787611fe1565b611a888187878787876121d0565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbc90613343565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cb69190613106565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a90613263565b60405180910390fd5b6000611d3d611766565b90506000611d4a85611f5f565b90506000611d5785611f5f565b9050611d67838989858589611fd9565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df5906132a3565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb391906135d1565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611f309291906133fe565b60405180910390a4611f46848a8a86868a611fe1565b611f54848a8a8a8a8a611fe9565b505050505050505050565b60606000600167ffffffffffffffff811115611f7e57611f7d613876565b5b604051908082528060200260200182016040528015611fac5781602001602082028036833780820191505090505b5090508281600081518110611fc457611fc3613847565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b6120088473ffffffffffffffffffffffffffffffffffffffff166123b7565b156121c8578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161204e959493929190613053565b602060405180830381600087803b15801561206857600080fd5b505af192505050801561209957506040513d601f19601f820116820180604052508101906120969190612a50565b60015b61213f576120a56138a5565b806308c379a0141561210257506120ba613e28565b806120c55750612104565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f99190613121565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213690613143565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd90613163565b60405180910390fd5b505b505050505050565b6121ef8473ffffffffffffffffffffffffffffffffffffffff166123b7565b156123af578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612235959493929190612feb565b602060405180830381600087803b15801561224f57600080fd5b505af192505050801561228057506040513d601f19601f8201168201806040525081019061227d9190612a50565b60015b6123265761228c6138a5565b806308c379a014156122e957506122a1613e28565b806122ac57506122eb565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e09190613121565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231d90613143565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a490613163565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546123e69061370e565b90600052602060002090601f016020900481019282612408576000855561244f565b82601f1061242157805160ff191683800117855561244f565b8280016001018555821561244f579182015b8281111561244e578251825591602001919060010190612433565b5b50905061245c9190612460565b5090565b5b80821115612479576000816000905550600101612461565b5090565b600061249061248b846134a6565b613481565b905080838252602082019050828560208602820111156124b3576124b26138d1565b5b60005b858110156124e357816124c988826125e1565b8452602084019350602083019250506001810190506124b6565b5050509392505050565b60006125006124fb846134d2565b613481565b90508083825260208201905082856020860282011115612523576125226138d1565b5b60005b8581101561255357816125398882612743565b845260208401935060208301925050600181019050612526565b5050509392505050565b600061257061256b846134fe565b613481565b90508281526020810184848401111561258c5761258b6138d6565b5b6125978482856136cc565b509392505050565b60006125b26125ad8461352f565b613481565b9050828152602081018484840111156125ce576125cd6138d6565b5b6125d98482856136cc565b509392505050565b6000813590506125f081613ebe565b92915050565b60008083601f84011261260c5761260b6138cc565b5b8235905067ffffffffffffffff811115612629576126286138c7565b5b602083019150836020820283011115612645576126446138d1565b5b9250929050565b600082601f830112612661576126606138cc565b5b813561267184826020860161247d565b91505092915050565b600082601f83011261268f5761268e6138cc565b5b813561269f8482602086016124ed565b91505092915050565b6000813590506126b781613ed5565b92915050565b6000813590506126cc81613eec565b92915050565b6000815190506126e181613eec565b92915050565b600082601f8301126126fc576126fb6138cc565b5b813561270c84826020860161255d565b91505092915050565b600082601f83011261272a576127296138cc565b5b813561273a84826020860161259f565b91505092915050565b60008135905061275281613f03565b92915050565b60006020828403121561276e5761276d6138e0565b5b600061277c848285016125e1565b91505092915050565b6000806040838503121561279c5761279b6138e0565b5b60006127aa858286016125e1565b92505060206127bb858286016125e1565b9150509250929050565b600080600080600060a086880312156127e1576127e06138e0565b5b60006127ef888289016125e1565b9550506020612800888289016125e1565b945050604086013567ffffffffffffffff811115612821576128206138db565b5b61282d8882890161267a565b935050606086013567ffffffffffffffff81111561284e5761284d6138db565b5b61285a8882890161267a565b925050608086013567ffffffffffffffff81111561287b5761287a6138db565b5b612887888289016126e7565b9150509295509295909350565b600080600080600060a086880312156128b0576128af6138e0565b5b60006128be888289016125e1565b95505060206128cf888289016125e1565b94505060406128e088828901612743565b93505060606128f188828901612743565b925050608086013567ffffffffffffffff811115612912576129116138db565b5b61291e888289016126e7565b9150509295509295909350565b60008060408385031215612942576129416138e0565b5b6000612950858286016125e1565b9250506020612961858286016126a8565b9150509250929050565b60008060408385031215612982576129816138e0565b5b6000612990858286016125e1565b92505060206129a185828601612743565b9150509250929050565b600080604083850312156129c2576129c16138e0565b5b600083013567ffffffffffffffff8111156129e0576129df6138db565b5b6129ec8582860161264c565b925050602083013567ffffffffffffffff811115612a0d57612a0c6138db565b5b612a198582860161267a565b9150509250929050565b600060208284031215612a3957612a386138e0565b5b6000612a47848285016126bd565b91505092915050565b600060208284031215612a6657612a656138e0565b5b6000612a74848285016126d2565b91505092915050565b600060208284031215612a9357612a926138e0565b5b6000612aa184828501612743565b91505092915050565b600080600060408486031215612ac357612ac26138e0565b5b6000612ad186828701612743565b935050602084013567ffffffffffffffff811115612af257612af16138db565b5b612afe868287016125f6565b92509250509250925092565b60008060408385031215612b2157612b206138e0565b5b6000612b2f85828601612743565b9250506020612b4085828601612743565b9150509250929050565b60008060008060808587031215612b6457612b636138e0565b5b6000612b7287828801612743565b9450506020612b8387828801612743565b9350506040612b9487828801612743565b925050606085013567ffffffffffffffff811115612bb557612bb46138db565b5b612bc187828801612715565b91505092959194509250565b6000612bd98383612fb2565b60208301905092915050565b612bee81613658565b82525050565b6000612bff82613570565b612c09818561359e565b9350612c1483613560565b8060005b83811015612c45578151612c2c8882612bcd565b9750612c3783613591565b925050600181019050612c18565b5085935050505092915050565b612c5b8161366a565b82525050565b6000612c6c8261357b565b612c7681856135af565b9350612c868185602086016136db565b612c8f816138e5565b840191505092915050565b6000612ca582613586565b612caf81856135c0565b9350612cbf8185602086016136db565b612cc8816138e5565b840191505092915050565b6000612ce06034836135c0565b9150612ceb82613903565b604082019050919050565b6000612d036028836135c0565b9150612d0e82613952565b604082019050919050565b6000612d266008836135c0565b9150612d31826139a1565b602082019050919050565b6000612d49602b836135c0565b9150612d54826139ca565b604082019050919050565b6000612d6c6026836135c0565b9150612d7782613a19565b604082019050919050565b6000612d8f6015836135c0565b9150612d9a82613a68565b602082019050919050565b6000612db26029836135c0565b9150612dbd82613a91565b604082019050919050565b6000612dd56017836135c0565b9150612de082613ae0565b602082019050919050565b6000612df86012836135c0565b9150612e0382613b09565b602082019050919050565b6000612e1b6025836135c0565b9150612e2682613b32565b604082019050919050565b6000612e3e6032836135c0565b9150612e4982613b81565b604082019050919050565b6000612e61602a836135c0565b9150612e6c82613bd0565b604082019050919050565b6000612e846013836135c0565b9150612e8f82613c1f565b602082019050919050565b6000612ea76019836135c0565b9150612eb282613c48565b602082019050919050565b6000612eca6020836135c0565b9150612ed582613c71565b602082019050919050565b6000612eed6008836135c0565b9150612ef882613c9a565b602082019050919050565b6000612f106029836135c0565b9150612f1b82613cc3565b604082019050919050565b6000612f336029836135c0565b9150612f3e82613d12565b604082019050919050565b6000612f566028836135c0565b9150612f6182613d61565b604082019050919050565b6000612f796021836135c0565b9150612f8482613db0565b604082019050919050565b6000612f9c6017836135c0565b9150612fa782613dff565b602082019050919050565b612fbb816136c2565b82525050565b612fca816136c2565b82525050565b6000602082019050612fe56000830184612be5565b92915050565b600060a0820190506130006000830188612be5565b61300d6020830187612be5565b818103604083015261301f8186612bf4565b905081810360608301526130338185612bf4565b905081810360808301526130478184612c61565b90509695505050505050565b600060a0820190506130686000830188612be5565b6130756020830187612be5565b6130826040830186612fc1565b61308f6060830185612fc1565b81810360808301526130a18184612c61565b90509695505050505050565b600060208201905081810360008301526130c78184612bf4565b905092915050565b600060408201905081810360008301526130e98185612bf4565b905081810360208301526130fd8184612bf4565b90509392505050565b600060208201905061311b6000830184612c52565b92915050565b6000602082019050818103600083015261313b8184612c9a565b905092915050565b6000602082019050818103600083015261315c81612cd3565b9050919050565b6000602082019050818103600083015261317c81612cf6565b9050919050565b6000602082019050818103600083015261319c81612d19565b9050919050565b600060208201905081810360008301526131bc81612d3c565b9050919050565b600060208201905081810360008301526131dc81612d5f565b9050919050565b600060208201905081810360008301526131fc81612d82565b9050919050565b6000602082019050818103600083015261321c81612da5565b9050919050565b6000602082019050818103600083015261323c81612dc8565b9050919050565b6000602082019050818103600083015261325c81612deb565b9050919050565b6000602082019050818103600083015261327c81612e0e565b9050919050565b6000602082019050818103600083015261329c81612e31565b9050919050565b600060208201905081810360008301526132bc81612e54565b9050919050565b600060208201905081810360008301526132dc81612e77565b9050919050565b600060208201905081810360008301526132fc81612e9a565b9050919050565b6000602082019050818103600083015261331c81612ebd565b9050919050565b6000602082019050818103600083015261333c81612ee0565b9050919050565b6000602082019050818103600083015261335c81612f03565b9050919050565b6000602082019050818103600083015261337c81612f26565b9050919050565b6000602082019050818103600083015261339c81612f49565b9050919050565b600060208201905081810360008301526133bc81612f6c565b9050919050565b600060208201905081810360008301526133dc81612f8f565b9050919050565b60006020820190506133f86000830184612fc1565b92915050565b60006040820190506134136000830185612fc1565b6134206020830184612fc1565b9392505050565b600060a08201905061343c6000830188612fc1565b6134496020830187612fc1565b6134566040830186612fc1565b81810360608301526134688185612c9a565b90506134776080830184612c52565b9695505050505050565b600061348b61349c565b90506134978282613740565b919050565b6000604051905090565b600067ffffffffffffffff8211156134c1576134c0613876565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134ed576134ec613876565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561351957613518613876565b5b613522826138e5565b9050602081019050919050565b600067ffffffffffffffff82111561354a57613549613876565b5b613553826138e5565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006135dc826136c2565b91506135e7836136c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561361c5761361b6137ba565b5b828201905092915050565b6000613632826136c2565b915061363d836136c2565b92508261364d5761364c6137e9565b5b828204905092915050565b6000613663826136a2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136f95780820151818401526020810190506136de565b83811115613708576000848401525b50505050565b6000600282049050600182168061372657607f821691505b6020821081141561373a57613739613818565b5b50919050565b613749826138e5565b810181811067ffffffffffffffff8211171561376857613767613876565b5b80604052505050565b600061377c826136c2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137af576137ae6137ba565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156138c45760046000803e6138c16000516138f6565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4e6f206574686572000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f44726f70206973206e6f7420617661696c61626c650000000000000000000000600082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f44726f7020707269636520697320696e636f7272656374000000000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f44726f7020616c72656164792065786973747300000000000000000000000000600082015250565b7f44726f70206973206e6f742079657420617661696c61626c6500000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f576f756c6420657863656564206d617820737570706c79000000000000000000600082015250565b600060443d1015613e3857613ebb565b613e4061349c565b60043d036004823e80513d602482011167ffffffffffffffff82111715613e68575050613ebb565b808201805167ffffffffffffffff811115613e865750505050613ebb565b80602083010160043d038501811115613ea3575050505050613ebb565b613eb282602001850186613740565b82955050505050505b90565b613ec781613658565b8114613ed257600080fd5b50565b613ede8161366a565b8114613ee957600080fd5b50565b613ef581613676565b8114613f0057600080fd5b50565b613f0c816136c2565b8114613f1757600080fd5b5056fe697066733a2f2f516d545442707764444133764778574b4e626a534b32796f43353932594d44614647714b7967776d633261634643a2646970667358221220cb53ee1258da65daace1128532790f6367248dac136deacaf343a6552ef1368a64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061011e5760003560e01c80637ab12bb6116100a0578063ca77b85e11610064578063ca77b85e146103c3578063e8a3d485146103ec578063e985e9c514610417578063f242432a14610454578063f2fde38b1461047d5761011e565b80637ab12bb6146102f45780638da5cb5b1461031d578063a22cb46514610348578063a5b985a214610371578063bdf7a8e61461039a5761011e565b80632eb2c2d6116100e75780632eb2c2d6146102375780633ccfd60b146102605780634e1273f4146102775780635170a262146102b4578063715018a6146102dd5761011e565b8062fdd58e1461012357806301ffc9a7146101605780630e89341c1461019d5780631b2ef1ca146101da5780632bb82d3d146101f6575b600080fd5b34801561012f57600080fd5b5061014a6004803603810190610145919061296b565b6104a6565b60405161015791906133e3565b60405180910390f35b34801561016c57600080fd5b5061018760048036038101906101829190612a23565b61056f565b6040516101949190613106565b60405180910390f35b3480156101a957600080fd5b506101c460048036038101906101bf9190612a7d565b610651565b6040516101d19190613121565b60405180910390f35b6101f460048036038101906101ef9190612b0a565b6106f9565b005b34801561020257600080fd5b5061021d60048036038101906102189190612a7d565b6108e5565b60405161022e959493929190613427565b60405180910390f35b34801561024357600080fd5b5061025e600480360381019061025991906127c5565b6109b0565b005b34801561026c57600080fd5b50610275610a51565b005b34801561028357600080fd5b5061029e600480360381019061029991906129ab565b610b00565b6040516102ab91906130ad565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190612b4a565b610c19565b005b3480156102e957600080fd5b506102f2610d55565b005b34801561030057600080fd5b5061031b60048036038101906103169190612a7d565b610ddd565b005b34801561032957600080fd5b50610332610e8b565b60405161033f9190612fd0565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a919061292b565b610eb5565b005b34801561037d57600080fd5b5061039860048036038101906103939190612b0a565b610ecb565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612aaa565b611066565b005b3480156103cf57600080fd5b506103ea60048036038101906103e59190612a7d565b611250565b005b3480156103f857600080fd5b506104016112fe565b60405161040e9190613121565b60405180910390f35b34801561042357600080fd5b5061043e60048036038101906104399190612785565b61131e565b60405161044b9190613106565b60405180910390f35b34801561046057600080fd5b5061047b60048036038101906104769190612894565b6113b2565b005b34801561048957600080fd5b506104a4600480360381019061049f9190612758565b611453565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050e906131a3565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063a57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061064a57506106498261154b565b5b9050919050565b60606005600083815260200190815260200160002060030180546106749061370e565b80601f01602080910402602001604051908101604052809291908181526020018280546106a09061370e565b80156106ed5780601f106106c2576101008083540402835291602001916106ed565b820191906000526020600020905b8154815290600101906020018083116106d057829003601f168201915b50505050509050919050565b600115156005600084815260200190815260200160002060040160009054906101000a900460ff16151514610763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075a90613243565b60405180910390fd5b60006005600084815260200190815260200160002060010154116107bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b3906132e3565b60405180910390fd5b60056000838152602001908152602001600020600101548160056000858152602001908152602001600020600201546107f591906135d1565b1115610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90613323565b60405180910390fd5b600560008381526020019081526020016000206000015481346108599190613627565b14610899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089090613223565b60405180910390fd5b6108b4338383604051806020016040528060008152506115b5565b806005600084815260200190815260200160002060020160008282546108da91906135d1565b925050819055505050565b600560205280600052604060002060009150905080600001549080600101549080600201549080600301805461091a9061370e565b80601f01602080910402602001604051908101604052809291908181526020018280546109469061370e565b80156109935780601f1061096857610100808354040283529160200191610993565b820191906000526020600020905b81548152906001019060200180831161097657829003601f168201915b5050505050908060040160009054906101000a900460ff16905085565b6109b8611766565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109fe57506109fd856109f8611766565b61131e565b5b610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3490613283565b60405180910390fd5b610a4a858585858561176e565b5050505050565b6000471015610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90613183565b60405180910390fd5b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610afd573d6000803e3d6000fd5b50565b60608151835114610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d90613363565b60405180910390fd5b6000835167ffffffffffffffff811115610b6357610b62613876565b5b604051908082528060200260200182016040528015610b915781602001602082028036833780820191505090505b50905060005b8451811015610c0e57610bde858281518110610bb657610bb5613847565b5b6020026020010151858381518110610bd157610bd0613847565b5b60200260200101516104a6565b828281518110610bf157610bf0613847565b5b60200260200101818152505080610c0790613771565b9050610b97565b508091505092915050565b610c21611766565b73ffffffffffffffffffffffffffffffffffffffff16610c3f610e8b565b73ffffffffffffffffffffffffffffffffffffffff1614610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90613303565b60405180910390fd5b6000600560008681526020019081526020016000206001015414610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce5906132c3565b60405180910390fd5b82600560008681526020019081526020016000206000018190555081600560008681526020019081526020016000206001018190555080600560008681526020019081526020016000206003019080519060200190610d4e9291906123da565b5050505050565b610d5d611766565b73ffffffffffffffffffffffffffffffffffffffff16610d7b610e8b565b73ffffffffffffffffffffffffffffffffffffffff1614610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890613303565b60405180910390fd5b610ddb6000611a90565b565b610de5611766565b73ffffffffffffffffffffffffffffffffffffffff16610e03610e8b565b73ffffffffffffffffffffffffffffffffffffffff1614610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090613303565b60405180910390fd5b60016005600083815260200190815260200160002060040160006101000a81548160ff02191690831515021790555050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ec7610ec0611766565b8383611b56565b5050565b610ed3611766565b73ffffffffffffffffffffffffffffffffffffffff16610ef1610e8b565b73ffffffffffffffffffffffffffffffffffffffff1614610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613303565b60405180910390fd5b6000600560008481526020019081526020016000206001015411610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f97906131e3565b60405180910390fd5b6005600083815260200190815260200160002060010154816005600085815260200190815260200160002060020154610fd991906135d1565b111561101a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101190613323565b60405180910390fd5b611035338383604051806020016040528060008152506115b5565b8060056000848152602001908152602001600020600201600082825461105b91906135d1565b925050819055505050565b61106e611766565b73ffffffffffffffffffffffffffffffffffffffff1661108c610e8b565b73ffffffffffffffffffffffffffffffffffffffff16146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990613303565b60405180910390fd5b600060056000858152602001908152602001600020600101541161113b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611132906131e3565b60405180910390fd5b600560008481526020019081526020016000206001015482829050600560008681526020019081526020016000206002015461117791906135d1565b11156111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af906133c3565b60405180910390fd5b60005b8282905081101561124a576112098383838181106111dc576111db613847565b5b90506020020160208101906111f19190612758565b856001604051806020016040528060008152506115b5565b600160056000868152602001908152602001600020600201600082825461123091906135d1565b92505081905550808061124290613771565b9150506111bb565b50505050565b611258611766565b73ffffffffffffffffffffffffffffffffffffffff16611276610e8b565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390613303565b60405180910390fd5b60006005600083815260200190815260200160002060040160006101000a81548160ff02191690831515021790555050565b6060604051806060016040528060358152602001613f1b60359139905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113ba611766565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061140057506113ff856113fa611766565b61131e565b5b61143f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143690613203565b60405180910390fd5b61144c8585858585611cc3565b5050505050565b61145b611766565b73ffffffffffffffffffffffffffffffffffffffff16611479610e8b565b73ffffffffffffffffffffffffffffffffffffffff16146114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690613303565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561153f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611536906131c3565b60405180910390fd5b61154881611a90565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c906133a3565b60405180910390fd5b600061162f611766565b9050600061163c85611f5f565b9050600061164985611f5f565b905061165a83600089858589611fd9565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116b991906135d1565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516117379291906133fe565b60405180910390a461174e83600089858589611fe1565b61175d83600089898989611fe9565b50505050505050565b600033905090565b81518351146117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a990613383565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990613263565b60405180910390fd5b600061182c611766565b905061183c818787878787611fd9565b60005b84518110156119ed57600085828151811061185d5761185c613847565b5b60200260200101519050600085838151811061187c5761187b613847565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561191d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611914906132a3565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119d291906135d1565b92505081905550505050806119e690613771565b905061183f565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611a649291906130cf565b60405180910390a4611a7a818787878787611fe1565b611a888187878787876121d0565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbc90613343565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cb69190613106565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a90613263565b60405180910390fd5b6000611d3d611766565b90506000611d4a85611f5f565b90506000611d5785611f5f565b9050611d67838989858589611fd9565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df5906132a3565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb391906135d1565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611f309291906133fe565b60405180910390a4611f46848a8a86868a611fe1565b611f54848a8a8a8a8a611fe9565b505050505050505050565b60606000600167ffffffffffffffff811115611f7e57611f7d613876565b5b604051908082528060200260200182016040528015611fac5781602001602082028036833780820191505090505b5090508281600081518110611fc457611fc3613847565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b6120088473ffffffffffffffffffffffffffffffffffffffff166123b7565b156121c8578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161204e959493929190613053565b602060405180830381600087803b15801561206857600080fd5b505af192505050801561209957506040513d601f19601f820116820180604052508101906120969190612a50565b60015b61213f576120a56138a5565b806308c379a0141561210257506120ba613e28565b806120c55750612104565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f99190613121565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213690613143565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd90613163565b60405180910390fd5b505b505050505050565b6121ef8473ffffffffffffffffffffffffffffffffffffffff166123b7565b156123af578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612235959493929190612feb565b602060405180830381600087803b15801561224f57600080fd5b505af192505050801561228057506040513d601f19601f8201168201806040525081019061227d9190612a50565b60015b6123265761228c6138a5565b806308c379a014156122e957506122a1613e28565b806122ac57506122eb565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e09190613121565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231d90613143565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a490613163565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546123e69061370e565b90600052602060002090601f016020900481019282612408576000855561244f565b82601f1061242157805160ff191683800117855561244f565b8280016001018555821561244f579182015b8281111561244e578251825591602001919060010190612433565b5b50905061245c9190612460565b5090565b5b80821115612479576000816000905550600101612461565b5090565b600061249061248b846134a6565b613481565b905080838252602082019050828560208602820111156124b3576124b26138d1565b5b60005b858110156124e357816124c988826125e1565b8452602084019350602083019250506001810190506124b6565b5050509392505050565b60006125006124fb846134d2565b613481565b90508083825260208201905082856020860282011115612523576125226138d1565b5b60005b8581101561255357816125398882612743565b845260208401935060208301925050600181019050612526565b5050509392505050565b600061257061256b846134fe565b613481565b90508281526020810184848401111561258c5761258b6138d6565b5b6125978482856136cc565b509392505050565b60006125b26125ad8461352f565b613481565b9050828152602081018484840111156125ce576125cd6138d6565b5b6125d98482856136cc565b509392505050565b6000813590506125f081613ebe565b92915050565b60008083601f84011261260c5761260b6138cc565b5b8235905067ffffffffffffffff811115612629576126286138c7565b5b602083019150836020820283011115612645576126446138d1565b5b9250929050565b600082601f830112612661576126606138cc565b5b813561267184826020860161247d565b91505092915050565b600082601f83011261268f5761268e6138cc565b5b813561269f8482602086016124ed565b91505092915050565b6000813590506126b781613ed5565b92915050565b6000813590506126cc81613eec565b92915050565b6000815190506126e181613eec565b92915050565b600082601f8301126126fc576126fb6138cc565b5b813561270c84826020860161255d565b91505092915050565b600082601f83011261272a576127296138cc565b5b813561273a84826020860161259f565b91505092915050565b60008135905061275281613f03565b92915050565b60006020828403121561276e5761276d6138e0565b5b600061277c848285016125e1565b91505092915050565b6000806040838503121561279c5761279b6138e0565b5b60006127aa858286016125e1565b92505060206127bb858286016125e1565b9150509250929050565b600080600080600060a086880312156127e1576127e06138e0565b5b60006127ef888289016125e1565b9550506020612800888289016125e1565b945050604086013567ffffffffffffffff811115612821576128206138db565b5b61282d8882890161267a565b935050606086013567ffffffffffffffff81111561284e5761284d6138db565b5b61285a8882890161267a565b925050608086013567ffffffffffffffff81111561287b5761287a6138db565b5b612887888289016126e7565b9150509295509295909350565b600080600080600060a086880312156128b0576128af6138e0565b5b60006128be888289016125e1565b95505060206128cf888289016125e1565b94505060406128e088828901612743565b93505060606128f188828901612743565b925050608086013567ffffffffffffffff811115612912576129116138db565b5b61291e888289016126e7565b9150509295509295909350565b60008060408385031215612942576129416138e0565b5b6000612950858286016125e1565b9250506020612961858286016126a8565b9150509250929050565b60008060408385031215612982576129816138e0565b5b6000612990858286016125e1565b92505060206129a185828601612743565b9150509250929050565b600080604083850312156129c2576129c16138e0565b5b600083013567ffffffffffffffff8111156129e0576129df6138db565b5b6129ec8582860161264c565b925050602083013567ffffffffffffffff811115612a0d57612a0c6138db565b5b612a198582860161267a565b9150509250929050565b600060208284031215612a3957612a386138e0565b5b6000612a47848285016126bd565b91505092915050565b600060208284031215612a6657612a656138e0565b5b6000612a74848285016126d2565b91505092915050565b600060208284031215612a9357612a926138e0565b5b6000612aa184828501612743565b91505092915050565b600080600060408486031215612ac357612ac26138e0565b5b6000612ad186828701612743565b935050602084013567ffffffffffffffff811115612af257612af16138db565b5b612afe868287016125f6565b92509250509250925092565b60008060408385031215612b2157612b206138e0565b5b6000612b2f85828601612743565b9250506020612b4085828601612743565b9150509250929050565b60008060008060808587031215612b6457612b636138e0565b5b6000612b7287828801612743565b9450506020612b8387828801612743565b9350506040612b9487828801612743565b925050606085013567ffffffffffffffff811115612bb557612bb46138db565b5b612bc187828801612715565b91505092959194509250565b6000612bd98383612fb2565b60208301905092915050565b612bee81613658565b82525050565b6000612bff82613570565b612c09818561359e565b9350612c1483613560565b8060005b83811015612c45578151612c2c8882612bcd565b9750612c3783613591565b925050600181019050612c18565b5085935050505092915050565b612c5b8161366a565b82525050565b6000612c6c8261357b565b612c7681856135af565b9350612c868185602086016136db565b612c8f816138e5565b840191505092915050565b6000612ca582613586565b612caf81856135c0565b9350612cbf8185602086016136db565b612cc8816138e5565b840191505092915050565b6000612ce06034836135c0565b9150612ceb82613903565b604082019050919050565b6000612d036028836135c0565b9150612d0e82613952565b604082019050919050565b6000612d266008836135c0565b9150612d31826139a1565b602082019050919050565b6000612d49602b836135c0565b9150612d54826139ca565b604082019050919050565b6000612d6c6026836135c0565b9150612d7782613a19565b604082019050919050565b6000612d8f6015836135c0565b9150612d9a82613a68565b602082019050919050565b6000612db26029836135c0565b9150612dbd82613a91565b604082019050919050565b6000612dd56017836135c0565b9150612de082613ae0565b602082019050919050565b6000612df86012836135c0565b9150612e0382613b09565b602082019050919050565b6000612e1b6025836135c0565b9150612e2682613b32565b604082019050919050565b6000612e3e6032836135c0565b9150612e4982613b81565b604082019050919050565b6000612e61602a836135c0565b9150612e6c82613bd0565b604082019050919050565b6000612e846013836135c0565b9150612e8f82613c1f565b602082019050919050565b6000612ea76019836135c0565b9150612eb282613c48565b602082019050919050565b6000612eca6020836135c0565b9150612ed582613c71565b602082019050919050565b6000612eed6008836135c0565b9150612ef882613c9a565b602082019050919050565b6000612f106029836135c0565b9150612f1b82613cc3565b604082019050919050565b6000612f336029836135c0565b9150612f3e82613d12565b604082019050919050565b6000612f566028836135c0565b9150612f6182613d61565b604082019050919050565b6000612f796021836135c0565b9150612f8482613db0565b604082019050919050565b6000612f9c6017836135c0565b9150612fa782613dff565b602082019050919050565b612fbb816136c2565b82525050565b612fca816136c2565b82525050565b6000602082019050612fe56000830184612be5565b92915050565b600060a0820190506130006000830188612be5565b61300d6020830187612be5565b818103604083015261301f8186612bf4565b905081810360608301526130338185612bf4565b905081810360808301526130478184612c61565b90509695505050505050565b600060a0820190506130686000830188612be5565b6130756020830187612be5565b6130826040830186612fc1565b61308f6060830185612fc1565b81810360808301526130a18184612c61565b90509695505050505050565b600060208201905081810360008301526130c78184612bf4565b905092915050565b600060408201905081810360008301526130e98185612bf4565b905081810360208301526130fd8184612bf4565b90509392505050565b600060208201905061311b6000830184612c52565b92915050565b6000602082019050818103600083015261313b8184612c9a565b905092915050565b6000602082019050818103600083015261315c81612cd3565b9050919050565b6000602082019050818103600083015261317c81612cf6565b9050919050565b6000602082019050818103600083015261319c81612d19565b9050919050565b600060208201905081810360008301526131bc81612d3c565b9050919050565b600060208201905081810360008301526131dc81612d5f565b9050919050565b600060208201905081810360008301526131fc81612d82565b9050919050565b6000602082019050818103600083015261321c81612da5565b9050919050565b6000602082019050818103600083015261323c81612dc8565b9050919050565b6000602082019050818103600083015261325c81612deb565b9050919050565b6000602082019050818103600083015261327c81612e0e565b9050919050565b6000602082019050818103600083015261329c81612e31565b9050919050565b600060208201905081810360008301526132bc81612e54565b9050919050565b600060208201905081810360008301526132dc81612e77565b9050919050565b600060208201905081810360008301526132fc81612e9a565b9050919050565b6000602082019050818103600083015261331c81612ebd565b9050919050565b6000602082019050818103600083015261333c81612ee0565b9050919050565b6000602082019050818103600083015261335c81612f03565b9050919050565b6000602082019050818103600083015261337c81612f26565b9050919050565b6000602082019050818103600083015261339c81612f49565b9050919050565b600060208201905081810360008301526133bc81612f6c565b9050919050565b600060208201905081810360008301526133dc81612f8f565b9050919050565b60006020820190506133f86000830184612fc1565b92915050565b60006040820190506134136000830185612fc1565b6134206020830184612fc1565b9392505050565b600060a08201905061343c6000830188612fc1565b6134496020830187612fc1565b6134566040830186612fc1565b81810360608301526134688185612c9a565b90506134776080830184612c52565b9695505050505050565b600061348b61349c565b90506134978282613740565b919050565b6000604051905090565b600067ffffffffffffffff8211156134c1576134c0613876565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134ed576134ec613876565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561351957613518613876565b5b613522826138e5565b9050602081019050919050565b600067ffffffffffffffff82111561354a57613549613876565b5b613553826138e5565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006135dc826136c2565b91506135e7836136c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561361c5761361b6137ba565b5b828201905092915050565b6000613632826136c2565b915061363d836136c2565b92508261364d5761364c6137e9565b5b828204905092915050565b6000613663826136a2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136f95780820151818401526020810190506136de565b83811115613708576000848401525b50505050565b6000600282049050600182168061372657607f821691505b6020821081141561373a57613739613818565b5b50919050565b613749826138e5565b810181811067ffffffffffffffff8211171561376857613767613876565b5b80604052505050565b600061377c826136c2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137af576137ae6137ba565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156138c45760046000803e6138c16000516138f6565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4e6f206574686572000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f44726f70206973206e6f7420617661696c61626c650000000000000000000000600082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f44726f7020707269636520697320696e636f7272656374000000000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f44726f7020616c72656164792065786973747300000000000000000000000000600082015250565b7f44726f70206973206e6f742079657420617661696c61626c6500000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f576f756c6420657863656564206d617820737570706c79000000000000000000600082015250565b600060443d1015613e3857613ebb565b613e4061349c565b60043d036004823e80513d602482011167ffffffffffffffff82111715613e68575050613ebb565b808201805167ffffffffffffffff811115613e865750505050613ebb565b80602083010160043d038501811115613ea3575050505050613ebb565b613eb282602001850186613740565b82955050505050505b90565b613ec781613658565b8114613ed257600080fd5b50565b613ede8161366a565b8114613ee957600080fd5b50565b613ef581613676565b8114613f0057600080fd5b50565b613f0c816136c2565b8114613f1757600080fd5b5056fe697066733a2f2f516d545442707764444133764778574b4e626a534b32796f43353932594d44614647714b7967776d633261634643a2646970667358221220cb53ee1258da65daace1128532790f6367248dac136deacaf343a6552ef1368a64736f6c63430008070033

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.