ETH Price: $2,627.92 (-2.20%)

Token

Phto Curated (PHTO)
 

Overview

Max Total Supply

141 PHTO

Holders

79

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0x19cfdF5bc6F703ED3E759C29D475C96F748d31D6
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:
PhtoCurated

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : PhtoCurated.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";

import "./RoyaltyReceiver.sol";

/// @author no-op.eth (nft-lab.xyz)
/// @title Phto Curated - fine art photography (phto.io)
contract PhtoCurated is ERC1155, ERC1155Burnable, Ownable, IERC2981 {
  /** Name of collection */
  string public constant name = "Phto Curated";
  /** Symbol of collection */
  string public constant symbol = "PHTO";
  /** URI for the contract metadata */
  string public contractURI;
  /** Royalty information */
  mapping(uint256 => RoyaltyReceiver) public royalties;

  /** For URI conversions */
  using Strings for uint256;

  constructor(string memory _uri) ERC1155(_uri) {}

  /// @notice Sets the base URI
  /// @param val Updated base URI
  function setBaseURI(string memory val) external onlyOwner {
    _setURI(val);
  }

  /// @notice Sets the base metadata URI
  /// @param val The new URI
  function setCollectionURI(string memory val) external onlyOwner {
    contractURI = val;
  }

  /// @notice Returns a given token's URI
  /// @param id Token ID
  function uri(uint256 id) public view override returns (string memory) {
    return string(abi.encodePacked(super.uri(id), id.toString()));
  }

  /// @notice Notify other contracts of supported interfaces
  /// @param interfaceId Magic bits
  /// @return Yes/no
  function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155, IERC165) returns (bool) {
    return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
  }

  /// @notice Get the royalty info for a given ID
  /// @param _tokenId NFT ID to check
  /// @param _salePrice Price sold for
  /// @return receiver The address receiving the royalty
  /// @return royaltyAmount The royalty amount to be received
  function royaltyInfo(
    uint256 _tokenId,
    uint256 _salePrice
  ) external view override returns (address receiver, uint256 royaltyAmount) {
    RoyaltyReceiver memory _receiverData = royalties[_tokenId];
    receiver = _receiverData.receiver;
    royaltyAmount = _salePrice * _receiverData.share / 100;
  }

  /// @notice Update royalties for specified IDs
  /// @param ids The IDs in question
  /// @param receiver The royalty receiver
  /// @param share The share for a given receiver
  function updateRoyalties(uint256[] calldata ids, address receiver, uint256 share) external onlyOwner {
    for (uint256 i = 0; i < ids.length; i++) {
      royalties[ids[i]] = RoyaltyReceiver(receiver, share);
    }
  }

  /// @notice Recover any funds
  function withdraw() external onlyOwner {
    payable(msg.sender).transfer(address(this).balance);
  }

  /// @notice Mint a batch to sender
  /// @param ids The IDs to be minted
  /// @param amounts The amount of corresponding ID to mint
  function mint(uint256[] calldata ids, uint256[] calldata amounts) external onlyOwner {
    _mintBatch(msg.sender, ids, amounts, "0x0000");
  }

  /// @notice Mint a batch to specified address
  /// @param ids The IDs to be minted
  /// @param amounts The amount of corresponding ID to mint
  /// @param to The address to send mints to
  function mint(uint256[] calldata ids, uint256[] calldata amounts, address to) external onlyOwner {
    _mintBatch(to, ids, amounts, "0x0000");
  }
}

File 2 of 15 : RoyaltyReceiver.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

  /** 1 Royalty Receiver */
  struct RoyaltyReceiver {
    /** Address to receive royalties */
    address receiver;
    /** Percentage share to receive */
    uint256 share;
  }

File 3 of 15 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 5 of 15 : 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 6 of 15 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

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

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

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

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

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

        return array;
    }
}

File 8 of 15 : 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 9 of 15 : 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 10 of 15 : 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 11 of 15 : 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 12 of 15 : 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 13 of 15 : 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 14 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

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

File 15 of 15 : 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":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"royalties","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"share","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"val","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"val","type":"string"}],"name":"setCollectionURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"share","type":"uint256"}],"name":"updateRoyalties","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"}]

