ETH Price: $3,519.08 (+0.24%)
Gas: 3 Gwei

Token

KissMas (KM)
 

Overview

Max Total Supply

154 KM

Holders

91

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 KM
0x063a48f3b73957b6d0640352525eae313d4426c3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Pre Sale 06/12 Public Sale 15/12 on Tina's website: http://www.tinaeisen.com/ KissMas is a collection of 254 art pieces designed by Tina Eisen. These NFTs are part of a special Christmas edition and will allow users to participate in future events, raffles and exclusive offer...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KissMas

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 10000 runs

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

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

contract KissMas is ERC721, Ownable {

  uint96 private supply;
  address public minter;

  string public baseURI;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _URI
  ) ERC721(_name, _symbol) {
    baseURI = _URI;
    minter = msg.sender;
  }

  /* view functions */

  function totalSupply() external view returns (uint) {
    return supply;
  }

  function _baseURI() internal view override returns (string memory) {
    return baseURI;
  }

  /* mutating functions */

  function setBaseURI(string memory URI) external onlyOwner {
    baseURI = URI;
  }

  function changeMinter(address newMinter) external onlyOwner {
    minter = newMinter;
  }

  function mint(
    address[] calldata destinations,
    uint[] calldata amounts,
    uint expectedSupply
  ) external {

    uint currentSupply = supply;
    address currentMinter = minter;

    require(msg.sender == currentMinter, "!minter");

    for (uint i = 0; i < amounts.length; i++) {

      uint amount = amounts[i];
      address destination = destinations[i];

      for (uint j = 0; j < amount; j++) {
        _safeMint(destination, ++currentSupply);
      }
    }

    require(currentSupply == expectedSupply, "!supply");
    supply = uint96(currentSupply);
  }

}

