ETH Price: $3,046.12 (+2.20%)
Gas: 1 Gwei

Token

BOXRZ (BXRZ)
 

Overview

Max Total Supply

212 BXRZ

Holders

104

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vondoom.eth
Balance
2 BXRZ
0x591f8a2decc1c86cce0c7bea22fa921c2c72fb95
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Boxrz

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Boxrz.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract Boxrz is ERC721Enumerable, Ownable {
    uint256 private basePrice = 50000000000000000; //0.05
    uint256 private priceForThree = 45000000000000000; //0.045
    uint256 private priceForSix = 30000000000000000; //0.03

    //special sale bundles
    uint256 private packageThreeMax = 1111;
    uint256 private packageSixMax = 175;
    uint256 private packageThreeUsed = 0;
    uint256 private packageSixUsed = 0;

    uint256 private reserveAtATime = 25;
    uint256 private reservedCount = 0;
    uint256 private maxReserveCount = 200;
    address private MPAddress = 0xAa0D34B3Ac6420B769DDe4783bB1a95F157ddDF5;
    address private CoFounderAddress = 0x0654d160Da8EEA0Da28F4c58E110056C6d5FE93D;
    address private StaffAddress = 0x3eF31a7874cBB9b0b2C5c6B29206d06416F4D206;

    string _baseTokenURI;
    
    uint256 public constant MAX_MINTSUPPLY = 8888;
    bool public active = false;
    uint256 public maximumAllowedTokensPerPurchase = 25;
    
    event AssetMinted(uint256 tokenId, address sender);
    event SaleActivation(bool active);

    // Truth.
    constructor(string memory baseURI) ERC721("BOXRZ", "BXRZ") {
        setBaseURI(baseURI);
    }

    modifier saleIsOpen {
        require(totalSupply() <= MAX_MINTSUPPLY, "Sale has ended.");
        _;
    }

     modifier onlyAuthorized() {
        require(MPAddress == msg.sender || owner() == msg.sender);
        _;
    }

    function setMaximumAllowedTokens(uint256 _count) public onlyAuthorized {
        maximumAllowedTokensPerPurchase = _count;
    }

    function setActive(bool val) public onlyAuthorized {
        active = val;
        emit SaleActivation(val);
    }
    
    function setReserveAtATime(uint256 val) public onlyAuthorized {
        reserveAtATime = val;
    }

    function setMaxReserve(uint256 val) public onlyAuthorized {
        maxReserveCount = val;
    }
    
    function setPrice(uint256 _price) public onlyAuthorized {
        basePrice = _price;
    }

    function setPriceForThree(uint256 _price) public onlyAuthorized {
        priceForThree = _price;
    }

    function setPriceForSix(uint256 _price) public onlyAuthorized {
        priceForSix = _price;
    }

    function setPackageThreeMax(uint256 _packageThreeMax) public onlyAuthorized {
        packageThreeMax = _packageThreeMax;
    }

    function setPackageSixMax(uint256 _packageSixMax) public onlyAuthorized {
        packageSixMax = _packageSixMax;
    }
    
    function setBaseURI(string memory baseURI) public onlyAuthorized {
        _baseTokenURI = baseURI;
    }

    function getMaximumAllowedTokens() public view onlyAuthorized returns (uint256) {
        return maximumAllowedTokensPerPurchase;
    }

    function getPrice() external view returns (uint256) {
        return basePrice; 
    }

    function getReserveAtATime() external view returns (uint256) {
        return reserveAtATime; 
    }

    function getPackageThreeMax() external view returns (uint256) {
        return packageThreeMax; 
    }

    function getPackageSixMax() external view returns (uint256) {
        return packageSixMax; 
    }
    
    function getPackageThreeUsed() external view returns (uint256) {
        return packageThreeUsed; 
    }

    function getPackageSixUsed() external view returns (uint256) {
        return packageSixUsed; 
    }

    function getTotalSupply() external view returns (uint256) {
        return totalSupply();
    }

    function getContractOwner() public view returns (address) {    
        return owner();
    }

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

    function reserveNft() public onlyAuthorized {
        require(reservedCount <= maxReserveCount, "Max Reserves taken already!");
        uint256 supply = totalSupply();
        uint256 i;
        for (i = 0; i < reserveAtATime; i++) {
            emit AssetMinted(supply + i, msg.sender);
            _safeMint(msg.sender, supply + i);
            reservedCount++;
        }  
    }

    function mint(address _to, uint256 _count) public payable saleIsOpen {
        if (msg.sender != owner()) {
            require(active, "Sale is not active currently.");
        }
        
        require(totalSupply() + _count <= MAX_MINTSUPPLY, "Total supply exceeded.");
        require(totalSupply() <= MAX_MINTSUPPLY, "Total supply spent.");
        require(
            _count <= maximumAllowedTokensPerPurchase,
            "Exceeds maximum allowed tokens"
        );
        require(msg.value >= basePrice * _count, "Insuffient amount sent.");

        for (uint256 i = 0; i < _count; i++) {
            emit AssetMinted(totalSupply(), _to);
            _safeMint(_to, totalSupply());
        }
    }

    function mintThree(address _to) public payable saleIsOpen {
        if (msg.sender != owner()) {
            require(active, "Sale is not active currently.");
        }
        
        require(totalSupply() + 3 <= MAX_MINTSUPPLY, "Total supply exceeded.");
        require(totalSupply() <= MAX_MINTSUPPLY, "Total supply spent.");
        require(
            3 <= maximumAllowedTokensPerPurchase,
            "Exceeds maximum allowed tokens"
        );
        require(msg.value >= priceForThree * 3, "Insuffient amount sent.");
        require(packageThreeUsed <= packageThreeMax, "Max package sale count already!");

        for (uint256 i = 0; i < 3; i++) {
            emit AssetMinted(totalSupply(), _to);
            _safeMint(_to, totalSupply());
        }
        packageThreeUsed++;
    }

    function mintSix(address _to) public payable saleIsOpen {
        if (msg.sender != owner()) {
            require(active, "Sale is not active currently.");
        }
        
        require(totalSupply() + 6 <= MAX_MINTSUPPLY, "Total supply exceeded.");
        require(totalSupply() <= MAX_MINTSUPPLY, "Total supply spent.");
        require(
            6 <= maximumAllowedTokensPerPurchase,
            "Exceeds maximum allowed tokens"
        );
        require(msg.value >= priceForSix * 6, "Insuffient amount sent.");
        require(packageSixUsed <= packageSixMax, "Max package sale count taken already!");

        for (uint256 i = 0; i < 6; i++) {
            emit AssetMinted(totalSupply(), _to);
            _safeMint(_to, totalSupply());
        }
        packageSixUsed++;
    }

    function walletOfOwner(address _owner) external view returns(uint256[] memory) {
        uint tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint i = 0; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function withdraw() external onlyAuthorized {
        uint balance = address(this).balance;
        payable(MPAddress).transfer(balance * 3500 / 10000);
        payable(CoFounderAddress).transfer(balance * 1800 / 10000);
        payable(StaffAddress).transfer(balance * 1500 / 10000);
        payable(owner()).transfer(address(this).balance);
    }
}

File 2 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 4 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 5 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 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 6 of 13 : Context.sol
// SPDX-License-Identifier: MIT

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 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

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 8 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 9 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

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 13 : Address.sol
// SPDX-License-Identifier: MIT

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 11 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 12 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"AssetMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"active","type":"bool"}],"name":"SaleActivation","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":[],"name":"MAX_MINTSUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaximumAllowedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPackageSixMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPackageSixUsed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPackageThreeMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPackageThreeUsed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserveAtATime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"maximumAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintSix","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintThree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveNft","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":"bool","name":"val","type":"bool"}],"name":"setActive","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_packageSixMax","type":"uint256"}],"name":"setPackageSixMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_packageThreeMax","type":"uint256"}],"name":"setPackageThreeMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPriceForSix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPriceForThree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setReserveAtATime","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266b1a2bc2ec50000600b55669fdf42f6e48000600c55666a94d74f430000600d55610457600e5560af600f55600060105560006011556019601255600060135560c860145573aa0d34b3ac6420b769dde4783bb1a95f157dddf5601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730654d160da8eea0da28f4c58e110056c6d5fe93d601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733ef31a7874cbb9b0b2c5c6b29206d06416f4d206601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601960006101000a81548160ff0219169083151502179055506019601a553480156200017557600080fd5b5060405162005cf038038062005cf083398181016040528101906200019b91906200054a565b6040518060400160405280600581526020017f424f58525a0000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4258525a0000000000000000000000000000000000000000000000000000000081525081600090805190602001906200021f92919062000428565b5080600190805190602001906200023892919062000428565b5050506200025b6200024f6200027360201b60201c565b6200027b60201b60201c565b6200026c816200034160201b60201c565b50620006ff565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480620003d857503373ffffffffffffffffffffffffffffffffffffffff16620003c0620003fe60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16145b620003e257600080fd5b8060189080519060200190620003fa92919062000428565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004369062000624565b90600052602060002090601f0160209004810192826200045a5760008555620004a6565b82601f106200047557805160ff1916838001178555620004a6565b82800160010185558215620004a6579182015b82811115620004a557825182559160200191906001019062000488565b5b509050620004b59190620004b9565b5090565b5b80821115620004d4576000816000905550600101620004ba565b5090565b6000620004ef620004e984620005b8565b6200058f565b9050828152602081018484840111156200050857600080fd5b62000515848285620005ee565b509392505050565b600082601f8301126200052f57600080fd5b815162000541848260208601620004d8565b91505092915050565b6000602082840312156200055d57600080fd5b600082015167ffffffffffffffff8111156200057857600080fd5b62000586848285016200051d565b91505092915050565b60006200059b620005ae565b9050620005a982826200065a565b919050565b6000604051905090565b600067ffffffffffffffff821115620005d657620005d5620006bf565b5b620005e182620006ee565b9050602081019050919050565b60005b838110156200060e578082015181840152602081019050620005f1565b838111156200061e576000848401525b50505050565b600060028204905060018216806200063d57607f821691505b6020821081141562000654576200065362000690565b5b50919050565b6200066582620006ee565b810181811067ffffffffffffffff82111715620006875762000686620006bf565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6155e1806200070f6000396000f3fe6080604052600436106102885760003560e01c806370a082311161015a578063ad06d758116100c1578063e6bc09c71161007a578063e6bc09c71461098c578063e7b62d96146109b5578063e985e9c5146109e0578063f2fde38b14610a1d578063f3f47f1214610a46578063f6c9d9e314610a6257610288565b8063ad06d7581461087c578063b88d4fde146108a7578063bf12a2ac146108d0578063c4e41b22146108f9578063c87b56dd14610924578063da24f6df1461096157610288565b806398d5fdca1161011357806398d5fdca1461077e5780639a3bf728146107a95780639c0f12e4146107d4578063a22cb465146107ff578063a3064d9314610828578063acec338a1461085357610288565b806370a0823114610694578063715018a6146106d157806371e3500c146106e85780638da5cb5b146106ff57806391b7f5ed1461072a57806395d89b411461075357610288565b806342842e0e116101fe57806355f804b3116101b757806355f804b31461059557806356a87caa146105be5780635f71d954146105e757806363146238146106105780636352211e1461063b5780636e98ed7a1461067857610288565b806342842e0e14610475578063438b63001461049e578063442890d5146104db57806347041338146105065780634dfea6271461052f5780634f6ccce71461055857610288565b806318160ddd1161025057806318160ddd1461038657806322e63d2e146103b157806323b872dd146103dc5780632f745c59146104055780633ccfd60b1461044257806340c10f191461045957610288565b806301ffc9a71461028d57806302fb0c5e146102ca57806306fdde03146102f5578063081812fc14610320578063095ea7b31461035d575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613ffa565b610a8b565b6040516102c19190614669565b60405180910390f35b3480156102d657600080fd5b506102df610b05565b6040516102ec9190614669565b60405180910390f35b34801561030157600080fd5b5061030a610b18565b6040516103179190614684565b60405180910390f35b34801561032c57600080fd5b506103476004803603810190610342919061408d565b610baa565b60405161035491906145e0565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f9190613f95565b610c2f565b005b34801561039257600080fd5b5061039b610d47565b6040516103a89190614a06565b60405180910390f35b3480156103bd57600080fd5b506103c6610d54565b6040516103d39190614a06565b60405180910390f35b3480156103e857600080fd5b5061040360048036038101906103fe9190613e8f565b610d5a565b005b34801561041157600080fd5b5061042c60048036038101906104279190613f95565b610dba565b6040516104399190614a06565b60405180910390f35b34801561044e57600080fd5b50610457610e5f565b005b610473600480360381019061046e9190613f95565b6110d5565b005b34801561048157600080fd5b5061049c60048036038101906104979190613e8f565b611357565b005b3480156104aa57600080fd5b506104c560048036038101906104c09190613e2a565b611377565b6040516104d29190614647565b60405180910390f35b3480156104e757600080fd5b506104f0611471565b6040516104fd91906145e0565b60405180910390f35b34801561051257600080fd5b5061052d6004803603810190610528919061408d565b611480565b005b34801561053b57600080fd5b506105566004803603810190610551919061408d565b611521565b005b34801561056457600080fd5b5061057f600480360381019061057a919061408d565b6115c2565b60405161058c9190614a06565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b7919061404c565b611659565b005b3480156105ca57600080fd5b506105e560048036038101906105e0919061408d565b61170a565b005b3480156105f357600080fd5b5061060e6004803603810190610609919061408d565b6117ab565b005b34801561061c57600080fd5b5061062561184c565b6040516106329190614a06565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d919061408d565b611856565b60405161066f91906145e0565b60405180910390f35b610692600480360381019061068d9190613e2a565b611908565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190613e2a565b611bec565b6040516106c89190614a06565b60405180910390f35b3480156106dd57600080fd5b506106e6611ca4565b005b3480156106f457600080fd5b506106fd611d2c565b005b34801561070b57600080fd5b50610714611eab565b60405161072191906145e0565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c919061408d565b611ed5565b005b34801561075f57600080fd5b50610768611f76565b6040516107759190614684565b60405180910390f35b34801561078a57600080fd5b50610793612008565b6040516107a09190614a06565b60405180910390f35b3480156107b557600080fd5b506107be612012565b6040516107cb9190614a06565b60405180910390f35b3480156107e057600080fd5b506107e9612018565b6040516107f69190614a06565b60405180910390f35b34801561080b57600080fd5b5061082660048036038101906108219190613f59565b612022565b005b34801561083457600080fd5b5061083d6121a3565b60405161084a9190614a06565b60405180910390f35b34801561085f57600080fd5b5061087a60048036038101906108759190613fd1565b6121ad565b005b34801561088857600080fd5b50610891612298565b60405161089e9190614a06565b60405180910390f35b3480156108b357600080fd5b506108ce60048036038101906108c99190613ede565b612339565b005b3480156108dc57600080fd5b506108f760048036038101906108f2919061408d565b61239b565b005b34801561090557600080fd5b5061090e61243c565b60405161091b9190614a06565b60405180910390f35b34801561093057600080fd5b5061094b6004803603810190610946919061408d565b61244b565b6040516109589190614684565b60405180910390f35b34801561096d57600080fd5b506109766124f2565b6040516109839190614a06565b60405180910390f35b34801561099857600080fd5b506109b360048036038101906109ae919061408d565b6124fc565b005b3480156109c157600080fd5b506109ca61259d565b6040516109d79190614a06565b60405180910390f35b3480156109ec57600080fd5b50610a076004803603810190610a029190613e53565b6125a7565b604051610a149190614669565b60405180910390f35b348015610a2957600080fd5b50610a446004803603810190610a3f9190613e2a565b61263b565b005b610a606004803603810190610a5b9190613e2a565b612733565b005b348015610a6e57600080fd5b50610a896004803603810190610a84919061408d565b612a17565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610afe5750610afd82612ab8565b5b9050919050565b601960009054906101000a900460ff1681565b606060008054610b2790614d18565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614d18565b8015610ba05780601f10610b7557610100808354040283529160200191610ba0565b820191906000526020600020905b815481529060010190602001808311610b8357829003601f168201915b5050505050905090565b6000610bb582612b9a565b610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb906148a6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3a82611856565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290614966565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cca612c06565b73ffffffffffffffffffffffffffffffffffffffff161480610cf95750610cf881610cf3612c06565b6125a7565b5b610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90614826565b60405180910390fd5b610d428383612c0e565b505050565b6000600880549050905090565b6122b881565b610d6b610d65612c06565b82612cc7565b610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da1906149a6565b60405180910390fd5b610db5838383612da5565b505050565b6000610dc583611bec565b8210610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90614706565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480610eed57503373ffffffffffffffffffffffffffffffffffffffff16610ed5611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b610ef657600080fd5b6000479050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc612710610dac84610f489190614bd4565b610f529190614ba3565b9081150290604051600060405180830381858888f19350505050158015610f7d573d6000803e3d6000fd5b50601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061070884610fcb9190614bd4565b610fd59190614ba3565b9081150290604051600060405180830381858888f19350505050158015611000573d6000803e3d6000fd5b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6127106105dc8461104e9190614bd4565b6110589190614ba3565b9081150290604051600060405180830381858888f19350505050158015611083573d6000803e3d6000fd5b5061108c611eab565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156110d1573d6000803e3d6000fd5b5050565b6122b86110e0610d47565b1115611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890614786565b60405180910390fd5b611129611eab565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111ab57601960009054906101000a900460ff166111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a1906146e6565b60405180910390fd5b5b6122b8816111b7610d47565b6111c19190614b4d565b1115611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614986565b60405180910390fd5b6122b861120d610d47565b111561124e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611245906149e6565b60405180910390fd5b601a54811115611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90614946565b60405180910390fd5b80600b546112a19190614bd4565b3410156112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da90614926565b60405180910390fd5b60005b81811015611352577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611317610d47565b84604051611326929190614a21565b60405180910390a161133f8361133a610d47565b613001565b808061134a90614d7b565b9150506112e6565b505050565b61137283838360405180602001604052806000815250612339565b505050565b6060600061138483611bec565b905060008167ffffffffffffffff8111156113c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156113f65781602001602082028036833780820191505090505b50905060005b828110156114665761140e8582610dba565b828281518110611447577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061145e90614d7b565b9150506113fc565b508092505050919050565b600061147b611eab565b905090565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061150e57503373ffffffffffffffffffffffffffffffffffffffff166114f6611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b61151757600080fd5b80600d8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806115af57503373ffffffffffffffffffffffffffffffffffffffff16611597611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b6115b857600080fd5b80601a8190555050565b60006115cc610d47565b821061160d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611604906149c6565b60405180910390fd5b60088281548110611647577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806116e757503373ffffffffffffffffffffffffffffffffffffffff166116cf611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b6116f057600080fd5b8060189080519060200190611706929190613c4e565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061179857503373ffffffffffffffffffffffffffffffffffffffff16611780611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b6117a157600080fd5b8060148190555050565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061183957503373ffffffffffffffffffffffffffffffffffffffff16611821611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b61184257600080fd5b80600c8190555050565b6000601054905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f690614866565b60405180910390fd5b80915050919050565b6122b8611913610d47565b1115611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b90614786565b60405180910390fd5b61195c611eab565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119de57601960009054906101000a900460ff166119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d4906146e6565b60405180910390fd5b5b6122b860066119eb610d47565b6119f59190614b4d565b1115611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d90614986565b60405180910390fd5b6122b8611a41610d47565b1115611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a79906149e6565b60405180910390fd5b601a5460061115611ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abf90614946565b60405180910390fd5b6006600d54611ad79190614bd4565b341015611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1090614926565b60405180910390fd5b600f546011541115611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5790614806565b60405180910390fd5b60005b6006811015611bd0577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611b95610d47565b83604051611ba4929190614a21565b60405180910390a1611bbd82611bb8610d47565b613001565b8080611bc890614d7b565b915050611b63565b5060116000815480929190611be490614d7b565b919050555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490614846565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611cac612c06565b73ffffffffffffffffffffffffffffffffffffffff16611cca611eab565b73ffffffffffffffffffffffffffffffffffffffff1614611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d17906148c6565b60405180910390fd5b611d2a600061301f565b565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480611dba57503373ffffffffffffffffffffffffffffffffffffffff16611da2611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b611dc357600080fd5b6014546013541115611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e01906146c6565b60405180910390fd5b6000611e14610d47565b905060005b601254811015611ea7577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3558183611e509190614b4d565b33604051611e5f929190614a21565b60405180910390a1611e7c338284611e779190614b4d565b613001565b60136000815480929190611e8f90614d7b565b91905055508080611e9f90614d7b565b915050611e19565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480611f6357503373ffffffffffffffffffffffffffffffffffffffff16611f4b611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b611f6c57600080fd5b80600b8190555050565b606060018054611f8590614d18565b80601f0160208091040260200160405190810160405280929190818152602001828054611fb190614d18565b8015611ffe5780601f10611fd357610100808354040283529160200191611ffe565b820191906000526020600020905b815481529060010190602001808311611fe157829003601f168201915b5050505050905090565b6000600b54905090565b601a5481565b6000601154905090565b61202a612c06565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208f906147c6565b60405180910390fd5b80600560006120a5612c06565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612152612c06565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121979190614669565b60405180910390a35050565b6000600e54905090565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061223b57503373ffffffffffffffffffffffffffffffffffffffff16612223611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b61224457600080fd5b80601960006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f8160405161228d9190614669565b60405180910390a150565b60003373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061232857503373ffffffffffffffffffffffffffffffffffffffff16612310611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b61233157600080fd5b601a54905090565b61234a612344612c06565b83612cc7565b612389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612380906149a6565b60405180910390fd5b612395848484846130e5565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061242957503373ffffffffffffffffffffffffffffffffffffffff16612411611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b61243257600080fd5b80600e8190555050565b6000612446610d47565b905090565b606061245682612b9a565b612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c90614906565b60405180910390fd5b600061249f613141565b905060008151116124bf57604051806020016040528060008152506124ea565b806124c9846131d3565b6040516020016124da9291906145bc565b6040516020818303038152906040525b915050919050565b6000600f54905090565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061258a57503373ffffffffffffffffffffffffffffffffffffffff16612572611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b61259357600080fd5b80600f8190555050565b6000601254905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612643612c06565b73ffffffffffffffffffffffffffffffffffffffff16612661611eab565b73ffffffffffffffffffffffffffffffffffffffff16146126b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ae906148c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271e90614746565b60405180910390fd5b6127308161301f565b50565b6122b861273e610d47565b111561277f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277690614786565b60405180910390fd5b612787611eab565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461280957601960009054906101000a900460ff16612808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ff906146e6565b60405180910390fd5b5b6122b86003612816610d47565b6128209190614b4d565b1115612861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285890614986565b60405180910390fd5b6122b861286c610d47565b11156128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a4906149e6565b60405180910390fd5b601a54600311156128f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ea90614946565b60405180910390fd5b6003600c546129029190614bd4565b341015612944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293b90614926565b60405180910390fd5b600e54601054111561298b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612982906146a6565b60405180910390fd5b60005b60038110156129fb577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556129c0610d47565b836040516129cf929190614a21565b60405180910390a16129e8826129e3610d47565b613001565b80806129f390614d7b565b91505061298e565b5060106000815480929190612a0f90614d7b565b919050555050565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480612aa557503373ffffffffffffffffffffffffffffffffffffffff16612a8d611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b612aae57600080fd5b8060128190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b8357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b935750612b9282613380565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c8183611856565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612cd282612b9a565b612d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d08906147e6565b60405180910390fd5b6000612d1c83611856565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d8b57508373ffffffffffffffffffffffffffffffffffffffff16612d7384610baa565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d9c5750612d9b81856125a7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612dc582611856565b73ffffffffffffffffffffffffffffffffffffffff1614612e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e12906148e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e82906147a6565b60405180910390fd5b612e968383836133ea565b612ea1600082612c0e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ef19190614c2e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f489190614b4d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61301b8282604051806020016040528060008152506134fe565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6130f0848484612da5565b6130fc84848484613559565b61313b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313290614726565b60405180910390fd5b50505050565b60606018805461315090614d18565b80601f016020809104026020016040519081016040528092919081815260200182805461317c90614d18565b80156131c95780601f1061319e576101008083540402835291602001916131c9565b820191906000526020600020905b8154815290600101906020018083116131ac57829003601f168201915b5050505050905090565b6060600082141561321b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061337b565b600082905060005b6000821461324d57808061323690614d7b565b915050600a826132469190614ba3565b9150613223565b60008167ffffffffffffffff81111561328f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132c15781602001600182028036833780820191505090505b5090505b60008514613374576001826132da9190614c2e565b9150600a856132e99190614dc4565b60306132f59190614b4d565b60f81b818381518110613331577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561336d9190614ba3565b94506132c5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6133f58383836136f0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561343857613433816136f5565b613477565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461347657613475838261373e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134ba576134b5816138ab565b6134f9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146134f8576134f782826139ee565b5b5b505050565b6135088383613a6d565b6135156000848484613559565b613554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354b90614726565b60405180910390fd5b505050565b600061357a8473ffffffffffffffffffffffffffffffffffffffff16613c3b565b156136e3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135a3612c06565b8786866040518563ffffffff1660e01b81526004016135c594939291906145fb565b602060405180830381600087803b1580156135df57600080fd5b505af192505050801561361057506040513d601f19601f8201168201806040525081019061360d9190614023565b60015b613693573d8060008114613640576040519150601f19603f3d011682016040523d82523d6000602084013e613645565b606091505b5060008151141561368b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368290614726565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136e8565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161374b84611bec565b6137559190614c2e565b905060006007600084815260200190815260200160002054905081811461383a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506138bf9190614c2e565b9050600060096000848152602001908152602001600020549050600060088381548110613915577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061395d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806139d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006139f983611bec565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ad490614886565b60405180910390fd5b613ae681612b9a565b15613b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1d90614766565b60405180910390fd5b613b32600083836133ea565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b829190614b4d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613c5a90614d18565b90600052602060002090601f016020900481019282613c7c5760008555613cc3565b82601f10613c9557805160ff1916838001178555613cc3565b82800160010185558215613cc3579182015b82811115613cc2578251825591602001919060010190613ca7565b5b509050613cd09190613cd4565b5090565b5b80821115613ced576000816000905550600101613cd5565b5090565b6000613d04613cff84614a6f565b614a4a565b905082815260208101848484011115613d1c57600080fd5b613d27848285614cd6565b509392505050565b6000613d42613d3d84614aa0565b614a4a565b905082815260208101848484011115613d5a57600080fd5b613d65848285614cd6565b509392505050565b600081359050613d7c8161554f565b92915050565b600081359050613d9181615566565b92915050565b600081359050613da68161557d565b92915050565b600081519050613dbb8161557d565b92915050565b600082601f830112613dd257600080fd5b8135613de2848260208601613cf1565b91505092915050565b600082601f830112613dfc57600080fd5b8135613e0c848260208601613d2f565b91505092915050565b600081359050613e2481615594565b92915050565b600060208284031215613e3c57600080fd5b6000613e4a84828501613d6d565b91505092915050565b60008060408385031215613e6657600080fd5b6000613e7485828601613d6d565b9250506020613e8585828601613d6d565b9150509250929050565b600080600060608486031215613ea457600080fd5b6000613eb286828701613d6d565b9350506020613ec386828701613d6d565b9250506040613ed486828701613e15565b9150509250925092565b60008060008060808587031215613ef457600080fd5b6000613f0287828801613d6d565b9450506020613f1387828801613d6d565b9350506040613f2487828801613e15565b925050606085013567ffffffffffffffff811115613f4157600080fd5b613f4d87828801613dc1565b91505092959194509250565b60008060408385031215613f6c57600080fd5b6000613f7a85828601613d6d565b9250506020613f8b85828601613d82565b9150509250929050565b60008060408385031215613fa857600080fd5b6000613fb685828601613d6d565b9250506020613fc785828601613e15565b9150509250929050565b600060208284031215613fe357600080fd5b6000613ff184828501613d82565b91505092915050565b60006020828403121561400c57600080fd5b600061401a84828501613d97565b91505092915050565b60006020828403121561403557600080fd5b600061404384828501613dac565b91505092915050565b60006020828403121561405e57600080fd5b600082013567ffffffffffffffff81111561407857600080fd5b61408484828501613deb565b91505092915050565b60006020828403121561409f57600080fd5b60006140ad84828501613e15565b91505092915050565b60006140c2838361459e565b60208301905092915050565b6140d781614c62565b82525050565b60006140e882614ae1565b6140f28185614b0f565b93506140fd83614ad1565b8060005b8381101561412e57815161411588826140b6565b975061412083614b02565b925050600181019050614101565b5085935050505092915050565b61414481614c74565b82525050565b600061415582614aec565b61415f8185614b20565b935061416f818560208601614ce5565b61417881614eb1565b840191505092915050565b600061418e82614af7565b6141988185614b31565b93506141a8818560208601614ce5565b6141b181614eb1565b840191505092915050565b60006141c782614af7565b6141d18185614b42565b93506141e1818560208601614ce5565b80840191505092915050565b60006141fa601f83614b31565b915061420582614ec2565b602082019050919050565b600061421d601b83614b31565b915061422882614eeb565b602082019050919050565b6000614240601d83614b31565b915061424b82614f14565b602082019050919050565b6000614263602b83614b31565b915061426e82614f3d565b604082019050919050565b6000614286603283614b31565b915061429182614f8c565b604082019050919050565b60006142a9602683614b31565b91506142b482614fdb565b604082019050919050565b60006142cc601c83614b31565b91506142d78261502a565b602082019050919050565b60006142ef600f83614b31565b91506142fa82615053565b602082019050919050565b6000614312602483614b31565b915061431d8261507c565b604082019050919050565b6000614335601983614b31565b9150614340826150cb565b602082019050919050565b6000614358602c83614b31565b9150614363826150f4565b604082019050919050565b600061437b602583614b31565b915061438682615143565b604082019050919050565b600061439e603883614b31565b91506143a982615192565b604082019050919050565b60006143c1602a83614b31565b91506143cc826151e1565b604082019050919050565b60006143e4602983614b31565b91506143ef82615230565b604082019050919050565b6000614407602083614b31565b91506144128261527f565b602082019050919050565b600061442a602c83614b31565b9150614435826152a8565b604082019050919050565b600061444d602083614b31565b9150614458826152f7565b602082019050919050565b6000614470602983614b31565b915061447b82615320565b604082019050919050565b6000614493602f83614b31565b915061449e8261536f565b604082019050919050565b60006144b6601783614b31565b91506144c1826153be565b602082019050919050565b60006144d9601e83614b31565b91506144e4826153e7565b602082019050919050565b60006144fc602183614b31565b915061450782615410565b604082019050919050565b600061451f601683614b31565b915061452a8261545f565b602082019050919050565b6000614542603183614b31565b915061454d82615488565b604082019050919050565b6000614565602c83614b31565b9150614570826154d7565b604082019050919050565b6000614588601383614b31565b915061459382615526565b602082019050919050565b6145a781614ccc565b82525050565b6145b681614ccc565b82525050565b60006145c882856141bc565b91506145d482846141bc565b91508190509392505050565b60006020820190506145f560008301846140ce565b92915050565b600060808201905061461060008301876140ce565b61461d60208301866140ce565b61462a60408301856145ad565b818103606083015261463c818461414a565b905095945050505050565b6000602082019050818103600083015261466181846140dd565b905092915050565b600060208201905061467e600083018461413b565b92915050565b6000602082019050818103600083015261469e8184614183565b905092915050565b600060208201905081810360008301526146bf816141ed565b9050919050565b600060208201905081810360008301526146df81614210565b9050919050565b600060208201905081810360008301526146ff81614233565b9050919050565b6000602082019050818103600083015261471f81614256565b9050919050565b6000602082019050818103600083015261473f81614279565b9050919050565b6000602082019050818103600083015261475f8161429c565b9050919050565b6000602082019050818103600083015261477f816142bf565b9050919050565b6000602082019050818103600083015261479f816142e2565b9050919050565b600060208201905081810360008301526147bf81614305565b9050919050565b600060208201905081810360008301526147df81614328565b9050919050565b600060208201905081810360008301526147ff8161434b565b9050919050565b6000602082019050818103600083015261481f8161436e565b9050919050565b6000602082019050818103600083015261483f81614391565b9050919050565b6000602082019050818103600083015261485f816143b4565b9050919050565b6000602082019050818103600083015261487f816143d7565b9050919050565b6000602082019050818103600083015261489f816143fa565b9050919050565b600060208201905081810360008301526148bf8161441d565b9050919050565b600060208201905081810360008301526148df81614440565b9050919050565b600060208201905081810360008301526148ff81614463565b9050919050565b6000602082019050818103600083015261491f81614486565b9050919050565b6000602082019050818103600083015261493f816144a9565b9050919050565b6000602082019050818103600083015261495f816144cc565b9050919050565b6000602082019050818103600083015261497f816144ef565b9050919050565b6000602082019050818103600083015261499f81614512565b9050919050565b600060208201905081810360008301526149bf81614535565b9050919050565b600060208201905081810360008301526149df81614558565b9050919050565b600060208201905081810360008301526149ff8161457b565b9050919050565b6000602082019050614a1b60008301846145ad565b92915050565b6000604082019050614a3660008301856145ad565b614a4360208301846140ce565b9392505050565b6000614a54614a65565b9050614a608282614d4a565b919050565b6000604051905090565b600067ffffffffffffffff821115614a8a57614a89614e82565b5b614a9382614eb1565b9050602081019050919050565b600067ffffffffffffffff821115614abb57614aba614e82565b5b614ac482614eb1565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b5882614ccc565b9150614b6383614ccc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b9857614b97614df5565b5b828201905092915050565b6000614bae82614ccc565b9150614bb983614ccc565b925082614bc957614bc8614e24565b5b828204905092915050565b6000614bdf82614ccc565b9150614bea83614ccc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c2357614c22614df5565b5b828202905092915050565b6000614c3982614ccc565b9150614c4483614ccc565b925082821015614c5757614c56614df5565b5b828203905092915050565b6000614c6d82614cac565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d03578082015181840152602081019050614ce8565b83811115614d12576000848401525b50505050565b60006002820490506001821680614d3057607f821691505b60208210811415614d4457614d43614e53565b5b50919050565b614d5382614eb1565b810181811067ffffffffffffffff82111715614d7257614d71614e82565b5b80604052505050565b6000614d8682614ccc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614db957614db8614df5565b5b600182019050919050565b6000614dcf82614ccc565b9150614dda83614ccc565b925082614dea57614de9614e24565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d6178207061636b6167652073616c6520636f756e7420616c72656164792100600082015250565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d6178207061636b6167652073616c6520636f756e742074616b656e20616c7260008201527f6561647921000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e7375666669656e7420616d6f756e742073656e742e000000000000000000600082015250565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b61555881614c62565b811461556357600080fd5b50565b61556f81614c74565b811461557a57600080fd5b50565b61558681614c80565b811461559157600080fd5b50565b61559d81614ccc565b81146155a857600080fd5b5056fea26469706673582212207aab8b2aa0b374bf0aa7b79badcf3d2eee8ea22b42a573a0db92ea5e6d41e4f764736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d584e75655043416846724c74756a6972645741526159797a767169674d56387a6739645a6e6a4e69464b37582f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c806370a082311161015a578063ad06d758116100c1578063e6bc09c71161007a578063e6bc09c71461098c578063e7b62d96146109b5578063e985e9c5146109e0578063f2fde38b14610a1d578063f3f47f1214610a46578063f6c9d9e314610a6257610288565b8063ad06d7581461087c578063b88d4fde146108a7578063bf12a2ac146108d0578063c4e41b22146108f9578063c87b56dd14610924578063da24f6df1461096157610288565b806398d5fdca1161011357806398d5fdca1461077e5780639a3bf728146107a95780639c0f12e4146107d4578063a22cb465146107ff578063a3064d9314610828578063acec338a1461085357610288565b806370a0823114610694578063715018a6146106d157806371e3500c146106e85780638da5cb5b146106ff57806391b7f5ed1461072a57806395d89b411461075357610288565b806342842e0e116101fe57806355f804b3116101b757806355f804b31461059557806356a87caa146105be5780635f71d954146105e757806363146238146106105780636352211e1461063b5780636e98ed7a1461067857610288565b806342842e0e14610475578063438b63001461049e578063442890d5146104db57806347041338146105065780634dfea6271461052f5780634f6ccce71461055857610288565b806318160ddd1161025057806318160ddd1461038657806322e63d2e146103b157806323b872dd146103dc5780632f745c59146104055780633ccfd60b1461044257806340c10f191461045957610288565b806301ffc9a71461028d57806302fb0c5e146102ca57806306fdde03146102f5578063081812fc14610320578063095ea7b31461035d575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613ffa565b610a8b565b6040516102c19190614669565b60405180910390f35b3480156102d657600080fd5b506102df610b05565b6040516102ec9190614669565b60405180910390f35b34801561030157600080fd5b5061030a610b18565b6040516103179190614684565b60405180910390f35b34801561032c57600080fd5b506103476004803603810190610342919061408d565b610baa565b60405161035491906145e0565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f9190613f95565b610c2f565b005b34801561039257600080fd5b5061039b610d47565b6040516103a89190614a06565b60405180910390f35b3480156103bd57600080fd5b506103c6610d54565b6040516103d39190614a06565b60405180910390f35b3480156103e857600080fd5b5061040360048036038101906103fe9190613e8f565b610d5a565b005b34801561041157600080fd5b5061042c60048036038101906104279190613f95565b610dba565b6040516104399190614a06565b60405180910390f35b34801561044e57600080fd5b50610457610e5f565b005b610473600480360381019061046e9190613f95565b6110d5565b005b34801561048157600080fd5b5061049c60048036038101906104979190613e8f565b611357565b005b3480156104aa57600080fd5b506104c560048036038101906104c09190613e2a565b611377565b6040516104d29190614647565b60405180910390f35b3480156104e757600080fd5b506104f0611471565b6040516104fd91906145e0565b60405180910390f35b34801561051257600080fd5b5061052d6004803603810190610528919061408d565b611480565b005b34801561053b57600080fd5b506105566004803603810190610551919061408d565b611521565b005b34801561056457600080fd5b5061057f600480360381019061057a919061408d565b6115c2565b60405161058c9190614a06565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b7919061404c565b611659565b005b3480156105ca57600080fd5b506105e560048036038101906105e0919061408d565b61170a565b005b3480156105f357600080fd5b5061060e6004803603810190610609919061408d565b6117ab565b005b34801561061c57600080fd5b5061062561184c565b6040516106329190614a06565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d919061408d565b611856565b60405161066f91906145e0565b60405180910390f35b610692600480360381019061068d9190613e2a565b611908565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190613e2a565b611bec565b6040516106c89190614a06565b60405180910390f35b3480156106dd57600080fd5b506106e6611ca4565b005b3480156106f457600080fd5b506106fd611d2c565b005b34801561070b57600080fd5b50610714611eab565b60405161072191906145e0565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c919061408d565b611ed5565b005b34801561075f57600080fd5b50610768611f76565b6040516107759190614684565b60405180910390f35b34801561078a57600080fd5b50610793612008565b6040516107a09190614a06565b60405180910390f35b3480156107b557600080fd5b506107be612012565b6040516107cb9190614a06565b60405180910390f35b3480156107e057600080fd5b506107e9612018565b6040516107f69190614a06565b60405180910390f35b34801561080b57600080fd5b5061082660048036038101906108219190613f59565b612022565b005b34801561083457600080fd5b5061083d6121a3565b60405161084a9190614a06565b60405180910390f35b34801561085f57600080fd5b5061087a60048036038101906108759190613fd1565b6121ad565b005b34801561088857600080fd5b50610891612298565b60405161089e9190614a06565b60405180910390f35b3480156108b357600080fd5b506108ce60048036038101906108c99190613ede565b612339565b005b3480156108dc57600080fd5b506108f760048036038101906108f2919061408d565b61239b565b005b34801561090557600080fd5b5061090e61243c565b60405161091b9190614a06565b60405180910390f35b34801561093057600080fd5b5061094b6004803603810190610946919061408d565b61244b565b6040516109589190614684565b60405180910390f35b34801561096d57600080fd5b506109766124f2565b6040516109839190614a06565b60405180910390f35b34801561099857600080fd5b506109b360048036038101906109ae919061408d565b6124fc565b005b3480156109c157600080fd5b506109ca61259d565b6040516109d79190614a06565b60405180910390f35b3480156109ec57600080fd5b50610a076004803603810190610a029190613e53565b6125a7565b604051610a149190614669565b60405180910390f35b348015610a2957600080fd5b50610a446004803603810190610a3f9190613e2a565b61263b565b005b610a606004803603810190610a5b9190613e2a565b612733565b005b348015610a6e57600080fd5b50610a896004803603810190610a84919061408d565b612a17565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610afe5750610afd82612ab8565b5b9050919050565b601960009054906101000a900460ff1681565b606060008054610b2790614d18565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614d18565b8015610ba05780601f10610b7557610100808354040283529160200191610ba0565b820191906000526020600020905b815481529060010190602001808311610b8357829003601f168201915b5050505050905090565b6000610bb582612b9a565b610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb906148a6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3a82611856565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290614966565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cca612c06565b73ffffffffffffffffffffffffffffffffffffffff161480610cf95750610cf881610cf3612c06565b6125a7565b5b610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90614826565b60405180910390fd5b610d428383612c0e565b505050565b6000600880549050905090565b6122b881565b610d6b610d65612c06565b82612cc7565b610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da1906149a6565b60405180910390fd5b610db5838383612da5565b505050565b6000610dc583611bec565b8210610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90614706565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480610eed57503373ffffffffffffffffffffffffffffffffffffffff16610ed5611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b610ef657600080fd5b6000479050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc612710610dac84610f489190614bd4565b610f529190614ba3565b9081150290604051600060405180830381858888f19350505050158015610f7d573d6000803e3d6000fd5b50601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061070884610fcb9190614bd4565b610fd59190614ba3565b9081150290604051600060405180830381858888f19350505050158015611000573d6000803e3d6000fd5b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6127106105dc8461104e9190614bd4565b6110589190614ba3565b9081150290604051600060405180830381858888f19350505050158015611083573d6000803e3d6000fd5b5061108c611eab565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156110d1573d6000803e3d6000fd5b5050565b6122b86110e0610d47565b1115611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890614786565b60405180910390fd5b611129611eab565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111ab57601960009054906101000a900460ff166111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a1906146e6565b60405180910390fd5b5b6122b8816111b7610d47565b6111c19190614b4d565b1115611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614986565b60405180910390fd5b6122b861120d610d47565b111561124e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611245906149e6565b60405180910390fd5b601a54811115611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90614946565b60405180910390fd5b80600b546112a19190614bd4565b3410156112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da90614926565b60405180910390fd5b60005b81811015611352577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611317610d47565b84604051611326929190614a21565b60405180910390a161133f8361133a610d47565b613001565b808061134a90614d7b565b9150506112e6565b505050565b61137283838360405180602001604052806000815250612339565b505050565b6060600061138483611bec565b905060008167ffffffffffffffff8111156113c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156113f65781602001602082028036833780820191505090505b50905060005b828110156114665761140e8582610dba565b828281518110611447577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061145e90614d7b565b9150506113fc565b508092505050919050565b600061147b611eab565b905090565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061150e57503373ffffffffffffffffffffffffffffffffffffffff166114f6611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b61151757600080fd5b80600d8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806115af57503373ffffffffffffffffffffffffffffffffffffffff16611597611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b6115b857600080fd5b80601a8190555050565b60006115cc610d47565b821061160d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611604906149c6565b60405180910390fd5b60088281548110611647577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806116e757503373ffffffffffffffffffffffffffffffffffffffff166116cf611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b6116f057600080fd5b8060189080519060200190611706929190613c4e565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061179857503373ffffffffffffffffffffffffffffffffffffffff16611780611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b6117a157600080fd5b8060148190555050565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061183957503373ffffffffffffffffffffffffffffffffffffffff16611821611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b61184257600080fd5b80600c8190555050565b6000601054905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f690614866565b60405180910390fd5b80915050919050565b6122b8611913610d47565b1115611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b90614786565b60405180910390fd5b61195c611eab565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119de57601960009054906101000a900460ff166119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d4906146e6565b60405180910390fd5b5b6122b860066119eb610d47565b6119f59190614b4d565b1115611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d90614986565b60405180910390fd5b6122b8611a41610d47565b1115611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a79906149e6565b60405180910390fd5b601a5460061115611ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abf90614946565b60405180910390fd5b6006600d54611ad79190614bd4565b341015611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1090614926565b60405180910390fd5b600f546011541115611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5790614806565b60405180910390fd5b60005b6006811015611bd0577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611b95610d47565b83604051611ba4929190614a21565b60405180910390a1611bbd82611bb8610d47565b613001565b8080611bc890614d7b565b915050611b63565b5060116000815480929190611be490614d7b565b919050555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490614846565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611cac612c06565b73ffffffffffffffffffffffffffffffffffffffff16611cca611eab565b73ffffffffffffffffffffffffffffffffffffffff1614611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d17906148c6565b60405180910390fd5b611d2a600061301f565b565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480611dba57503373ffffffffffffffffffffffffffffffffffffffff16611da2611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b611dc357600080fd5b6014546013541115611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e01906146c6565b60405180910390fd5b6000611e14610d47565b905060005b601254811015611ea7577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3558183611e509190614b4d565b33604051611e5f929190614a21565b60405180910390a1611e7c338284611e779190614b4d565b613001565b60136000815480929190611e8f90614d7b565b91905055508080611e9f90614d7b565b915050611e19565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480611f6357503373ffffffffffffffffffffffffffffffffffffffff16611f4b611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b611f6c57600080fd5b80600b8190555050565b606060018054611f8590614d18565b80601f0160208091040260200160405190810160405280929190818152602001828054611fb190614d18565b8015611ffe5780601f10611fd357610100808354040283529160200191611ffe565b820191906000526020600020905b815481529060010190602001808311611fe157829003601f168201915b5050505050905090565b6000600b54905090565b601a5481565b6000601154905090565b61202a612c06565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208f906147c6565b60405180910390fd5b80600560006120a5612c06565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612152612c06565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121979190614669565b60405180910390a35050565b6000600e54905090565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061223b57503373ffffffffffffffffffffffffffffffffffffffff16612223611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b61224457600080fd5b80601960006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f8160405161228d9190614669565b60405180910390a150565b60003373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061232857503373ffffffffffffffffffffffffffffffffffffffff16612310611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b61233157600080fd5b601a54905090565b61234a612344612c06565b83612cc7565b612389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612380906149a6565b60405180910390fd5b612395848484846130e5565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061242957503373ffffffffffffffffffffffffffffffffffffffff16612411611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b61243257600080fd5b80600e8190555050565b6000612446610d47565b905090565b606061245682612b9a565b612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c90614906565b60405180910390fd5b600061249f613141565b905060008151116124bf57604051806020016040528060008152506124ea565b806124c9846131d3565b6040516020016124da9291906145bc565b6040516020818303038152906040525b915050919050565b6000600f54905090565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061258a57503373ffffffffffffffffffffffffffffffffffffffff16612572611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b61259357600080fd5b80600f8190555050565b6000601254905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612643612c06565b73ffffffffffffffffffffffffffffffffffffffff16612661611eab565b73ffffffffffffffffffffffffffffffffffffffff16146126b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ae906148c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271e90614746565b60405180910390fd5b6127308161301f565b50565b6122b861273e610d47565b111561277f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277690614786565b60405180910390fd5b612787611eab565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461280957601960009054906101000a900460ff16612808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ff906146e6565b60405180910390fd5b5b6122b86003612816610d47565b6128209190614b4d565b1115612861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285890614986565b60405180910390fd5b6122b861286c610d47565b11156128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a4906149e6565b60405180910390fd5b601a54600311156128f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ea90614946565b60405180910390fd5b6003600c546129029190614bd4565b341015612944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293b90614926565b60405180910390fd5b600e54601054111561298b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612982906146a6565b60405180910390fd5b60005b60038110156129fb577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556129c0610d47565b836040516129cf929190614a21565b60405180910390a16129e8826129e3610d47565b613001565b80806129f390614d7b565b91505061298e565b5060106000815480929190612a0f90614d7b565b919050555050565b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480612aa557503373ffffffffffffffffffffffffffffffffffffffff16612a8d611eab565b73ffffffffffffffffffffffffffffffffffffffff16145b612aae57600080fd5b8060128190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b8357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b935750612b9282613380565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c8183611856565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612cd282612b9a565b612d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d08906147e6565b60405180910390fd5b6000612d1c83611856565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d8b57508373ffffffffffffffffffffffffffffffffffffffff16612d7384610baa565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d9c5750612d9b81856125a7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612dc582611856565b73ffffffffffffffffffffffffffffffffffffffff1614612e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e12906148e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e82906147a6565b60405180910390fd5b612e968383836133ea565b612ea1600082612c0e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ef19190614c2e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f489190614b4d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61301b8282604051806020016040528060008152506134fe565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6130f0848484612da5565b6130fc84848484613559565b61313b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313290614726565b60405180910390fd5b50505050565b60606018805461315090614d18565b80601f016020809104026020016040519081016040528092919081815260200182805461317c90614d18565b80156131c95780601f1061319e576101008083540402835291602001916131c9565b820191906000526020600020905b8154815290600101906020018083116131ac57829003601f168201915b5050505050905090565b6060600082141561321b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061337b565b600082905060005b6000821461324d57808061323690614d7b565b915050600a826132469190614ba3565b9150613223565b60008167ffffffffffffffff81111561328f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132c15781602001600182028036833780820191505090505b5090505b60008514613374576001826132da9190614c2e565b9150600a856132e99190614dc4565b60306132f59190614b4d565b60f81b818381518110613331577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561336d9190614ba3565b94506132c5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6133f58383836136f0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561343857613433816136f5565b613477565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461347657613475838261373e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134ba576134b5816138ab565b6134f9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146134f8576134f782826139ee565b5b5b505050565b6135088383613a6d565b6135156000848484613559565b613554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354b90614726565b60405180910390fd5b505050565b600061357a8473ffffffffffffffffffffffffffffffffffffffff16613c3b565b156136e3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135a3612c06565b8786866040518563ffffffff1660e01b81526004016135c594939291906145fb565b602060405180830381600087803b1580156135df57600080fd5b505af192505050801561361057506040513d601f19601f8201168201806040525081019061360d9190614023565b60015b613693573d8060008114613640576040519150601f19603f3d011682016040523d82523d6000602084013e613645565b606091505b5060008151141561368b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368290614726565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136e8565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161374b84611bec565b6137559190614c2e565b905060006007600084815260200190815260200160002054905081811461383a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506138bf9190614c2e565b9050600060096000848152602001908152602001600020549050600060088381548110613915577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061395d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806139d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006139f983611bec565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ad490614886565b60405180910390fd5b613ae681612b9a565b15613b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1d90614766565b60405180910390fd5b613b32600083836133ea565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b829190614b4d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613c5a90614d18565b90600052602060002090601f016020900481019282613c7c5760008555613cc3565b82601f10613c9557805160ff1916838001178555613cc3565b82800160010185558215613cc3579182015b82811115613cc2578251825591602001919060010190613ca7565b5b509050613cd09190613cd4565b5090565b5b80821115613ced576000816000905550600101613cd5565b5090565b6000613d04613cff84614a6f565b614a4a565b905082815260208101848484011115613d1c57600080fd5b613d27848285614cd6565b509392505050565b6000613d42613d3d84614aa0565b614a4a565b905082815260208101848484011115613d5a57600080fd5b613d65848285614cd6565b509392505050565b600081359050613d7c8161554f565b92915050565b600081359050613d9181615566565b92915050565b600081359050613da68161557d565b92915050565b600081519050613dbb8161557d565b92915050565b600082601f830112613dd257600080fd5b8135613de2848260208601613cf1565b91505092915050565b600082601f830112613dfc57600080fd5b8135613e0c848260208601613d2f565b91505092915050565b600081359050613e2481615594565b92915050565b600060208284031215613e3c57600080fd5b6000613e4a84828501613d6d565b91505092915050565b60008060408385031215613e6657600080fd5b6000613e7485828601613d6d565b9250506020613e8585828601613d6d565b9150509250929050565b600080600060608486031215613ea457600080fd5b6000613eb286828701613d6d565b9350506020613ec386828701613d6d565b9250506040613ed486828701613e15565b9150509250925092565b60008060008060808587031215613ef457600080fd5b6000613f0287828801613d6d565b9450506020613f1387828801613d6d565b9350506040613f2487828801613e15565b925050606085013567ffffffffffffffff811115613f4157600080fd5b613f4d87828801613dc1565b91505092959194509250565b60008060408385031215613f6c57600080fd5b6000613f7a85828601613d6d565b9250506020613f8b85828601613d82565b9150509250929050565b60008060408385031215613fa857600080fd5b6000613fb685828601613d6d565b9250506020613fc785828601613e15565b9150509250929050565b600060208284031215613fe357600080fd5b6000613ff184828501613d82565b91505092915050565b60006020828403121561400c57600080fd5b600061401a84828501613d97565b91505092915050565b60006020828403121561403557600080fd5b600061404384828501613dac565b91505092915050565b60006020828403121561405e57600080fd5b600082013567ffffffffffffffff81111561407857600080fd5b61408484828501613deb565b91505092915050565b60006020828403121561409f57600080fd5b60006140ad84828501613e15565b91505092915050565b60006140c2838361459e565b60208301905092915050565b6140d781614c62565b82525050565b60006140e882614ae1565b6140f28185614b0f565b93506140fd83614ad1565b8060005b8381101561412e57815161411588826140b6565b975061412083614b02565b925050600181019050614101565b5085935050505092915050565b61414481614c74565b82525050565b600061415582614aec565b61415f8185614b20565b935061416f818560208601614ce5565b61417881614eb1565b840191505092915050565b600061418e82614af7565b6141988185614b31565b93506141a8818560208601614ce5565b6141b181614eb1565b840191505092915050565b60006141c782614af7565b6141d18185614b42565b93506141e1818560208601614ce5565b80840191505092915050565b60006141fa601f83614b31565b915061420582614ec2565b602082019050919050565b600061421d601b83614b31565b915061422882614eeb565b602082019050919050565b6000614240601d83614b31565b915061424b82614f14565b602082019050919050565b6000614263602b83614b31565b915061426e82614f3d565b604082019050919050565b6000614286603283614b31565b915061429182614f8c565b604082019050919050565b60006142a9602683614b31565b91506142b482614fdb565b604082019050919050565b60006142cc601c83614b31565b91506142d78261502a565b602082019050919050565b60006142ef600f83614b31565b91506142fa82615053565b602082019050919050565b6000614312602483614b31565b915061431d8261507c565b604082019050919050565b6000614335601983614b31565b9150614340826150cb565b602082019050919050565b6000614358602c83614b31565b9150614363826150f4565b604082019050919050565b600061437b602583614b31565b915061438682615143565b604082019050919050565b600061439e603883614b31565b91506143a982615192565b604082019050919050565b60006143c1602a83614b31565b91506143cc826151e1565b604082019050919050565b60006143e4602983614b31565b91506143ef82615230565b604082019050919050565b6000614407602083614b31565b91506144128261527f565b602082019050919050565b600061442a602c83614b31565b9150614435826152a8565b604082019050919050565b600061444d602083614b31565b9150614458826152f7565b602082019050919050565b6000614470602983614b31565b915061447b82615320565b604082019050919050565b6000614493602f83614b31565b915061449e8261536f565b604082019050919050565b60006144b6601783614b31565b91506144c1826153be565b602082019050919050565b60006144d9601e83614b31565b91506144e4826153e7565b602082019050919050565b60006144fc602183614b31565b915061450782615410565b604082019050919050565b600061451f601683614b31565b915061452a8261545f565b602082019050919050565b6000614542603183614b31565b915061454d82615488565b604082019050919050565b6000614565602c83614b31565b9150614570826154d7565b604082019050919050565b6000614588601383614b31565b915061459382615526565b602082019050919050565b6145a781614ccc565b82525050565b6145b681614ccc565b82525050565b60006145c882856141bc565b91506145d482846141bc565b91508190509392505050565b60006020820190506145f560008301846140ce565b92915050565b600060808201905061461060008301876140ce565b61461d60208301866140ce565b61462a60408301856145ad565b818103606083015261463c818461414a565b905095945050505050565b6000602082019050818103600083015261466181846140dd565b905092915050565b600060208201905061467e600083018461413b565b92915050565b6000602082019050818103600083015261469e8184614183565b905092915050565b600060208201905081810360008301526146bf816141ed565b9050919050565b600060208201905081810360008301526146df81614210565b9050919050565b600060208201905081810360008301526146ff81614233565b9050919050565b6000602082019050818103600083015261471f81614256565b9050919050565b6000602082019050818103600083015261473f81614279565b9050919050565b6000602082019050818103600083015261475f8161429c565b9050919050565b6000602082019050818103600083015261477f816142bf565b9050919050565b6000602082019050818103600083015261479f816142e2565b9050919050565b600060208201905081810360008301526147bf81614305565b9050919050565b600060208201905081810360008301526147df81614328565b9050919050565b600060208201905081810360008301526147ff8161434b565b9050919050565b6000602082019050818103600083015261481f8161436e565b9050919050565b6000602082019050818103600083015261483f81614391565b9050919050565b6000602082019050818103600083015261485f816143b4565b9050919050565b6000602082019050818103600083015261487f816143d7565b9050919050565b6000602082019050818103600083015261489f816143fa565b9050919050565b600060208201905081810360008301526148bf8161441d565b9050919050565b600060208201905081810360008301526148df81614440565b9050919050565b600060208201905081810360008301526148ff81614463565b9050919050565b6000602082019050818103600083015261491f81614486565b9050919050565b6000602082019050818103600083015261493f816144a9565b9050919050565b6000602082019050818103600083015261495f816144cc565b9050919050565b6000602082019050818103600083015261497f816144ef565b9050919050565b6000602082019050818103600083015261499f81614512565b9050919050565b600060208201905081810360008301526149bf81614535565b9050919050565b600060208201905081810360008301526149df81614558565b9050919050565b600060208201905081810360008301526149ff8161457b565b9050919050565b6000602082019050614a1b60008301846145ad565b92915050565b6000604082019050614a3660008301856145ad565b614a4360208301846140ce565b9392505050565b6000614a54614a65565b9050614a608282614d4a565b919050565b6000604051905090565b600067ffffffffffffffff821115614a8a57614a89614e82565b5b614a9382614eb1565b9050602081019050919050565b600067ffffffffffffffff821115614abb57614aba614e82565b5b614ac482614eb1565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b5882614ccc565b9150614b6383614ccc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b9857614b97614df5565b5b828201905092915050565b6000614bae82614ccc565b9150614bb983614ccc565b925082614bc957614bc8614e24565b5b828204905092915050565b6000614bdf82614ccc565b9150614bea83614ccc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c2357614c22614df5565b5b828202905092915050565b6000614c3982614ccc565b9150614c4483614ccc565b925082821015614c5757614c56614df5565b5b828203905092915050565b6000614c6d82614cac565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d03578082015181840152602081019050614ce8565b83811115614d12576000848401525b50505050565b60006002820490506001821680614d3057607f821691505b60208210811415614d4457614d43614e53565b5b50919050565b614d5382614eb1565b810181811067ffffffffffffffff82111715614d7257614d71614e82565b5b80604052505050565b6000614d8682614ccc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614db957614db8614df5565b5b600182019050919050565b6000614dcf82614ccc565b9150614dda83614ccc565b925082614dea57614de9614e24565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d6178207061636b6167652073616c6520636f756e7420616c72656164792100600082015250565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d6178207061636b6167652073616c6520636f756e742074616b656e20616c7260008201527f6561647921000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e7375666669656e7420616d6f756e742073656e742e000000000000000000600082015250565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b61555881614c62565b811461556357600080fd5b50565b61556f81614c74565b811461557a57600080fd5b50565b61558681614c80565b811461559157600080fd5b50565b61559d81614ccc565b81146155a857600080fd5b5056fea26469706673582212207aab8b2aa0b374bf0aa7b79badcf3d2eee8ea22b42a573a0db92ea5e6d41e4f764736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d584e75655043416846724c74756a6972645741526159797a767169674d56387a6739645a6e6a4e69464b37582f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmXNuePCAhFrLtujirdWARaYyzvqigMV8zg9dZnjNiFK7X/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d584e75655043416846724c74756a6972645741526159797a76716967
Arg [4] : 4d56387a6739645a6e6a4e69464b37582f000000000000000000000000000000


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.