60806040523480156200001157600080fd5b5060405162004a7738038062004a77833981810160405281019062000037919062000289565b8062000049816200007160201b60201c565b506200006a6200005e6200008d60201b60201c565b6200009560201b60201c565b506200045e565b8060029080519060200190620000899291906200015b565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000169906200036f565b90600052602060002090601f0160209004810192826200018d5760008555620001d9565b82601f10620001a857805160ff1916838001178555620001d9565b82800160010185558215620001d9579182015b82811115620001d8578251825591602001919060010190620001bb565b5b509050620001e89190620001ec565b5090565b5b8082111562000207576000816000905550600101620001ed565b5090565b6000620002226200021c8462000303565b620002da565b9050828152602081018484840111156200024157620002406200043e565b5b6200024e84828562000339565b509392505050565b600082601f8301126200026e576200026d62000439565b5b8151620002808482602086016200020b565b91505092915050565b600060208284031215620002a257620002a162000448565b5b600082015167ffffffffffffffff811115620002c357620002c262000443565b5b620002d18482850162000256565b91505092915050565b6000620002e6620002f9565b9050620002f48282620003a5565b919050565b6000604051905090565b600067ffffffffffffffff8211156200032157620003206200040a565b5b6200032c826200044d565b9050602081019050919050565b60005b83811015620003595780820151818401526020810190506200033c565b8381111562000369576000848401525b50505050565b600060028204905060018216806200038857607f821691505b602082108114156200039f576200039e620003db565b5b50919050565b620003b0826200044d565b810181811067ffffffffffffffff82111715620003d257620003d16200040a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b614609806200046e6000396000f3fe608060405234801561001057600080fd5b50600436106101575760003560e01c8063715018a6116100c3578063a2c46e571161007c578063a2c46e57146103b0578063e8a3d485146103cc578063e985e9c5146103ea578063f242432a1461041a578063f2fde38b14610436578063f5298aca1461045257610157565b8063715018a6146103015780637f77f5741461030b5780638da5cb5b1461033c57806393cd14a01461035a57806395d89b4114610376578063a22cb4651461039457610157565b80632eb2c2d6116101155780632eb2c2d6146102575780633ccfd60b146102735780633d5d190c1461027d5780634e1273f41461029957806355f804b3146102c95780636b20c454146102e557610157565b8062fdd58e1461015c57806301ffc9a71461018c57806306fdde03146101bc5780630e89341c146101da5780632639f4601461020a5780632a55205a14610226575b600080fd5b6101766004803603810190610171919061302f565b61046e565b6040516101839190613ad6565b60405180910390f35b6101a660048036038101906101a191906132c4565b610537565b6040516101b391906138b9565b60405180910390f35b6101c46105b1565b6040516101d191906138d4565b60405180910390f35b6101f460048036038101906101ef9190613367565b6105ea565b60405161020191906138d4565b60405180910390f35b610224600480360381019061021f919061331e565b610625565b005b610240600480360381019061023b9190613394565b6106bb565b60405161024e929190613837565b60405180910390f35b610271600480360381019061026c9190612dfe565b61076d565b005b61027b61080e565b005b610297600480360381019061029291906131ae565b6108d3565b005b6102b360048036038101906102ae91906130c2565b610a18565b6040516102c09190613860565b60405180910390f35b6102e360048036038101906102de919061331e565b610b31565b005b6102ff60048036038101906102fa9190612f64565b610bb9565b005b610309610c56565b005b61032560048036038101906103209190613367565b610cde565b604051610333929190613837565b60405180910390f35b610344610d22565b604051610351919061375a565b60405180910390f35b610374600480360381019061036f919061322f565b610d4c565b005b61037e610e92565b60405161038b91906138d4565b60405180910390f35b6103ae60048036038101906103a99190612fef565b610ecb565b005b6103ca60048036038101906103c5919061313a565b610ee1565b005b6103d4611030565b6040516103e191906138d4565b60405180910390f35b61040460048036038101906103ff9190612dbe565b6110be565b60405161041191906138b9565b60405180910390f35b610434600480360381019061042f9190612ecd565b611152565b005b610450600480360381019061044b9190612d91565b6111f3565b005b61046c6004803603810190610467919061306f565b6112eb565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d690613936565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105aa57506105a982611388565b5b9050919050565b6040518060400160405280600c81526020017f5068746f2043757261746564000000000000000000000000000000000000000081525081565b60606105f58261146a565b6105fe836114fe565b60405160200161060f929190613736565b6040516020818303038152906040529050919050565b61062d61165f565b73ffffffffffffffffffffffffffffffffffffffff1661064b610d22565b73ffffffffffffffffffffffffffffffffffffffff16146106a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069890613a36565b60405180910390fd5b80600490805190602001906106b7929190612a13565b5050565b6000806000600560008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160018201548152505090508060000151925060648160200151856107599190613cfc565b6107639190613ccb565b9150509250929050565b61077561165f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806107bb57506107ba856107b561165f565b6110be565b5b6107fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f1906139d6565b60405180910390fd5b6108078585858585611667565b5050505050565b61081661165f565b73ffffffffffffffffffffffffffffffffffffffff16610834610d22565b73ffffffffffffffffffffffffffffffffffffffff161461088a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088190613a36565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156108d0573d6000803e3d6000fd5b50565b6108db61165f565b73ffffffffffffffffffffffffffffffffffffffff166108f9610d22565b73ffffffffffffffffffffffffffffffffffffffff161461094f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094690613a36565b60405180910390fd5b610a1233858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506040518060400160405280600681526020017f307830303030000000000000000000000000000000000000000000000000000081525061197b565b50505050565b60608151835114610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5590613a76565b60405180910390fd5b6000835167ffffffffffffffff811115610a7b57610a7a613fd9565b5b604051908082528060200260200182016040528015610aa95781602001602082028036833780820191505090505b50905060005b8451811015610b2657610af6858281518110610ace57610acd613faa565b5b6020026020010151858381518110610ae957610ae8613faa565b5b602002602001015161046e565b828281518110610b0957610b08613faa565b5b60200260200101818152505080610b1f90613ea3565b9050610aaf565b508091505092915050565b610b3961165f565b73ffffffffffffffffffffffffffffffffffffffff16610b57610d22565b73ffffffffffffffffffffffffffffffffffffffff1614610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490613a36565b60405180910390fd5b610bb681611b99565b50565b610bc161165f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610c075750610c0683610c0161165f565b6110be565b5b610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90613996565b60405180910390fd5b610c51838383611bb3565b505050565b610c5e61165f565b73ffffffffffffffffffffffffffffffffffffffff16610c7c610d22565b73ffffffffffffffffffffffffffffffffffffffff1614610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990613a36565b60405180910390fd5b610cdc6000611e64565b565b60056020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d5461165f565b73ffffffffffffffffffffffffffffffffffffffff16610d72610d22565b73ffffffffffffffffffffffffffffffffffffffff1614610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf90613a36565b60405180910390fd5b610e8b81868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506040518060400160405280600681526020017f307830303030000000000000000000000000000000000000000000000000000081525061197b565b5050505050565b6040518060400160405280600481526020017f5048544f0000000000000000000000000000000000000000000000000000000081525081565b610edd610ed661165f565b8383611f2a565b5050565b610ee961165f565b73ffffffffffffffffffffffffffffffffffffffff16610f07610d22565b73ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490613a36565b60405180910390fd5b60005b848490508110156110295760405180604001604052808473ffffffffffffffffffffffffffffffffffffffff1681526020018381525060056000878785818110610fad57610fac613faa565b5b90506020020135815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155905050808061102190613ea3565b915050610f60565b5050505050565b6004805461103d90613e40565b80601f016020809104026020016040519081016040528092919081815260200182805461106990613e40565b80156110b65780601f1061108b576101008083540402835291602001916110b6565b820191906000526020600020905b81548152906001019060200180831161109957829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61115a61165f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111a0575061119f8561119a61165f565b6110be565b5b6111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d690613996565b60405180910390fd5b6111ec8585858585612097565b5050505050565b6111fb61165f565b73ffffffffffffffffffffffffffffffffffffffff16611219610d22565b73ffffffffffffffffffffffffffffffffffffffff161461126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690613a36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690613956565b60405180910390fd5b6112e881611e64565b50565b6112f361165f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061133957506113388361133361165f565b6110be565b5b611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90613996565b60405180910390fd5b611383838383612319565b505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061145357507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611463575061146282612536565b5b9050919050565b60606002805461147990613e40565b80601f01602080910402602001604051908101604052809291908181526020018280546114a590613e40565b80156114f25780601f106114c7576101008083540402835291602001916114f2565b820191906000526020600020905b8154815290600101906020018083116114d557829003601f168201915b50505050509050919050565b60606000821415611546576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061165a565b600082905060005b6000821461157857808061156190613ea3565b915050600a826115719190613ccb565b915061154e565b60008167ffffffffffffffff81111561159457611593613fd9565b5b6040519080825280601f01601f1916602001820160405280156115c65781602001600182028036833780820191505090505b5090505b60008514611653576001826115df9190613d56565b9150600a856115ee9190613eec565b60306115fa9190613c75565b60f81b8183815181106116105761160f613faa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561164c9190613ccb565b94506115ca565b8093505050505b919050565b600033905090565b81518351146116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a290613a96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561171b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611712906139b6565b60405180910390fd5b600061172561165f565b90506117358187878787876125a0565b60005b84518110156118e657600085828151811061175657611755613faa565b5b60200260200101519050600085838151811061177557611774613faa565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90613a16565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118cb9190613c75565b92505081905550505050806118df90613ea3565b9050611738565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161195d929190613882565b60405180910390a46119738187878787876125a8565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613ab6565b60405180910390fd5b8151835114611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690613a96565b60405180910390fd5b6000611a3961165f565b9050611a4a816000878787876125a0565b60005b8451811015611b0357838181518110611a6957611a68613faa565b5b6020026020010151600080878481518110611a8757611a86613faa565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ae99190613c75565b925050819055508080611afb90613ea3565b915050611a4d565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b7b929190613882565b60405180910390a4611b92816000878787876125a8565b5050505050565b8060029080519060200190611baf929190612a13565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a906139f6565b60405180910390fd5b8051825114611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e90613a96565b60405180910390fd5b6000611c7161165f565b9050611c91818560008686604051806020016040528060008152506125a0565b60005b8351811015611dde576000848281518110611cb257611cb1613faa565b5b602002602001015190506000848381518110611cd157611cd0613faa565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6990613976565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611dd690613ea3565b915050611c94565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611e56929190613882565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9090613a56565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161208a91906138b9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fe906139b6565b60405180910390fd5b600061211161165f565b90506121318187876121228861278f565b61212b8861278f565b876125a0565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156121c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bf90613a16565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461227d9190613c75565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516122fa929190613af1565b60405180910390a4612310828888888888612809565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612380906139f6565b60405180910390fd5b600061239361165f565b90506123c3818560006123a58761278f565b6123ae8761278f565b604051806020016040528060008152506125a0565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561245a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245190613976565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612527929190613af1565b60405180910390a45050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050505050565b6125c78473ffffffffffffffffffffffffffffffffffffffff166129f0565b15612787578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161260d959493929190613775565b602060405180830381600087803b15801561262757600080fd5b505af192505050801561265857506040513d601f19601f8201168201806040525081019061265591906132f1565b60015b6126fe57612664614008565b806308c379a014156126c157506126796144e1565b8061268457506126c3565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b891906138d4565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f5906138f6565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277c90613916565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156127ae576127ad613fd9565b5b6040519080825280602002602001820160405280156127dc5781602001602082028036833780820191505090505b50905082816000815181106127f4576127f3613faa565b5b60200260200101818152505080915050919050565b6128288473ffffffffffffffffffffffffffffffffffffffff166129f0565b156129e8578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161286e9594939291906137dd565b602060405180830381600087803b15801561288857600080fd5b505af19250505080156128b957506040513d601f19601f820116820180604052508101906128b691906132f1565b60015b61295f576128c5614008565b806308c379a0141561292257506128da6144e1565b806128e55750612924565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291991906138d4565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612956906138f6565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146129e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129dd90613916565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612a1f90613e40565b90600052602060002090601f016020900481019282612a415760008555612a88565b82601f10612a5a57805160ff1916838001178555612a88565b82800160010185558215612a88579182015b82811115612a87578251825591602001919060010190612a6c565b5b509050612a959190612a99565b5090565b5b80821115612ab2576000816000905550600101612a9a565b5090565b6000612ac9612ac484613b3f565b613b1a565b90508083825260208201905082856020860282011115612aec57612aeb614034565b5b60005b85811015612b1c5781612b028882612c1a565b845260208401935060208301925050600181019050612aef565b5050509392505050565b6000612b39612b3484613b6b565b613b1a565b90508083825260208201905082856020860282011115612b5c57612b5b614034565b5b60005b85811015612b8c5781612b728882612d7c565b845260208401935060208301925050600181019050612b5f565b5050509392505050565b6000612ba9612ba484613b97565b613b1a565b905082815260208101848484011115612bc557612bc4614039565b5b612bd0848285613dfe565b509392505050565b6000612beb612be684613bc8565b613b1a565b905082815260208101848484011115612c0757612c06614039565b5b612c12848285613dfe565b509392505050565b600081359050612c2981614577565b92915050565b600082601f830112612c4457612c4361402f565b5b8135612c54848260208601612ab6565b91505092915050565b60008083601f840112612c7357612c7261402f565b5b8235905067ffffffffffffffff811115612c9057612c8f61402a565b5b602083019150836020820283011115612cac57612cab614034565b5b9250929050565b600082601f830112612cc857612cc761402f565b5b8135612cd8848260208601612b26565b91505092915050565b600081359050612cf08161458e565b92915050565b600081359050612d05816145a5565b92915050565b600081519050612d1a816145a5565b92915050565b600082601f830112612d3557612d3461402f565b5b8135612d45848260208601612b96565b91505092915050565b600082601f830112612d6357612d6261402f565b5b8135612d73848260208601612bd8565b91505092915050565b600081359050612d8b816145bc565b92915050565b600060208284031215612da757612da6614043565b5b6000612db584828501612c1a565b91505092915050565b60008060408385031215612dd557612dd4614043565b5b6000612de385828601612c1a565b9250506020612df485828601612c1a565b9150509250929050565b600080600080600060a08688031215612e1a57612e19614043565b5b6000612e2888828901612c1a565b9550506020612e3988828901612c1a565b945050604086013567ffffffffffffffff811115612e5a57612e5961403e565b5b612e6688828901612cb3565b935050606086013567ffffffffffffffff811115612e8757612e8661403e565b5b612e9388828901612cb3565b925050608086013567ffffffffffffffff811115612eb457612eb361403e565b5b612ec088828901612d20565b9150509295509295909350565b600080600080600060a08688031215612ee957612ee8614043565b5b6000612ef788828901612c1a565b9550506020612f0888828901612c1a565b9450506040612f1988828901612d7c565b9350506060612f2a88828901612d7c565b925050608086013567ffffffffffffffff811115612f4b57612f4a61403e565b5b612f5788828901612d20565b9150509295509295909350565b600080600060608486031215612f7d57612f7c614043565b5b6000612f8b86828701612c1a565b935050602084013567ffffffffffffffff811115612fac57612fab61403e565b5b612fb886828701612cb3565b925050604084013567ffffffffffffffff811115612fd957612fd861403e565b5b612fe586828701612cb3565b9150509250925092565b6000806040838503121561300657613005614043565b5b600061301485828601612c1a565b925050602061302585828601612ce1565b9150509250929050565b6000806040838503121561304657613045614043565b5b600061305485828601612c1a565b925050602061306585828601612d7c565b9150509250929050565b60008060006060848603121561308857613087614043565b5b600061309686828701612c1a565b93505060206130a786828701612d7c565b92505060406130b886828701612d7c565b9150509250925092565b600080604083850312156130d9576130d8614043565b5b600083013567ffffffffffffffff8111156130f7576130f661403e565b5b61310385828601612c2f565b925050602083013567ffffffffffffffff8111156131245761312361403e565b5b61313085828601612cb3565b9150509250929050565b6000806000806060858703121561315457613153614043565b5b600085013567ffffffffffffffff8111156131725761317161403e565b5b61317e87828801612c5d565b9450945050602061319187828801612c1a565b92505060406131a287828801612d7c565b91505092959194509250565b600080600080604085870312156131c8576131c7614043565b5b600085013567ffffffffffffffff8111156131e6576131e561403e565b5b6131f287828801612c5d565b9450945050602085013567ffffffffffffffff8111156132155761321461403e565b5b61322187828801612c5d565b925092505092959194509250565b60008060008060006060868803121561324b5761324a614043565b5b600086013567ffffffffffffffff8111156132695761326861403e565b5b61327588828901612c5d565b9550955050602086013567ffffffffffffffff8111156132985761329761403e565b5b6132a488828901612c5d565b935093505060406132b788828901612c1a565b9150509295509295909350565b6000602082840312156132da576132d9614043565b5b60006132e884828501612cf6565b91505092915050565b60006020828403121561330757613306614043565b5b600061331584828501612d0b565b91505092915050565b60006020828403121561333457613333614043565b5b600082013567ffffffffffffffff8111156133525761335161403e565b5b61335e84828501612d4e565b91505092915050565b60006020828403121561337d5761337c614043565b5b600061338b84828501612d7c565b91505092915050565b600080604083850312156133ab576133aa614043565b5b60006133b985828601612d7c565b92505060206133ca85828601612d7c565b9150509250929050565b60006133e08383613718565b60208301905092915050565b6133f581613d8a565b82525050565b600061340682613c09565b6134108185613c37565b935061341b83613bf9565b8060005b8381101561344c57815161343388826133d4565b975061343e83613c2a565b92505060018101905061341f565b5085935050505092915050565b61346281613d9c565b82525050565b600061347382613c14565b61347d8185613c48565b935061348d818560208601613e0d565b61349681614048565b840191505092915050565b60006134ac82613c1f565b6134b68185613c59565b93506134c6818560208601613e0d565b6134cf81614048565b840191505092915050565b60006134e582613c1f565b6134ef8185613c6a565b93506134ff818560208601613e0d565b80840191505092915050565b6000613518603483613c59565b915061352382614066565b604082019050919050565b600061353b602883613c59565b9150613546826140b5565b604082019050919050565b600061355e602b83613c59565b915061356982614104565b604082019050919050565b6000613581602683613c59565b915061358c82614153565b604082019050919050565b60006135a4602483613c59565b91506135af826141a2565b604082019050919050565b60006135c7602983613c59565b91506135d2826141f1565b604082019050919050565b60006135ea602583613c59565b91506135f582614240565b604082019050919050565b600061360d603283613c59565b91506136188261428f565b604082019050919050565b6000613630602383613c59565b915061363b826142de565b604082019050919050565b6000613653602a83613c59565b915061365e8261432d565b604082019050919050565b6000613676602083613c59565b91506136818261437c565b602082019050919050565b6000613699602983613c59565b91506136a4826143a5565b604082019050919050565b60006136bc602983613c59565b91506136c7826143f4565b604082019050919050565b60006136df602883613c59565b91506136ea82614443565b604082019050919050565b6000613702602183613c59565b915061370d82614492565b604082019050919050565b61372181613df4565b82525050565b61373081613df4565b82525050565b600061374282856134da565b915061374e82846134da565b91508190509392505050565b600060208201905061376f60008301846133ec565b92915050565b600060a08201905061378a60008301886133ec565b61379760208301876133ec565b81810360408301526137a981866133fb565b905081810360608301526137bd81856133fb565b905081810360808301526137d18184613468565b90509695505050505050565b600060a0820190506137f260008301886133ec565b6137ff60208301876133ec565b61380c6040830186613727565b6138196060830185613727565b818103608083015261382b8184613468565b90509695505050505050565b600060408201905061384c60008301856133ec565b6138596020830184613727565b9392505050565b6000602082019050818103600083015261387a81846133fb565b905092915050565b6000604082019050818103600083015261389c81856133fb565b905081810360208301526138b081846133fb565b90509392505050565b60006020820190506138ce6000830184613459565b92915050565b600060208201905081810360008301526138ee81846134a1565b905092915050565b6000602082019050818103600083015261390f8161350b565b9050919050565b6000602082019050818103600083015261392f8161352e565b9050919050565b6000602082019050818103600083015261394f81613551565b9050919050565b6000602082019050818103600083015261396f81613574565b9050919050565b6000602082019050818103600083015261398f81613597565b9050919050565b600060208201905081810360008301526139af816135ba565b9050919050565b600060208201905081810360008301526139cf816135dd565b9050919050565b600060208201905081810360008301526139ef81613600565b9050919050565b60006020820190508181036000830152613a0f81613623565b9050919050565b60006020820190508181036000830152613a2f81613646565b9050919050565b60006020820190508181036000830152613a4f81613669565b9050919050565b60006020820190508181036000830152613a6f8161368c565b9050919050565b60006020820190508181036000830152613a8f816136af565b9050919050565b60006020820190508181036000830152613aaf816136d2565b9050919050565b60006020820190508181036000830152613acf816136f5565b9050919050565b6000602082019050613aeb6000830184613727565b92915050565b6000604082019050613b066000830185613727565b613b136020830184613727565b9392505050565b6000613b24613b35565b9050613b308282613e72565b919050565b6000604051905090565b600067ffffffffffffffff821115613b5a57613b59613fd9565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613b8657613b85613fd9565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613bb257613bb1613fd9565b5b613bbb82614048565b9050602081019050919050565b600067ffffffffffffffff821115613be357613be2613fd9565b5b613bec82614048565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c8082613df4565b9150613c8b83613df4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cc057613cbf613f1d565b5b828201905092915050565b6000613cd682613df4565b9150613ce183613df4565b925082613cf157613cf0613f4c565b5b828204905092915050565b6000613d0782613df4565b9150613d1283613df4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d4b57613d4a613f1d565b5b828202905092915050565b6000613d6182613df4565b9150613d6c83613df4565b925082821015613d7f57613d7e613f1d565b5b828203905092915050565b6000613d9582613dd4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e2b578082015181840152602081019050613e10565b83811115613e3a576000848401525b50505050565b60006002820490506001821680613e5857607f821691505b60208210811415613e6c57613e6b613f7b565b5b50919050565b613e7b82614048565b810181811067ffffffffffffffff82111715613e9a57613e99613fd9565b5b80604052505050565b6000613eae82613df4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ee157613ee0613f1d565b5b600182019050919050565b6000613ef782613df4565b9150613f0283613df4565b925082613f1257613f11613f4c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156140275760046000803e614024600051614059565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156144f157614574565b6144f9613b35565b60043d036004823e80513d602482011167ffffffffffffffff82111715614521575050614574565b808201805167ffffffffffffffff81111561453f5750505050614574565b80602083010160043d03850181111561455c575050505050614574565b61456b82602001850186613e72565b82955050505050505b90565b61458081613d8a565b811461458b57600080fd5b50565b61459781613d9c565b81146145a257600080fd5b50565b6145ae81613da8565b81146145b957600080fd5b50565b6145c581613df4565b81146145d057600080fd5b5056fea2646970667358221220417693ad4120d8d06972ba1c449d82668cfbda49653269b25601366db7f018f364736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6374527a45754734765777456931316f4167425568714647637570696b704134714e6b57734e62457656456b2f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101575760003560e01c8063715018a6116100c3578063a2c46e571161007c578063a2c46e57146103b0578063e8a3d485146103cc578063e985e9c5146103ea578063f242432a1461041a578063f2fde38b14610436578063f5298aca1461045257610157565b8063715018a6146103015780637f77f5741461030b5780638da5cb5b1461033c57806393cd14a01461035a57806395d89b4114610376578063a22cb4651461039457610157565b80632eb2c2d6116101155780632eb2c2d6146102575780633ccfd60b146102735780633d5d190c1461027d5780634e1273f41461029957806355f804b3146102c95780636b20c454146102e557610157565b8062fdd58e1461015c57806301ffc9a71461018c57806306fdde03146101bc5780630e89341c146101da5780632639f4601461020a5780632a55205a14610226575b600080fd5b6101766004803603810190610171919061302f565b61046e565b6040516101839190613ad6565b60405180910390f35b6101a660048036038101906101a191906132c4565b610537565b6040516101b391906138b9565b60405180910390f35b6101c46105b1565b6040516101d191906138d4565b60405180910390f35b6101f460048036038101906101ef9190613367565b6105ea565b60405161020191906138d4565b60405180910390f35b610224600480360381019061021f919061331e565b610625565b005b610240600480360381019061023b9190613394565b6106bb565b60405161024e929190613837565b60405180910390f35b610271600480360381019061026c9190612dfe565b61076d565b005b61027b61080e565b005b610297600480360381019061029291906131ae565b6108d3565b005b6102b360048036038101906102ae91906130c2565b610a18565b6040516102c09190613860565b60405180910390f35b6102e360048036038101906102de919061331e565b610b31565b005b6102ff60048036038101906102fa9190612f64565b610bb9565b005b610309610c56565b005b61032560048036038101906103209190613367565b610cde565b604051610333929190613837565b60405180910390f35b610344610d22565b604051610351919061375a565b60405180910390f35b610374600480360381019061036f919061322f565b610d4c565b005b61037e610e92565b60405161038b91906138d4565b60405180910390f35b6103ae60048036038101906103a99190612fef565b610ecb565b005b6103ca60048036038101906103c5919061313a565b610ee1565b005b6103d4611030565b6040516103e191906138d4565b60405180910390f35b61040460048036038101906103ff9190612dbe565b6110be565b60405161041191906138b9565b60405180910390f35b610434600480360381019061042f9190612ecd565b611152565b005b610450600480360381019061044b9190612d91565b6111f3565b005b61046c6004803603810190610467919061306f565b6112eb565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d690613936565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105aa57506105a982611388565b5b9050919050565b6040518060400160405280600c81526020017f5068746f2043757261746564000000000000000000000000000000000000000081525081565b60606105f58261146a565b6105fe836114fe565b60405160200161060f929190613736565b6040516020818303038152906040529050919050565b61062d61165f565b73ffffffffffffffffffffffffffffffffffffffff1661064b610d22565b73ffffffffffffffffffffffffffffffffffffffff16146106a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069890613a36565b60405180910390fd5b80600490805190602001906106b7929190612a13565b5050565b6000806000600560008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160018201548152505090508060000151925060648160200151856107599190613cfc565b6107639190613ccb565b9150509250929050565b61077561165f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806107bb57506107ba856107b561165f565b6110be565b5b6107fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f1906139d6565b60405180910390fd5b6108078585858585611667565b5050505050565b61081661165f565b73ffffffffffffffffffffffffffffffffffffffff16610834610d22565b73ffffffffffffffffffffffffffffffffffffffff161461088a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088190613a36565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156108d0573d6000803e3d6000fd5b50565b6108db61165f565b73ffffffffffffffffffffffffffffffffffffffff166108f9610d22565b73ffffffffffffffffffffffffffffffffffffffff161461094f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094690613a36565b60405180910390fd5b610a1233858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506040518060400160405280600681526020017f307830303030000000000000000000000000000000000000000000000000000081525061197b565b50505050565b60608151835114610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5590613a76565b60405180910390fd5b6000835167ffffffffffffffff811115610a7b57610a7a613fd9565b5b604051908082528060200260200182016040528015610aa95781602001602082028036833780820191505090505b50905060005b8451811015610b2657610af6858281518110610ace57610acd613faa565b5b6020026020010151858381518110610ae957610ae8613faa565b5b602002602001015161046e565b828281518110610b0957610b08613faa565b5b60200260200101818152505080610b1f90613ea3565b9050610aaf565b508091505092915050565b610b3961165f565b73ffffffffffffffffffffffffffffffffffffffff16610b57610d22565b73ffffffffffffffffffffffffffffffffffffffff1614610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490613a36565b60405180910390fd5b610bb681611b99565b50565b610bc161165f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610c075750610c0683610c0161165f565b6110be565b5b610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90613996565b60405180910390fd5b610c51838383611bb3565b505050565b610c5e61165f565b73ffffffffffffffffffffffffffffffffffffffff16610c7c610d22565b73ffffffffffffffffffffffffffffffffffffffff1614610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990613a36565b60405180910390fd5b610cdc6000611e64565b565b60056020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d5461165f565b73ffffffffffffffffffffffffffffffffffffffff16610d72610d22565b73ffffffffffffffffffffffffffffffffffffffff1614610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf90613a36565b60405180910390fd5b610e8b81868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506040518060400160405280600681526020017f307830303030000000000000000000000000000000000000000000000000000081525061197b565b5050505050565b6040518060400160405280600481526020017f5048544f0000000000000000000000000000000000000000000000000000000081525081565b610edd610ed661165f565b8383611f2a565b5050565b610ee961165f565b73ffffffffffffffffffffffffffffffffffffffff16610f07610d22565b73ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490613a36565b60405180910390fd5b60005b848490508110156110295760405180604001604052808473ffffffffffffffffffffffffffffffffffffffff1681526020018381525060056000878785818110610fad57610fac613faa565b5b90506020020135815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155905050808061102190613ea3565b915050610f60565b5050505050565b6004805461103d90613e40565b80601f016020809104026020016040519081016040528092919081815260200182805461106990613e40565b80156110b65780601f1061108b576101008083540402835291602001916110b6565b820191906000526020600020905b81548152906001019060200180831161109957829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61115a61165f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111a0575061119f8561119a61165f565b6110be565b5b6111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d690613996565b60405180910390fd5b6111ec8585858585612097565b5050505050565b6111fb61165f565b73ffffffffffffffffffffffffffffffffffffffff16611219610d22565b73ffffffffffffffffffffffffffffffffffffffff161461126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690613a36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690613956565b60405180910390fd5b6112e881611e64565b50565b6112f361165f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061133957506113388361133361165f565b6110be565b5b611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90613996565b60405180910390fd5b611383838383612319565b505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061145357507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611463575061146282612536565b5b9050919050565b60606002805461147990613e40565b80601f01602080910402602001604051908101604052809291908181526020018280546114a590613e40565b80156114f25780601f106114c7576101008083540402835291602001916114f2565b820191906000526020600020905b8154815290600101906020018083116114d557829003601f168201915b50505050509050919050565b60606000821415611546576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061165a565b600082905060005b6000821461157857808061156190613ea3565b915050600a826115719190613ccb565b915061154e565b60008167ffffffffffffffff81111561159457611593613fd9565b5b6040519080825280601f01601f1916602001820160405280156115c65781602001600182028036833780820191505090505b5090505b60008514611653576001826115df9190613d56565b9150600a856115ee9190613eec565b60306115fa9190613c75565b60f81b8183815181106116105761160f613faa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561164c9190613ccb565b94506115ca565b8093505050505b919050565b600033905090565b81518351146116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a290613a96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561171b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611712906139b6565b60405180910390fd5b600061172561165f565b90506117358187878787876125a0565b60005b84518110156118e657600085828151811061175657611755613faa565b5b60200260200101519050600085838151811061177557611774613faa565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90613a16565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118cb9190613c75565b92505081905550505050806118df90613ea3565b9050611738565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161195d929190613882565b60405180910390a46119738187878787876125a8565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613ab6565b60405180910390fd5b8151835114611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690613a96565b60405180910390fd5b6000611a3961165f565b9050611a4a816000878787876125a0565b60005b8451811015611b0357838181518110611a6957611a68613faa565b5b6020026020010151600080878481518110611a8757611a86613faa565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ae99190613c75565b925050819055508080611afb90613ea3565b915050611a4d565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b7b929190613882565b60405180910390a4611b92816000878787876125a8565b5050505050565b8060029080519060200190611baf929190612a13565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a906139f6565b60405180910390fd5b8051825114611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e90613a96565b60405180910390fd5b6000611c7161165f565b9050611c91818560008686604051806020016040528060008152506125a0565b60005b8351811015611dde576000848281518110611cb257611cb1613faa565b5b602002602001015190506000848381518110611cd157611cd0613faa565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6990613976565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611dd690613ea3565b915050611c94565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611e56929190613882565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9090613a56565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161208a91906138b9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fe906139b6565b60405180910390fd5b600061211161165f565b90506121318187876121228861278f565b61212b8861278f565b876125a0565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156121c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bf90613a16565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461227d9190613c75565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516122fa929190613af1565b60405180910390a4612310828888888888612809565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612380906139f6565b60405180910390fd5b600061239361165f565b90506123c3818560006123a58761278f565b6123ae8761278f565b604051806020016040528060008152506125a0565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561245a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245190613976565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612527929190613af1565b60405180910390a45050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050505050565b6125c78473ffffffffffffffffffffffffffffffffffffffff166129f0565b15612787578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161260d959493929190613775565b602060405180830381600087803b15801561262757600080fd5b505af192505050801561265857506040513d601f19601f8201168201806040525081019061265591906132f1565b60015b6126fe57612664614008565b806308c379a014156126c157506126796144e1565b8061268457506126c3565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b891906138d4565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f5906138f6565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277c90613916565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156127ae576127ad613fd9565b5b6040519080825280602002602001820160405280156127dc5781602001602082028036833780820191505090505b50905082816000815181106127f4576127f3613faa565b5b60200260200101818152505080915050919050565b6128288473ffffffffffffffffffffffffffffffffffffffff166129f0565b156129e8578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161286e9594939291906137dd565b602060405180830381600087803b15801561288857600080fd5b505af19250505080156128b957506040513d601f19601f820116820180604052508101906128b691906132f1565b60015b61295f576128c5614008565b806308c379a0141561292257506128da6144e1565b806128e55750612924565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291991906138d4565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612956906138f6565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146129e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129dd90613916565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612a1f90613e40565b90600052602060002090601f016020900481019282612a415760008555612a88565b82601f10612a5a57805160ff1916838001178555612a88565b82800160010185558215612a88579182015b82811115612a87578251825591602001919060010190612a6c565b5b509050612a959190612a99565b5090565b5b80821115612ab2576000816000905550600101612a9a565b5090565b6000612ac9612ac484613b3f565b613b1a565b90508083825260208201905082856020860282011115612aec57612aeb614034565b5b60005b85811015612b1c5781612b028882612c1a565b845260208401935060208301925050600181019050612aef565b5050509392505050565b6000612b39612b3484613b6b565b613b1a565b90508083825260208201905082856020860282011115612b5c57612b5b614034565b5b60005b85811015612b8c5781612b728882612d7c565b845260208401935060208301925050600181019050612b5f565b5050509392505050565b6000612ba9612ba484613b97565b613b1a565b905082815260208101848484011115612bc557612bc4614039565b5b612bd0848285613dfe565b509392505050565b6000612beb612be684613bc8565b613b1a565b905082815260208101848484011115612c0757612c06614039565b5b612c12848285613dfe565b509392505050565b600081359050612c2981614577565b92915050565b600082601f830112612c4457612c4361402f565b5b8135612c54848260208601612ab6565b91505092915050565b60008083601f840112612c7357612c7261402f565b5b8235905067ffffffffffffffff811115612c9057612c8f61402a565b5b602083019150836020820283011115612cac57612cab614034565b5b9250929050565b600082601f830112612cc857612cc761402f565b5b8135612cd8848260208601612b26565b91505092915050565b600081359050612cf08161458e565b92915050565b600081359050612d05816145a5565b92915050565b600081519050612d1a816145a5565b92915050565b600082601f830112612d3557612d3461402f565b5b8135612d45848260208601612b96565b91505092915050565b600082601f830112612d6357612d6261402f565b5b8135612d73848260208601612bd8565b91505092915050565b600081359050612d8b816145bc565b92915050565b600060208284031215612da757612da6614043565b5b6000612db584828501612c1a565b91505092915050565b60008060408385031215612dd557612dd4614043565b5b6000612de385828601612c1a565b9250506020612df485828601612c1a565b9150509250929050565b600080600080600060a08688031215612e1a57612e19614043565b5b6000612e2888828901612c1a565b9550506020612e3988828901612c1a565b945050604086013567ffffffffffffffff811115612e5a57612e5961403e565b5b612e6688828901612cb3565b935050606086013567ffffffffffffffff811115612e8757612e8661403e565b5b612e9388828901612cb3565b925050608086013567ffffffffffffffff811115612eb457612eb361403e565b5b612ec088828901612d20565b9150509295509295909350565b600080600080600060a08688031215612ee957612ee8614043565b5b6000612ef788828901612c1a565b9550506020612f0888828901612c1a565b9450506040612f1988828901612d7c565b9350506060612f2a88828901612d7c565b925050608086013567ffffffffffffffff811115612f4b57612f4a61403e565b5b612f5788828901612d20565b9150509295509295909350565b600080600060608486031215612f7d57612f7c614043565b5b6000612f8b86828701612c1a565b935050602084013567ffffffffffffffff811115612fac57612fab61403e565b5b612fb886828701612cb3565b925050604084013567ffffffffffffffff811115612fd957612fd861403e565b5b612fe586828701612cb3565b9150509250925092565b6000806040838503121561300657613005614043565b5b600061301485828601612c1a565b925050602061302585828601612ce1565b9150509250929050565b6000806040838503121561304657613045614043565b5b600061305485828601612c1a565b925050602061306585828601612d7c565b9150509250929050565b60008060006060848603121561308857613087614043565b5b600061309686828701612c1a565b93505060206130a786828701612d7c565b92505060406130b886828701612d7c565b9150509250925092565b600080604083850312156130d9576130d8614043565b5b600083013567ffffffffffffffff8111156130f7576130f661403e565b5b61310385828601612c2f565b925050602083013567ffffffffffffffff8111156131245761312361403e565b5b61313085828601612cb3565b9150509250929050565b6000806000806060858703121561315457613153614043565b5b600085013567ffffffffffffffff8111156131725761317161403e565b5b61317e87828801612c5d565b9450945050602061319187828801612c1a565b92505060406131a287828801612d7c565b91505092959194509250565b600080600080604085870312156131c8576131c7614043565b5b600085013567ffffffffffffffff8111156131e6576131e561403e565b5b6131f287828801612c5d565b9450945050602085013567ffffffffffffffff8111156132155761321461403e565b5b61322187828801612c5d565b925092505092959194509250565b60008060008060006060868803121561324b5761324a614043565b5b600086013567ffffffffffffffff8111156132695761326861403e565b5b61327588828901612c5d565b9550955050602086013567ffffffffffffffff8111156132985761329761403e565b5b6132a488828901612c5d565b935093505060406132b788828901612c1a565b9150509295509295909350565b6000602082840312156132da576132d9614043565b5b60006132e884828501612cf6565b91505092915050565b60006020828403121561330757613306614043565b5b600061331584828501612d0b565b91505092915050565b60006020828403121561333457613333614043565b5b600082013567ffffffffffffffff8111156133525761335161403e565b5b61335e84828501612d4e565b91505092915050565b60006020828403121561337d5761337c614043565b5b600061338b84828501612d7c565b91505092915050565b600080604083850312156133ab576133aa614043565b5b60006133b985828601612d7c565b92505060206133ca85828601612d7c565b9150509250929050565b60006133e08383613718565b60208301905092915050565b6133f581613d8a565b82525050565b600061340682613c09565b6134108185613c37565b935061341b83613bf9565b8060005b8381101561344c57815161343388826133d4565b975061343e83613c2a565b92505060018101905061341f565b5085935050505092915050565b61346281613d9c565b82525050565b600061347382613c14565b61347d8185613c48565b935061348d818560208601613e0d565b61349681614048565b840191505092915050565b60006134ac82613c1f565b6134b68185613c59565b93506134c6818560208601613e0d565b6134cf81614048565b840191505092915050565b60006134e582613c1f565b6134ef8185613c6a565b93506134ff818560208601613e0d565b80840191505092915050565b6000613518603483613c59565b915061352382614066565b604082019050919050565b600061353b602883613c59565b9150613546826140b5565b604082019050919050565b600061355e602b83613c59565b915061356982614104565b604082019050919050565b6000613581602683613c59565b915061358c82614153565b604082019050919050565b60006135a4602483613c59565b91506135af826141a2565b604082019050919050565b60006135c7602983613c59565b91506135d2826141f1565b604082019050919050565b60006135ea602583613c59565b91506135f582614240565b604082019050919050565b600061360d603283613c59565b91506136188261428f565b604082019050919050565b6000613630602383613c59565b915061363b826142de565b604082019050919050565b6000613653602a83613c59565b915061365e8261432d565b604082019050919050565b6000613676602083613c59565b91506136818261437c565b602082019050919050565b6000613699602983613c59565b91506136a4826143a5565b604082019050919050565b60006136bc602983613c59565b91506136c7826143f4565b604082019050919050565b60006136df602883613c59565b91506136ea82614443565b604082019050919050565b6000613702602183613c59565b915061370d82614492565b604082019050919050565b61372181613df4565b82525050565b61373081613df4565b82525050565b600061374282856134da565b915061374e82846134da565b91508190509392505050565b600060208201905061376f60008301846133ec565b92915050565b600060a08201905061378a60008301886133ec565b61379760208301876133ec565b81810360408301526137a981866133fb565b905081810360608301526137bd81856133fb565b905081810360808301526137d18184613468565b90509695505050505050565b600060a0820190506137f260008301886133ec565b6137ff60208301876133ec565b61380c6040830186613727565b6138196060830185613727565b818103608083015261382b8184613468565b90509695505050505050565b600060408201905061384c60008301856133ec565b6138596020830184613727565b9392505050565b6000602082019050818103600083015261387a81846133fb565b905092915050565b6000604082019050818103600083015261389c81856133fb565b905081810360208301526138b081846133fb565b90509392505050565b60006020820190506138ce6000830184613459565b92915050565b600060208201905081810360008301526138ee81846134a1565b905092915050565b6000602082019050818103600083015261390f8161350b565b9050919050565b6000602082019050818103600083015261392f8161352e565b9050919050565b6000602082019050818103600083015261394f81613551565b9050919050565b6000602082019050818103600083015261396f81613574565b9050919050565b6000602082019050818103600083015261398f81613597565b9050919050565b600060208201905081810360008301526139af816135ba565b9050919050565b600060208201905081810360008301526139cf816135dd565b9050919050565b600060208201905081810360008301526139ef81613600565b9050919050565b60006020820190508181036000830152613a0f81613623565b9050919050565b60006020820190508181036000830152613a2f81613646565b9050919050565b60006020820190508181036000830152613a4f81613669565b9050919050565b60006020820190508181036000830152613a6f8161368c565b9050919050565b60006020820190508181036000830152613a8f816136af565b9050919050565b60006020820190508181036000830152613aaf816136d2565b9050919050565b60006020820190508181036000830152613acf816136f5565b9050919050565b6000602082019050613aeb6000830184613727565b92915050565b6000604082019050613b066000830185613727565b613b136020830184613727565b9392505050565b6000613b24613b35565b9050613b308282613e72565b919050565b6000604051905090565b600067ffffffffffffffff821115613b5a57613b59613fd9565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613b8657613b85613fd9565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613bb257613bb1613fd9565b5b613bbb82614048565b9050602081019050919050565b600067ffffffffffffffff821115613be357613be2613fd9565b5b613bec82614048565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c8082613df4565b9150613c8b83613df4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cc057613cbf613f1d565b5b828201905092915050565b6000613cd682613df4565b9150613ce183613df4565b925082613cf157613cf0613f4c565b5b828204905092915050565b6000613d0782613df4565b9150613d1283613df4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d4b57613d4a613f1d565b5b828202905092915050565b6000613d6182613df4565b9150613d6c83613df4565b925082821015613d7f57613d7e613f1d565b5b828203905092915050565b6000613d9582613dd4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e2b578082015181840152602081019050613e10565b83811115613e3a576000848401525b50505050565b60006002820490506001821680613e5857607f821691505b60208210811415613e6c57613e6b613f7b565b5b50919050565b613e7b82614048565b810181811067ffffffffffffffff82111715613e9a57613e99613fd9565b5b80604052505050565b6000613eae82613df4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ee157613ee0613f1d565b5b600182019050919050565b6000613ef782613df4565b9150613f0283613df4565b925082613f1257613f11613f4c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156140275760046000803e614024600051614059565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156144f157614574565b6144f9613b35565b60043d036004823e80513d602482011167ffffffffffffffff82111715614521575050614574565b808201805167ffffffffffffffff81111561453f5750505050614574565b80602083010160043d03850181111561455c575050505050614574565b61456b82602001850186613e72565b82955050505050505b90565b61458081613d8a565b811461458b57600080fd5b50565b61459781613d9c565b81146145a257600080fd5b50565b6145ae81613da8565b81146145b957600080fd5b50565b6145c581613df4565b81146145d057600080fd5b5056fea2646970667358221220417693ad4120d8d06972ba1c449d82668cfbda49653269b25601366db7f018f364736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6374527a45754734765777456931316f4167425568714647637570696b704134714e6b57734e62457656456b2f00000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmctRzEuG4vWwEi11oAgBUhqFGcupikpA4qNkWsNbEvVEk/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d6374527a45754734765777456931316f41674255687146
Arg [3] : 47637570696b704134714e6b57734e62457656456b2f00000000000000000000


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.