File 2 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @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, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 5 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 6 of 11 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 8 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 9 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 10 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 11 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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": 10000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_URI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newMinter","type":"address"}],"name":"changeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"destinations","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"uint256","name":"expectedSupply","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200397f3803806200397f83398181016040528101906200003791906200040b565b8282816000908051906020019062000051929190620001be565b5080600190805190602001906200006a929190620001be565b5050506200008d62000081620000f060201b60201c565b620000f860201b60201c565b8060089080519060200190620000a5929190620001be565b5033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000529565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cc90620004f3565b90600052602060002090601f016020900481019282620001f057600085556200023c565b82601f106200020b57805160ff19168380011785556200023c565b828001600101855582156200023c579182015b828111156200023b5782518255916020019190600101906200021e565b5b5090506200024b91906200024f565b5090565b5b808211156200026a57600081600090555060010162000250565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002d7826200028c565b810181811067ffffffffffffffff82111715620002f957620002f86200029d565b5b80604052505050565b60006200030e6200026e565b90506200031c8282620002cc565b919050565b600067ffffffffffffffff8211156200033f576200033e6200029d565b5b6200034a826200028c565b9050602081019050919050565b60005b83811015620003775780820151818401526020810190506200035a565b8381111562000387576000848401525b50505050565b6000620003a46200039e8462000321565b62000302565b905082815260208101848484011115620003c357620003c262000287565b5b620003d084828562000357565b509392505050565b600082601f830112620003f057620003ef62000282565b5b8151620004028482602086016200038d565b91505092915050565b60008060006060848603121562000427576200042662000278565b5b600084015167ffffffffffffffff8111156200044857620004476200027d565b5b6200045686828701620003d8565b935050602084015167ffffffffffffffff8111156200047a57620004796200027d565b5b6200048886828701620003d8565b925050604084015167ffffffffffffffff811115620004ac57620004ab6200027d565b5b620004ba86828701620003d8565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200050c57607f821691505b60208210811415620005235762000522620004c4565b5b50919050565b61344680620005396000396000f3fe608060405234801561001057600080fd5b50600436106101825760003560e01c80636352211e116100d857806395d89b411161008c578063c87b56dd11610066578063c87b56dd146103e5578063e985e9c514610415578063f2fde38b1461044557610182565b806395d89b411461038f578063a22cb465146103ad578063b88d4fde146103c957610182565b806370a08231116100bd57806370a0823114610337578063715018a6146103675780638da5cb5b1461037157610182565b80636352211e146102e95780636c0360eb1461031957610182565b806318160ddd1161013a57806342842e0e1161011457806342842e0e1461029557806355f804b3146102b15780635e2a0023146102cd57610182565b806318160ddd1461023f57806323b872dd1461025d5780632c4d4d181461027957610182565b8063075461721161016b57806307546172146101d5578063081812fc146101f3578063095ea7b31461022357610182565b806301ffc9a71461018757806306fdde03146101b7575b600080fd5b6101a1600480360381019061019c9190611fbe565b610461565b6040516101ae9190612006565b60405180910390f35b6101bf610543565b6040516101cc91906120ba565b60405180910390f35b6101dd6105d5565b6040516101ea919061211d565b60405180910390f35b61020d6004803603810190610208919061216e565b6105fb565b60405161021a919061211d565b60405180910390f35b61023d600480360381019061023891906121c7565b610680565b005b610247610798565b6040516102549190612216565b60405180910390f35b61027760048036038101906102729190612231565b6107c8565b005b610293600480360381019061028e9190612284565b610828565b005b6102af60048036038101906102aa9190612231565b6108e8565b005b6102cb60048036038101906102c691906123e6565b610908565b005b6102e760048036038101906102e291906124e5565b61099e565b005b61030360048036038101906102fe919061216e565b610b7f565b604051610310919061211d565b60405180910390f35b610321610c31565b60405161032e91906120ba565b60405180910390f35b610351600480360381019061034c9190612284565b610cbf565b60405161035e9190612216565b60405180910390f35b61036f610d77565b005b610379610dff565b604051610386919061211d565b60405180910390f35b610397610e29565b6040516103a491906120ba565b60405180910390f35b6103c760048036038101906103c291906125a6565b610ebb565b005b6103e360048036038101906103de9190612687565b610ed1565b005b6103ff60048036038101906103fa919061216e565b610f33565b60405161040c91906120ba565b60405180910390f35b61042f600480360381019061042a919061270a565b610fda565b60405161043c9190612006565b60405180910390f35b61045f600480360381019061045a9190612284565b61106e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061052c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061053c575061053b82611166565b5b9050919050565b60606000805461055290612779565b80601f016020809104026020016040519081016040528092919081815260200182805461057e90612779565b80156105cb5780601f106105a0576101008083540402835291602001916105cb565b820191906000526020600020905b8154815290600101906020018083116105ae57829003601f168201915b5050505050905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610606826111d0565b610645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063c9061281d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061068b82610b7f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f3906128af565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661071b61123c565b73ffffffffffffffffffffffffffffffffffffffff16148061074a57506107498161074461123c565b610fda565b5b610789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078090612941565b60405180910390fd5b6107938383611244565b505050565b6000600660149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16905090565b6107d96107d361123c565b826112fd565b610818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080f906129d3565b60405180910390fd5b6108238383836113db565b505050565b61083061123c565b73ffffffffffffffffffffffffffffffffffffffff1661084e610dff565b73ffffffffffffffffffffffffffffffffffffffff16146108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b90612a3f565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61090383838360405180602001604052806000815250610ed1565b505050565b61091061123c565b73ffffffffffffffffffffffffffffffffffffffff1661092e610dff565b73ffffffffffffffffffffffffffffffffffffffff1614610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b90612a3f565b60405180910390fd5b806008908051906020019061099a929190611eaf565b5050565b6000600660149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1690506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790612aab565b60405180910390fd5b60005b85859050811015610b02576000868683818110610a8357610a82612acb565b5b9050602002013590506000898984818110610aa157610aa0612acb565b5b9050602002016020810190610ab69190612284565b905060005b82811015610aec57610ad98287610ad190612b29565b975087611637565b8080610ae490612b29565b915050610abb565b5050508080610afa90612b29565b915050610a63565b50828214610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90612bbe565b60405180910390fd5b81600660146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555050505050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90612c50565b60405180910390fd5b80915050919050565b60088054610c3e90612779565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6a90612779565b8015610cb75780601f10610c8c57610100808354040283529160200191610cb7565b820191906000526020600020905b815481529060010190602001808311610c9a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790612ce2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d7f61123c565b73ffffffffffffffffffffffffffffffffffffffff16610d9d610dff565b73ffffffffffffffffffffffffffffffffffffffff1614610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90612a3f565b60405180910390fd5b610dfd6000611655565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e3890612779565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6490612779565b8015610eb15780601f10610e8657610100808354040283529160200191610eb1565b820191906000526020600020905b815481529060010190602001808311610e9457829003601f168201915b5050505050905090565b610ecd610ec661123c565b838361171b565b5050565b610ee2610edc61123c565b836112fd565b610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f18906129d3565b60405180910390fd5b610f2d84848484611888565b50505050565b6060610f3e826111d0565b610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490612d74565b60405180910390fd5b6000610f876118e4565b90506000815111610fa75760405180602001604052806000815250610fd2565b80610fb184611976565b604051602001610fc2929190612dd0565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61107661123c565b73ffffffffffffffffffffffffffffffffffffffff16611094610dff565b73ffffffffffffffffffffffffffffffffffffffff16146110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e190612a3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190612e66565b60405180910390fd5b61116381611655565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112b783610b7f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611308826111d0565b611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90612ef8565b60405180910390fd5b600061135283610b7f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113c157508373ffffffffffffffffffffffffffffffffffffffff166113a9846105fb565b73ffffffffffffffffffffffffffffffffffffffff16145b806113d257506113d18185610fda565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166113fb82610b7f565b73ffffffffffffffffffffffffffffffffffffffff1614611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890612f8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b89061301c565b60405180910390fd5b6114cc838383611ad7565b6114d7600082611244565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611527919061303c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461157e9190613070565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611651828260405180602001604052806000815250611adc565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190613112565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161187b9190612006565b60405180910390a3505050565b6118938484846113db565b61189f84848484611b37565b6118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d5906131a4565b60405180910390fd5b50505050565b6060600880546118f390612779565b80601f016020809104026020016040519081016040528092919081815260200182805461191f90612779565b801561196c5780601f106119415761010080835404028352916020019161196c565b820191906000526020600020905b81548152906001019060200180831161194f57829003601f168201915b5050505050905090565b606060008214156119be576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ad2565b600082905060005b600082146119f05780806119d990612b29565b915050600a826119e991906131f3565b91506119c6565b60008167ffffffffffffffff811115611a0c57611a0b6122bb565b5b6040519080825280601f01601f191660200182016040528015611a3e5781602001600182028036833780820191505090505b5090505b60008514611acb57600182611a57919061303c565b9150600a85611a669190613224565b6030611a729190613070565b60f81b818381518110611a8857611a87612acb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ac491906131f3565b9450611a42565b8093505050505b919050565b505050565b611ae68383611cce565b611af36000848484611b37565b611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b29906131a4565b60405180910390fd5b505050565b6000611b588473ffffffffffffffffffffffffffffffffffffffff16611e9c565b15611cc1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b8161123c565b8786866040518563ffffffff1660e01b8152600401611ba394939291906132aa565b602060405180830381600087803b158015611bbd57600080fd5b505af1925050508015611bee57506040513d601f19601f82011682018060405250810190611beb919061330b565b60015b611c71573d8060008114611c1e576040519150601f19603f3d011682016040523d82523d6000602084013e611c23565b606091505b50600081511415611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c60906131a4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611cc6565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3590613384565b60405180910390fd5b611d47816111d0565b15611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e906133f0565b60405180910390fd5b611d9360008383611ad7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611de39190613070565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054611ebb90612779565b90600052602060002090601f016020900481019282611edd5760008555611f24565b82601f10611ef657805160ff1916838001178555611f24565b82800160010185558215611f24579182015b82811115611f23578251825591602001919060010190611f08565b5b509050611f319190611f35565b5090565b5b80821115611f4e576000816000905550600101611f36565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f9b81611f66565b8114611fa657600080fd5b50565b600081359050611fb881611f92565b92915050565b600060208284031215611fd457611fd3611f5c565b5b6000611fe284828501611fa9565b91505092915050565b60008115159050919050565b61200081611feb565b82525050565b600060208201905061201b6000830184611ff7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561205b578082015181840152602081019050612040565b8381111561206a576000848401525b50505050565b6000601f19601f8301169050919050565b600061208c82612021565b612096818561202c565b93506120a681856020860161203d565b6120af81612070565b840191505092915050565b600060208201905081810360008301526120d48184612081565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612107826120dc565b9050919050565b612117816120fc565b82525050565b6000602082019050612132600083018461210e565b92915050565b6000819050919050565b61214b81612138565b811461215657600080fd5b50565b60008135905061216881612142565b92915050565b60006020828403121561218457612183611f5c565b5b600061219284828501612159565b91505092915050565b6121a4816120fc565b81146121af57600080fd5b50565b6000813590506121c18161219b565b92915050565b600080604083850312156121de576121dd611f5c565b5b60006121ec858286016121b2565b92505060206121fd85828601612159565b9150509250929050565b61221081612138565b82525050565b600060208201905061222b6000830184612207565b92915050565b60008060006060848603121561224a57612249611f5c565b5b6000612258868287016121b2565b9350506020612269868287016121b2565b925050604061227a86828701612159565b9150509250925092565b60006020828403121561229a57612299611f5c565b5b60006122a8848285016121b2565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122f382612070565b810181811067ffffffffffffffff82111715612312576123116122bb565b5b80604052505050565b6000612325611f52565b905061233182826122ea565b919050565b600067ffffffffffffffff821115612351576123506122bb565b5b61235a82612070565b9050602081019050919050565b82818337600083830152505050565b600061238961238484612336565b61231b565b9050828152602081018484840111156123a5576123a46122b6565b5b6123b0848285612367565b509392505050565b600082601f8301126123cd576123cc6122b1565b5b81356123dd848260208601612376565b91505092915050565b6000602082840312156123fc576123fb611f5c565b5b600082013567ffffffffffffffff81111561241a57612419611f61565b5b612426848285016123b8565b91505092915050565b600080fd5b600080fd5b60008083601f84011261244f5761244e6122b1565b5b8235905067ffffffffffffffff81111561246c5761246b61242f565b5b60208301915083602082028301111561248857612487612434565b5b9250929050565b60008083601f8401126124a5576124a46122b1565b5b8235905067ffffffffffffffff8111156124c2576124c161242f565b5b6020830191508360208202830111156124de576124dd612434565b5b9250929050565b60008060008060006060868803121561250157612500611f5c565b5b600086013567ffffffffffffffff81111561251f5761251e611f61565b5b61252b88828901612439565b9550955050602086013567ffffffffffffffff81111561254e5761254d611f61565b5b61255a8882890161248f565b9350935050604061256d88828901612159565b9150509295509295909350565b61258381611feb565b811461258e57600080fd5b50565b6000813590506125a08161257a565b92915050565b600080604083850312156125bd576125bc611f5c565b5b60006125cb858286016121b2565b92505060206125dc85828601612591565b9150509250929050565b600067ffffffffffffffff821115612601576126006122bb565b5b61260a82612070565b9050602081019050919050565b600061262a612625846125e6565b61231b565b905082815260208101848484011115612646576126456122b6565b5b612651848285612367565b509392505050565b600082601f83011261266e5761266d6122b1565b5b813561267e848260208601612617565b91505092915050565b600080600080608085870312156126a1576126a0611f5c565b5b60006126af878288016121b2565b94505060206126c0878288016121b2565b93505060406126d187828801612159565b925050606085013567ffffffffffffffff8111156126f2576126f1611f61565b5b6126fe87828801612659565b91505092959194509250565b6000806040838503121561272157612720611f5c565b5b600061272f858286016121b2565b9250506020612740858286016121b2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061279157607f821691505b602082108114156127a5576127a461274a565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612807602c8361202c565b9150612812826127ab565b604082019050919050565b60006020820190508181036000830152612836816127fa565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061289960218361202c565b91506128a48261283d565b604082019050919050565b600060208201905081810360008301526128c88161288c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061292b60388361202c565b9150612936826128cf565b604082019050919050565b6000602082019050818103600083015261295a8161291e565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006129bd60318361202c565b91506129c882612961565b604082019050919050565b600060208201905081810360008301526129ec816129b0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a2960208361202c565b9150612a34826129f3565b602082019050919050565b60006020820190508181036000830152612a5881612a1c565b9050919050565b7f216d696e74657200000000000000000000000000000000000000000000000000600082015250565b6000612a9560078361202c565b9150612aa082612a5f565b602082019050919050565b60006020820190508181036000830152612ac481612a88565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b3482612138565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b6757612b66612afa565b5b600182019050919050565b7f21737570706c7900000000000000000000000000000000000000000000000000600082015250565b6000612ba860078361202c565b9150612bb382612b72565b602082019050919050565b60006020820190508181036000830152612bd781612b9b565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612c3a60298361202c565b9150612c4582612bde565b604082019050919050565b60006020820190508181036000830152612c6981612c2d565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612ccc602a8361202c565b9150612cd782612c70565b604082019050919050565b60006020820190508181036000830152612cfb81612cbf565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612d5e602f8361202c565b9150612d6982612d02565b604082019050919050565b60006020820190508181036000830152612d8d81612d51565b9050919050565b600081905092915050565b6000612daa82612021565b612db48185612d94565b9350612dc481856020860161203d565b80840191505092915050565b6000612ddc8285612d9f565b9150612de88284612d9f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e5060268361202c565b9150612e5b82612df4565b604082019050919050565b60006020820190508181036000830152612e7f81612e43565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612ee2602c8361202c565b9150612eed82612e86565b604082019050919050565b60006020820190508181036000830152612f1181612ed5565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000612f7460298361202c565b9150612f7f82612f18565b604082019050919050565b60006020820190508181036000830152612fa381612f67565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061300660248361202c565b915061301182612faa565b604082019050919050565b6000602082019050818103600083015261303581612ff9565b9050919050565b600061304782612138565b915061305283612138565b92508282101561306557613064612afa565b5b828203905092915050565b600061307b82612138565b915061308683612138565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130bb576130ba612afa565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006130fc60198361202c565b9150613107826130c6565b602082019050919050565b6000602082019050818103600083015261312b816130ef565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061318e60328361202c565b915061319982613132565b604082019050919050565b600060208201905081810360008301526131bd81613181565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006131fe82612138565b915061320983612138565b925082613219576132186131c4565b5b828204905092915050565b600061322f82612138565b915061323a83612138565b92508261324a576132496131c4565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061327c82613255565b6132868185613260565b935061329681856020860161203d565b61329f81612070565b840191505092915050565b60006080820190506132bf600083018761210e565b6132cc602083018661210e565b6132d96040830185612207565b81810360608301526132eb8184613271565b905095945050505050565b60008151905061330581611f92565b92915050565b60006020828403121561332157613320611f5c565b5b600061332f848285016132f6565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061336e60208361202c565b915061337982613338565b602082019050919050565b6000602082019050818103600083015261339d81613361565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006133da601c8361202c565b91506133e5826133a4565b602082019050919050565b60006020820190508181036000830152613409816133cd565b905091905056fea2646970667358221220a6fe12a764f05a47b4eabcf304f4e8890a8b2627b38517f2741ee35208b188af64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000074b6973734d61730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024b4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6e66742e74696e61656973656e2e636f6d2f6b6973736d61732f000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101825760003560e01c80636352211e116100d857806395d89b411161008c578063c87b56dd11610066578063c87b56dd146103e5578063e985e9c514610415578063f2fde38b1461044557610182565b806395d89b411461038f578063a22cb465146103ad578063b88d4fde146103c957610182565b806370a08231116100bd57806370a0823114610337578063715018a6146103675780638da5cb5b1461037157610182565b80636352211e146102e95780636c0360eb1461031957610182565b806318160ddd1161013a57806342842e0e1161011457806342842e0e1461029557806355f804b3146102b15780635e2a0023146102cd57610182565b806318160ddd1461023f57806323b872dd1461025d5780632c4d4d181461027957610182565b8063075461721161016b57806307546172146101d5578063081812fc146101f3578063095ea7b31461022357610182565b806301ffc9a71461018757806306fdde03146101b7575b600080fd5b6101a1600480360381019061019c9190611fbe565b610461565b6040516101ae9190612006565b60405180910390f35b6101bf610543565b6040516101cc91906120ba565b60405180910390f35b6101dd6105d5565b6040516101ea919061211d565b60405180910390f35b61020d6004803603810190610208919061216e565b6105fb565b60405161021a919061211d565b60405180910390f35b61023d600480360381019061023891906121c7565b610680565b005b610247610798565b6040516102549190612216565b60405180910390f35b61027760048036038101906102729190612231565b6107c8565b005b610293600480360381019061028e9190612284565b610828565b005b6102af60048036038101906102aa9190612231565b6108e8565b005b6102cb60048036038101906102c691906123e6565b610908565b005b6102e760048036038101906102e291906124e5565b61099e565b005b61030360048036038101906102fe919061216e565b610b7f565b604051610310919061211d565b60405180910390f35b610321610c31565b60405161032e91906120ba565b60405180910390f35b610351600480360381019061034c9190612284565b610cbf565b60405161035e9190612216565b60405180910390f35b61036f610d77565b005b610379610dff565b604051610386919061211d565b60405180910390f35b610397610e29565b6040516103a491906120ba565b60405180910390f35b6103c760048036038101906103c291906125a6565b610ebb565b005b6103e360048036038101906103de9190612687565b610ed1565b005b6103ff60048036038101906103fa919061216e565b610f33565b60405161040c91906120ba565b60405180910390f35b61042f600480360381019061042a919061270a565b610fda565b60405161043c9190612006565b60405180910390f35b61045f600480360381019061045a9190612284565b61106e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061052c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061053c575061053b82611166565b5b9050919050565b60606000805461055290612779565b80601f016020809104026020016040519081016040528092919081815260200182805461057e90612779565b80156105cb5780601f106105a0576101008083540402835291602001916105cb565b820191906000526020600020905b8154815290600101906020018083116105ae57829003601f168201915b5050505050905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610606826111d0565b610645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063c9061281d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061068b82610b7f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f3906128af565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661071b61123c565b73ffffffffffffffffffffffffffffffffffffffff16148061074a57506107498161074461123c565b610fda565b5b610789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078090612941565b60405180910390fd5b6107938383611244565b505050565b6000600660149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16905090565b6107d96107d361123c565b826112fd565b610818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080f906129d3565b60405180910390fd5b6108238383836113db565b505050565b61083061123c565b73ffffffffffffffffffffffffffffffffffffffff1661084e610dff565b73ffffffffffffffffffffffffffffffffffffffff16146108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b90612a3f565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61090383838360405180602001604052806000815250610ed1565b505050565b61091061123c565b73ffffffffffffffffffffffffffffffffffffffff1661092e610dff565b73ffffffffffffffffffffffffffffffffffffffff1614610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b90612a3f565b60405180910390fd5b806008908051906020019061099a929190611eaf565b5050565b6000600660149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1690506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790612aab565b60405180910390fd5b60005b85859050811015610b02576000868683818110610a8357610a82612acb565b5b9050602002013590506000898984818110610aa157610aa0612acb565b5b9050602002016020810190610ab69190612284565b905060005b82811015610aec57610ad98287610ad190612b29565b975087611637565b8080610ae490612b29565b915050610abb565b5050508080610afa90612b29565b915050610a63565b50828214610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90612bbe565b60405180910390fd5b81600660146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555050505050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90612c50565b60405180910390fd5b80915050919050565b60088054610c3e90612779565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6a90612779565b8015610cb75780601f10610c8c57610100808354040283529160200191610cb7565b820191906000526020600020905b815481529060010190602001808311610c9a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790612ce2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d7f61123c565b73ffffffffffffffffffffffffffffffffffffffff16610d9d610dff565b73ffffffffffffffffffffffffffffffffffffffff1614610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90612a3f565b60405180910390fd5b610dfd6000611655565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e3890612779565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6490612779565b8015610eb15780601f10610e8657610100808354040283529160200191610eb1565b820191906000526020600020905b815481529060010190602001808311610e9457829003601f168201915b5050505050905090565b610ecd610ec661123c565b838361171b565b5050565b610ee2610edc61123c565b836112fd565b610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f18906129d3565b60405180910390fd5b610f2d84848484611888565b50505050565b6060610f3e826111d0565b610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490612d74565b60405180910390fd5b6000610f876118e4565b90506000815111610fa75760405180602001604052806000815250610fd2565b80610fb184611976565b604051602001610fc2929190612dd0565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61107661123c565b73ffffffffffffffffffffffffffffffffffffffff16611094610dff565b73ffffffffffffffffffffffffffffffffffffffff16146110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e190612a3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190612e66565b60405180910390fd5b61116381611655565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112b783610b7f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611308826111d0565b611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90612ef8565b60405180910390fd5b600061135283610b7f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113c157508373ffffffffffffffffffffffffffffffffffffffff166113a9846105fb565b73ffffffffffffffffffffffffffffffffffffffff16145b806113d257506113d18185610fda565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166113fb82610b7f565b73ffffffffffffffffffffffffffffffffffffffff1614611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890612f8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b89061301c565b60405180910390fd5b6114cc838383611ad7565b6114d7600082611244565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611527919061303c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461157e9190613070565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611651828260405180602001604052806000815250611adc565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190613112565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161187b9190612006565b60405180910390a3505050565b6118938484846113db565b61189f84848484611b37565b6118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d5906131a4565b60405180910390fd5b50505050565b6060600880546118f390612779565b80601f016020809104026020016040519081016040528092919081815260200182805461191f90612779565b801561196c5780601f106119415761010080835404028352916020019161196c565b820191906000526020600020905b81548152906001019060200180831161194f57829003601f168201915b5050505050905090565b606060008214156119be576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ad2565b600082905060005b600082146119f05780806119d990612b29565b915050600a826119e991906131f3565b91506119c6565b60008167ffffffffffffffff811115611a0c57611a0b6122bb565b5b6040519080825280601f01601f191660200182016040528015611a3e5781602001600182028036833780820191505090505b5090505b60008514611acb57600182611a57919061303c565b9150600a85611a669190613224565b6030611a729190613070565b60f81b818381518110611a8857611a87612acb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ac491906131f3565b9450611a42565b8093505050505b919050565b505050565b611ae68383611cce565b611af36000848484611b37565b611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b29906131a4565b60405180910390fd5b505050565b6000611b588473ffffffffffffffffffffffffffffffffffffffff16611e9c565b15611cc1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b8161123c565b8786866040518563ffffffff1660e01b8152600401611ba394939291906132aa565b602060405180830381600087803b158015611bbd57600080fd5b505af1925050508015611bee57506040513d601f19601f82011682018060405250810190611beb919061330b565b60015b611c71573d8060008114611c1e576040519150601f19603f3d011682016040523d82523d6000602084013e611c23565b606091505b50600081511415611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c60906131a4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611cc6565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3590613384565b60405180910390fd5b611d47816111d0565b15611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e906133f0565b60405180910390fd5b611d9360008383611ad7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611de39190613070565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054611ebb90612779565b90600052602060002090601f016020900481019282611edd5760008555611f24565b82601f10611ef657805160ff1916838001178555611f24565b82800160010185558215611f24579182015b82811115611f23578251825591602001919060010190611f08565b5b509050611f319190611f35565b5090565b5b80821115611f4e576000816000905550600101611f36565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f9b81611f66565b8114611fa657600080fd5b50565b600081359050611fb881611f92565b92915050565b600060208284031215611fd457611fd3611f5c565b5b6000611fe284828501611fa9565b91505092915050565b60008115159050919050565b61200081611feb565b82525050565b600060208201905061201b6000830184611ff7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561205b578082015181840152602081019050612040565b8381111561206a576000848401525b50505050565b6000601f19601f8301169050919050565b600061208c82612021565b612096818561202c565b93506120a681856020860161203d565b6120af81612070565b840191505092915050565b600060208201905081810360008301526120d48184612081565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612107826120dc565b9050919050565b612117816120fc565b82525050565b6000602082019050612132600083018461210e565b92915050565b6000819050919050565b61214b81612138565b811461215657600080fd5b50565b60008135905061216881612142565b92915050565b60006020828403121561218457612183611f5c565b5b600061219284828501612159565b91505092915050565b6121a4816120fc565b81146121af57600080fd5b50565b6000813590506121c18161219b565b92915050565b600080604083850312156121de576121dd611f5c565b5b60006121ec858286016121b2565b92505060206121fd85828601612159565b9150509250929050565b61221081612138565b82525050565b600060208201905061222b6000830184612207565b92915050565b60008060006060848603121561224a57612249611f5c565b5b6000612258868287016121b2565b9350506020612269868287016121b2565b925050604061227a86828701612159565b9150509250925092565b60006020828403121561229a57612299611f5c565b5b60006122a8848285016121b2565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122f382612070565b810181811067ffffffffffffffff82111715612312576123116122bb565b5b80604052505050565b6000612325611f52565b905061233182826122ea565b919050565b600067ffffffffffffffff821115612351576123506122bb565b5b61235a82612070565b9050602081019050919050565b82818337600083830152505050565b600061238961238484612336565b61231b565b9050828152602081018484840111156123a5576123a46122b6565b5b6123b0848285612367565b509392505050565b600082601f8301126123cd576123cc6122b1565b5b81356123dd848260208601612376565b91505092915050565b6000602082840312156123fc576123fb611f5c565b5b600082013567ffffffffffffffff81111561241a57612419611f61565b5b612426848285016123b8565b91505092915050565b600080fd5b600080fd5b60008083601f84011261244f5761244e6122b1565b5b8235905067ffffffffffffffff81111561246c5761246b61242f565b5b60208301915083602082028301111561248857612487612434565b5b9250929050565b60008083601f8401126124a5576124a46122b1565b5b8235905067ffffffffffffffff8111156124c2576124c161242f565b5b6020830191508360208202830111156124de576124dd612434565b5b9250929050565b60008060008060006060868803121561250157612500611f5c565b5b600086013567ffffffffffffffff81111561251f5761251e611f61565b5b61252b88828901612439565b9550955050602086013567ffffffffffffffff81111561254e5761254d611f61565b5b61255a8882890161248f565b9350935050604061256d88828901612159565b9150509295509295909350565b61258381611feb565b811461258e57600080fd5b50565b6000813590506125a08161257a565b92915050565b600080604083850312156125bd576125bc611f5c565b5b60006125cb858286016121b2565b92505060206125dc85828601612591565b9150509250929050565b600067ffffffffffffffff821115612601576126006122bb565b5b61260a82612070565b9050602081019050919050565b600061262a612625846125e6565b61231b565b905082815260208101848484011115612646576126456122b6565b5b612651848285612367565b509392505050565b600082601f83011261266e5761266d6122b1565b5b813561267e848260208601612617565b91505092915050565b600080600080608085870312156126a1576126a0611f5c565b5b60006126af878288016121b2565b94505060206126c0878288016121b2565b93505060406126d187828801612159565b925050606085013567ffffffffffffffff8111156126f2576126f1611f61565b5b6126fe87828801612659565b91505092959194509250565b6000806040838503121561272157612720611f5c565b5b600061272f858286016121b2565b9250506020612740858286016121b2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061279157607f821691505b602082108114156127a5576127a461274a565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612807602c8361202c565b9150612812826127ab565b604082019050919050565b60006020820190508181036000830152612836816127fa565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061289960218361202c565b91506128a48261283d565b604082019050919050565b600060208201905081810360008301526128c88161288c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061292b60388361202c565b9150612936826128cf565b604082019050919050565b6000602082019050818103600083015261295a8161291e565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006129bd60318361202c565b91506129c882612961565b604082019050919050565b600060208201905081810360008301526129ec816129b0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a2960208361202c565b9150612a34826129f3565b602082019050919050565b60006020820190508181036000830152612a5881612a1c565b9050919050565b7f216d696e74657200000000000000000000000000000000000000000000000000600082015250565b6000612a9560078361202c565b9150612aa082612a5f565b602082019050919050565b60006020820190508181036000830152612ac481612a88565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b3482612138565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b6757612b66612afa565b5b600182019050919050565b7f21737570706c7900000000000000000000000000000000000000000000000000600082015250565b6000612ba860078361202c565b9150612bb382612b72565b602082019050919050565b60006020820190508181036000830152612bd781612b9b565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612c3a60298361202c565b9150612c4582612bde565b604082019050919050565b60006020820190508181036000830152612c6981612c2d565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612ccc602a8361202c565b9150612cd782612c70565b604082019050919050565b60006020820190508181036000830152612cfb81612cbf565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612d5e602f8361202c565b9150612d6982612d02565b604082019050919050565b60006020820190508181036000830152612d8d81612d51565b9050919050565b600081905092915050565b6000612daa82612021565b612db48185612d94565b9350612dc481856020860161203d565b80840191505092915050565b6000612ddc8285612d9f565b9150612de88284612d9f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e5060268361202c565b9150612e5b82612df4565b604082019050919050565b60006020820190508181036000830152612e7f81612e43565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612ee2602c8361202c565b9150612eed82612e86565b604082019050919050565b60006020820190508181036000830152612f1181612ed5565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000612f7460298361202c565b9150612f7f82612f18565b604082019050919050565b60006020820190508181036000830152612fa381612f67565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061300660248361202c565b915061301182612faa565b604082019050919050565b6000602082019050818103600083015261303581612ff9565b9050919050565b600061304782612138565b915061305283612138565b92508282101561306557613064612afa565b5b828203905092915050565b600061307b82612138565b915061308683612138565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130bb576130ba612afa565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006130fc60198361202c565b9150613107826130c6565b602082019050919050565b6000602082019050818103600083015261312b816130ef565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061318e60328361202c565b915061319982613132565b604082019050919050565b600060208201905081810360008301526131bd81613181565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006131fe82612138565b915061320983612138565b925082613219576132186131c4565b5b828204905092915050565b600061322f82612138565b915061323a83612138565b92508261324a576132496131c4565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061327c82613255565b6132868185613260565b935061329681856020860161203d565b61329f81612070565b840191505092915050565b60006080820190506132bf600083018761210e565b6132cc602083018661210e565b6132d96040830185612207565b81810360608301526132eb8184613271565b905095945050505050565b60008151905061330581611f92565b92915050565b60006020828403121561332157613320611f5c565b5b600061332f848285016132f6565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061336e60208361202c565b915061337982613338565b602082019050919050565b6000602082019050818103600083015261339d81613361565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006133da601c8361202c565b91506133e5826133a4565b602082019050919050565b60006020820190508181036000830152613409816133cd565b905091905056fea2646970667358221220a6fe12a764f05a47b4eabcf304f4e8890a8b2627b38517f2741ee35208b188af64736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000074b6973734d61730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024b4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6e66742e74696e61656973656e2e636f6d2f6b6973736d61732f000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): KissMas
Arg [1] : _symbol (string): KM
Arg [2] : _URI (string): https://nft.tinaeisen.com/kissmas/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 4b6973734d617300000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4b4d000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [8] : 68747470733a2f2f6e66742e74696e61656973656e2e636f6d2f6b6973736d61
Arg [9] : 732f000000000000000000000000000000000000000000000000000000000000


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.