ETH Price: $3,502.73 (+0.09%)
Gas: 5 Gwei

Token

Primobots (PRIMO)
 

Overview

Max Total Supply

2,500 PRIMO

Holders

458

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PRIMO
0xe8d842d44703de1b1e8e0dd4c7156e45efb55ed6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A utility-driven NFT project with 3D avatars. Founded by Baps Patil & Ish Verduzco.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Primobots

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion
File 1 of 13 : Primobots.sol
// SPDX-License-Identifier: MIT
// Copyright (C) 2022 Primobots

// .______   .______       __  .___  ___.   ______   .______     ______   .___________.    _______.
// |   _  \  |   _  \     |  | |   \/   |  /  __  \  |   _  \   /  __  \  |           |   /       |
// |  |_)  | |  |_)  |    |  | |  \  /  | |  |  |  | |  |_)  | |  |  |  | `---|  |----`  |   (----`
// |   ___/  |      /     |  | |  |\/|  | |  |  |  | |   _  <  |  |  |  |     |  |        \   \
// |  |      |  |\  \----.|  | |  |  |  | |  `--'  | |  |_)  | |  `--'  |     |  |    .----)   |
// | _|      | _| `._____||__| |__|  |__|  \______/  |______/   \______/      |__|    |_______/

pragma solidity 0.8.13;

import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "erc721a/contracts/ERC721A.sol";

/// @title Primobots Smart Contract
/// @author Primobots Team
/// @notice This smart contract will fulfill the need of Primobots Collection drop
/// @dev This smart contract uses ERC721A, newly created and optimised verison of ERC721.
contract Primobots is ERC721A, Ownable, Pausable {
    /// @notice Price of each Primobot during main sale
    /// @return MINTING_PRICE uint256 price per Primobot
    uint256 public constant MINTING_PRICE = 0.0888 ether;

    /// @notice Price per each Primobot during presale
    /// @return PRESALE_PRICE uint256 price per Primobot during presale
    uint256 public constant PRESALE_PRICE = 0.05 ether;

    /// @notice Maximum number of Primobots that can ever exist
    /// @return HARD_CAP uint256 Maximum number of Primobots that can ever exist
    uint256 public constant HARD_CAP = 5_555;

    /// @notice Maximum number of Primobots to be sold in presale
    /// @return PRESALE_CAP uint256 Maximum number of Primobots to be sold in presale
    uint256 public constant PRESALE_CAP = 555;

    /// @notice Number of Primobots that will be minted and reserved at Primobots Vault
    /// @return RESERVED_CAP uint256 Number of Primobots that will be minted and reserved at Primobots Vault
    uint256 public constant RESERVED_CAP = 200;

    /// @notice Maximum number of Primobots allowed to buy per wallet and per transaction
    /// @return amountMinted uint256 Maximum number of Primobots allowed to buy per wallet and per transaction
    uint256 public constant MAX_LIMIT = 10;

    /// @notice Maximum number of Primobots allowed to buy per whitelisted wallet
    /// @return MAX_PRESALE_LIMIT uint8 Maximum number of Primobots allowed to buy per whitelisted wallet
    uint256 public constant MAX_PRESALE_LIMIT = 1;

    /// @notice Percentage adjusted to account for floating point, i.e. 100000 - 100%
    /// @return ROYALTY_HUNDRED_PERCENT uint256 100000 that represents 100%
    uint256 public constant ROYALTY_HUNDRED_PERCENT = 100_000;

    // bytes4 interface ID of ERC2981
    bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;

    /// @notice Mapping of address and tokens minted by that address
    /// @return amountMinted uint8 number of tokens minted
    mapping(address => uint8) public minted;

    /// @notice Represents the state of presale,
    /// @return whitelist_active if true - presale active
    bool public whitelist_active;

    /// @notice Represents the state of sale (presale and main sale),
    /// @return sale_active if true - sale active
    bool public sale_active;

    /// @notice Represents the state of collection reveal,
    /// @return is_collection_revealed if true - collection is revealed
    bool public is_collection_revealed;

    /// @notice Represents the state of collection lock
    /// @return is_collection_locked if true - collection is locked and metadata cannot be updated
    bool public is_collection_locked;

    /// @notice Represents the state of collection sale end (after which no tokens can be sold)
    /// @return sale_ended if true - sale ended.
    bool public sale_ended; //

    /// @notice IPFS hash or CID which points to file or folder that contains the metadata
    /// @return ipfsHash IPFS CID
    string public ipfsHash;

    /// @notice IPFS hash or CID which points to JSON file that contains list of addresses that are whitelisted
    /// @return whitelistHash IPFS CID
    string public whitelistHash;

    /// @notice initial royalties value is 7.5%
    /// @return royaltiesValue uint256 royalties value
    uint256 public royaltiesValue = 7_500;

    /// @notice Merkle root of the tree generated using the list of whitelist addresses
    /// @return MERKLE_ROOT bytes32 merkle root
    bytes32 public MERKLE_ROOT;

    /// @notice address of Primobots vault
    /// @dev it will be a multisig wallet Gnosis Safe
    /// @return vault_address address of Primobots vault
    address public vault_address;

    // modifier that only allows function execution is collection is not locked
    modifier collectionNotLocked() {
        require(!is_collection_locked, "Collection locked");
        _;
    }

    /// @notice Sets name, ticker, whitelist info and pre-reveal media
    /// @param _name name of collection
    /// @param _ticker ticker of collection
    /// @param _ipfsHash IPFS hash or CID of pre-reveal media
    /// @param _whitelistHash IPFS hash or CID of JSON file which contains list of addresses that are whitelisted
    /// @param _vaultAddress address of vault
    /// @param _merkleRoot bytes32 merkle root of merkle tree generated using the whitelist addresses
    constructor(
        string memory _name,
        string memory _ticker,
        string memory _ipfsHash,
        string memory _whitelistHash,
        address _vaultAddress,
        bytes32 _merkleRoot
    ) ERC721A(_name, _ticker) {
        // set pre-reveal media
        ipfsHash = _ipfsHash;

        // set Primobots vault address
        vault_address = _vaultAddress;

        // set whitelist
        whitelistHash = _whitelistHash;
        MERKLE_ROOT = _merkleRoot;

        // reserve tokens
        _safeMint(vault_address, RESERVED_CAP);
    }

    //------------------------------------------------------//

    // Owner Functions

    //------------------------------------------------------//

    /// @notice set new IPFS hash
    /// @dev only by owner and when colelction is not locked
    /// @param _ipfsHash new IPFS hash or CID of file or folder that contains collection metadata
    function fixIpfsHash(string memory _ipfsHash)
        external
        onlyOwner
        collectionNotLocked
    {
        ipfsHash = _ipfsHash;
    }

    /// @notice method to start main sale
    /// @dev start main sale and stop presale, only invoked by owner when collection not locked
    function startSale() external onlyOwner collectionNotLocked {
        if (whitelist_active) {
            whitelist_active = false;
        }
        sale_active = true;
    }

    /// @notice method to start presale
    /// @dev start presale, only invoked by owner when collection not locked
    function startPresale() external onlyOwner collectionNotLocked {
        sale_active = true;
        whitelist_active = true;
    }

    /// @notice pause Primobot sale (main sale and presale)
    /// @dev uses Openzeppelin's Pausable.sol
    function pause() external onlyOwner collectionNotLocked {
        _pause();
    }

    /// @notice unpause Primobot sale (main sale and presale)
    /// @dev uses Openzeppelin's Pausable.sol
    function unpause() external onlyOwner collectionNotLocked {
        _unpause();
    }

    /// @notice locks collection so owner cannot change metadata of the collection
    /// @dev Explain to a developer any extra details
    function lockCollection() external onlyOwner collectionNotLocked {
        is_collection_locked = true;
    }

    /// @notice update the whitelist
    /// @dev sets new whitelist hash and merkle root
    /// @param _whitelistHash new IPFs hash or CID of JSON file that contains list of addresses that are whitelisted
    /// @param _root new merkle root generated by using the provided whitelist address
    function updateWhitelist(string memory _whitelistHash, bytes32 _root)
        external
        onlyOwner
        collectionNotLocked
    {
        whitelistHash = _whitelistHash;
        MERKLE_ROOT = _root;
    }

    /// @notice end sale, no more Primobots can be bought after this method is invoked
    /// @dev only owner can end sale and stop any further sale
    function endSale() external onlyOwner {
        sale_ended = true;
    }

    /// @notice transfer remaining Primobots after the sale ends.
    /// @dev only owner can transfer the Primobots
    /// @param _receiver receiver of Primbots
    /// @param _quantity number of Primobots to be minted to specified address
    function transferRemaining(address _receiver, uint256 _quantity)
        external
        onlyOwner
    {
        require(sale_ended, "Sale hasn't ended");
        require(
            totalSupply() + _quantity <= HARD_CAP,
            "Cannot exceed hard cap"
        );
        _safeMint(_receiver, _quantity);
    }

    /// @notice set new royalties percentage between 0%-10%
    /// @param _value new percentage, 1% - 1000, 100% - 100000
    function setRoyalties(uint256 _value) external onlyOwner {
        // royalties can be between 0% - 10%
        require(_value >= 0 && _value <= 10_000, "out of bounds");
        royaltiesValue = _value;
    }

    /// @notice reveal collection
    /// @dev sets state to collection revealed and updates with new IPFS hash
    /// @param _ipfsHash IPFS hash or CID with folder of metadata files that will conatin reveal media
    function revealCollection(string memory _ipfsHash) external onlyOwner {
        require(!is_collection_revealed, "already revealed");
        is_collection_revealed = true;
        ipfsHash = _ipfsHash;
    }

    /// @notice sets new vault address
    /// @dev vault address cannot be zero address
    /// @param _newAddress new vault address
    function fixVault(address _newAddress) external onlyOwner {
        require(_newAddress != address(0), "Can't use black hole");
        vault_address = _newAddress;
    }

    /// @notice withdraws all balance of this contract to vault address
    /// @dev uses OpenZeppelin's Address.sol library to handle fund transfer
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        require(vault_address != address(0) && balance > 0, "Can't withdraw");
        Address.sendValue(payable(vault_address), balance);
    }

    //------------------------------------------------------//

    // External Functions

    //------------------------------------------------------//

    /// @notice method to buy during presale and main sale
    /// @dev uses merkle root and merkle proof to verify if the msg.sender is whitelisted
    /// @param _merkleProof an array of hashes necessary to prove the inclusion of msg.sender into whitelist
    /// @param _mintQuantity number of tokens to be minted
    function buy(bytes32[] calldata _merkleProof, uint256 _mintQuantity)
        external
        payable
        whenNotPaused
    {
        require(
            sale_active && !sale_ended,
            "Can't buy because sale is not active"
        );
        bool canMint;
        uint256 price;
        uint256 mintLimit;
        uint256 cap;

        if (whitelist_active) {
            bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
            canMint = MerkleProof.verify(_merkleProof, MERKLE_ROOT, leaf);
            price = PRESALE_PRICE;
            mintLimit = MAX_PRESALE_LIMIT;
            cap = PRESALE_CAP + RESERVED_CAP; // to account for already minted reserved tokens
        } else {
            canMint = true;
            price = MINTING_PRICE;
            mintLimit = MAX_LIMIT;
            cap = HARD_CAP;
        }
        require(
            canMint && msg.value == price * _mintQuantity,
            "Sorry you can't mint right now"
        );
        require(_mintQuantity >= 1, "usless transaction to mint zero");
        require(_mintQuantity + totalSupply() <= cap, "cap reached");
        require(
            minted[_msgSender()] + _mintQuantity <= mintLimit,
            "Out of limit"
        );
        minted[_msgSender()] += uint8(_mintQuantity);
        _safeMint(_msgSender(), _mintQuantity);
    }

    //------------------------------------------------------//

    // View Functions

    //------------------------------------------------------//

    /// @notice Called with the sale price to determine how much royalty is owed and to whom.
    /// @dev see {EIP-2981}
    /// @param _tokenId the NFT asset queried for royalty information
    /// @param _salePrice the sale price of the NFT asset specified by _tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for _salePrice
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(_tokenId), "RoyaltyQueryForNonexistentToken");
        return (
            vault_address,
            (_salePrice * royaltiesValue) / ROYALTY_HUNDRED_PERCENT
        );
    }

    /// @notice overriden to show that contract supports EIP2981
    /// @dev see {EIP-165}
    /// @param interfaceId interface id of implementation
    /// @return true if implements the interface else false
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A)
        returns (bool)
    {
        return
            interfaceId == _INTERFACE_ID_ERC2981 ||
            super.supportsInterface(interfaceId);
    }

    /// @notice token URI of specified existing token ID
    /// @param _tokenId token ID
    /// @return string token URI
    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "URIQueryForNonexistentToken");
        if (is_collection_revealed == true) {
            string memory _tknId = Strings.toString(_tokenId);
            return
                string(
                    abi.encodePacked(
                        _baseURI(),
                        ipfsHash,
                        "/Erc721_Data_",
                        _tknId,
                        ".json"
                    )
                );
        } else {
            return string(abi.encodePacked(_baseURI(), ipfsHash, "/"));
        }
    }

    /// @notice list of tokens owned by a wallet
    /// @param _owner owner address
    /// @return ownerTokens array of token IDs owned by a wallet
    function tokensOfOwner(address _owner)
        external
        view
        returns (uint256[] memory ownerTokens)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 totalTkns = totalSupply();
            uint256 resultIndex = 0;
            uint256 tnkId;

            for (tnkId = _startTokenId(); tnkId <= totalTkns; tnkId++) {
                if (ownerOf(tnkId) == _owner) {
                    result[resultIndex] = tnkId;
                    resultIndex++;
                }
            }

            return result;
        }
    }

    /// @notice checks if an address is whitelisted or not
    /// @param _merkleProof an array of hashes necessary to prove the inclusion of msg.sender into whitelist
    /// @param _address address that needs to check for inclusion in whitelist
    function isWhitelisted(bytes32[] calldata _merkleProof, address _address)
        external
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(_address));
        bool whitelisted = MerkleProof.verify(_merkleProof, MERKLE_ROOT, leaf);
        return whitelisted;
    }

    // method overriden to start token ID from 1.
    function _startTokenId() internal pure virtual override returns (uint256) {
        return 1;
    }

    // method overriden to set base URI to desireable base URI
    function _baseURI() internal pure override returns (string memory) {
        return "ipfs://";
    }
}

File 2 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 13 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 6 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

File 8 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 10 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_ticker","type":"string"},{"internalType":"string","name":"_ipfsHash","type":"string"},{"internalType":"string","name":"_whitelistHash","type":"string"},{"internalType":"address","name":"_vaultAddress","type":"address"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"HARD_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MERKLE_ROOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTING_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_HUNDRED_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintQuantity","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_ipfsHash","type":"string"}],"name":"fixIpfsHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"fixVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ipfsHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"is_collection_locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"is_collection_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_ipfsHash","type":"string"}],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltiesValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":[],"name":"sale_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sale_ended","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"ownerTokens","type":"uint256[]"}],"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":"_receiver","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"transferRemaining","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_whitelistHash","type":"string"},{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelist_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611d4c600d553480156200001757600080fd5b5060405162004a3438038062004a348339810160408190526200003a91620005ec565b8551869086906200005390600290602085019062000453565b5080516200006990600390602084019062000453565b50506001600055506200007c33620000fa565b6008805460ff60a01b1916905583516200009e90600b90602087019062000453565b50600f80546001600160a01b0319166001600160a01b0384161790558251620000cf90600c90602086019062000453565b50600e819055600f54620000ee906001600160a01b031660c86200014c565b50505050505062000785565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200016e8282604051806020016040528060008152506200017260201b60201c565b5050565b62000181838383600162000186565b505050565b6000546001600160a01b038516620001b057604051622e076360e81b815260040160405180910390fd5b83600003620001d25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156200028b57506200028b876001600160a01b03166200035060201b620028121760201c565b156200030a575b60405182906001600160a01b0389169060009060008051602062004a14833981519152908290a46001820191620002cf906000908990886200035f565b620002ed576040516368d2bf6b60e11b815260040160405180910390fd5b808203620002925782600054146200030457600080fd5b6200033f565b5b6040516001830192906001600160a01b0389169060009060008051602062004a14833981519152908290a48082036200030b575b506000555050505050565b50505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029062000396903390899088908890600401620006c0565b6020604051808303816000875af1925050508015620003d4575060408051601f3d908101601f19168201909252620003d19181019062000716565b60015b62000436573d80801562000405576040519150601f19603f3d011682016040523d82523d6000602084013e6200040a565b606091505b5080516000036200042e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620004619062000749565b90600052602060002090601f016020900481019282620004855760008555620004d0565b82601f10620004a057805160ff1916838001178555620004d0565b82800160010185558215620004d0579182015b82811115620004d0578251825591602001919060010190620004b3565b50620004de929150620004e2565b5090565b5b80821115620004de5760008155600101620004e3565b634e487b7160e01b600052604160045260246000fd5b60005b838110156200052c57818101518382015260200162000512565b838111156200034a5750506000910152565b600082601f8301126200055057600080fd5b81516001600160401b03808211156200056d576200056d620004f9565b604051601f8301601f19908116603f01168101908282118183101715620005985762000598620004f9565b81604052838152866020858801011115620005b257600080fd5b620005c58460208301602089016200050f565b9695505050505050565b80516001600160a01b0381168114620005e757600080fd5b919050565b60008060008060008060c087890312156200060657600080fd5b86516001600160401b03808211156200061e57600080fd5b6200062c8a838b016200053e565b975060208901519150808211156200064357600080fd5b620006518a838b016200053e565b965060408901519150808211156200066857600080fd5b620006768a838b016200053e565b955060608901519150808211156200068d57600080fd5b506200069c89828a016200053e565b935050620006ad60808801620005cf565b915060a087015190509295509295509295565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620006ff8160a08501602087016200050f565b601f01601f19169190910160a00195945050505050565b6000602082840312156200072957600080fd5b81516001600160e01b0319811681146200074257600080fd5b9392505050565b600181811c908216806200075e57607f821691505b6020821081036200077f57634e487b7160e01b600052602260045260246000fd5b50919050565b61427f80620007956000396000f3fe6080604052600436106103555760003560e01c80635c975abb116101bb57806395d89b41116100f7578063c87b56dd11610095578063e0df72161161006f578063e0df7216146109a0578063e8987498146109bf578063e985e9c5146109df578063f2fde38b14610a3557600080fd5b8063c87b56dd14610940578063dd6e684c14610960578063debefaa61461098057600080fd5b8063b88d4fde116100d1578063b88d4fde146108e0578063bd94fafc14610900578063c31fd48214610916578063c623674f1461092b57600080fd5b806395d89b4114610896578063a22cb465146108ab578063b66a0e5d146108cb57600080fd5b8063715018a6116101645780638456cb591161013e5780638456cb59146108085780638462151c1461081d5780638b22f3411461084a5780638da5cb5b1461086b57600080fd5b8063715018a6146107a4578063733f2399146107b957806373914a85146107e657600080fd5b80636352211e116101955780636352211e1461074857806363d9d1661461076857806370a082311461078457600080fd5b80635c975abb146106dd5780635e01967c1461070d57806362dc6e211461072d57600080fd5b80632b80183f116102955780633f4ba83a11610233578063483203a21161020d578063483203a21461067d57806350179bae1461069057806351e75e8b146106b057806353e08604146106c657600080fd5b80633f4ba83a146106285780633fe857b61461063d57806342842e0e1461065d57600080fd5b80633a03171c1161026f5780633a03171c146105d35780633ccfd60b146105e95780633cd54176146105fe5780633d75aa3f1461061357600080fd5b80632b80183f1461057e578063372356e91461059e578063380d831b146105be57600080fd5b80630ee83a711161030257806318160ddd116102dc57806318160ddd146104955780631e7269c5146104d057806323b872dd146105125780632a55205a1461053257600080fd5b80630ee83a71146104515780631036b3c514610466578063114cccd21461048057600080fd5b806306fdde031161033357806306fdde03146103ca578063081812fc146103ec578063095ea7b31461043157600080fd5b806301ffc9a71461035a57806304787f3d1461038f57806304c98b2b146103b3575b600080fd5b34801561036657600080fd5b5061037a61037536600461397a565b610a55565b60405190151581526020015b60405180910390f35b34801561039b57600080fd5b506103a5600d5481565b604051908152602001610386565b3480156103bf57600080fd5b506103c8610ab1565b005b3480156103d657600080fd5b506103df610bd9565b6040516103869190613a14565b3480156103f857600080fd5b5061040c610407366004613a27565b610c6b565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610386565b34801561043d57600080fd5b506103c861044c366004613a64565b610cd5565b34801561045d57600080fd5b506103c8610dbb565b34801561047257600080fd5b50600a5461037a9060ff1681565b34801561048c57600080fd5b506103a5600a81565b3480156104a157600080fd5b50600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016103a5565b3480156104dc57600080fd5b506105006104eb366004613a8e565b60096020526000908152604090205460ff1681565b60405160ff9091168152602001610386565b34801561051e57600080fd5b506103c861052d366004613aa9565b610ee0565b34801561053e57600080fd5b5061055261054d366004613ae5565b610eeb565b6040805173ffffffffffffffffffffffffffffffffffffffff9093168352602083019190915201610386565b34801561058a57600080fd5b506103c8610599366004613a27565b610fa1565b3480156105aa57600080fd5b506103c86105b9366004613bea565b611093565b3480156105ca57600080fd5b506103c861119f565b3480156105df57600080fd5b506103a56115b381565b3480156105f557600080fd5b506103c8611251565b34801561060a57600080fd5b506103a5600181565b34801561061f57600080fd5b506103a560c881565b34801561063457600080fd5b506103c8611387565b34801561064957600080fd5b506103c8610658366004613a64565b611486565b34801561066957600080fd5b506103c8610678366004613aa9565b611626565b6103c861068b366004613c64565b611641565b34801561069c57600080fd5b506103c86106ab366004613bea565b611ab0565b3480156106bc57600080fd5b506103a5600e5481565b3480156106d257600080fd5b506103a5620186a081565b3480156106e957600080fd5b5060085474010000000000000000000000000000000000000000900460ff1661037a565b34801561071957600080fd5b506103c8610728366004613a8e565b611be4565b34801561073957600080fd5b506103a566b1a2bc2ec5000081565b34801561075457600080fd5b5061040c610763366004613a27565b611d29565b34801561077457600080fd5b506103a567013b7b21280e000081565b34801561079057600080fd5b506103a561079f366004613a8e565b611d3b565b3480156107b057600080fd5b506103c8611dbd565b3480156107c557600080fd5b50600f5461040c9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156107f257600080fd5b50600a5461037a90640100000000900460ff1681565b34801561081457600080fd5b506103c8611e48565b34801561082957600080fd5b5061083d610838366004613a8e565b611f45565b6040516103869190613cb0565b34801561085657600080fd5b50600a5461037a906301000000900460ff1681565b34801561087757600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff1661040c565b3480156108a257600080fd5b506103df612081565b3480156108b757600080fd5b506103c86108c6366004613cf4565b612090565b3480156108d757600080fd5b506103c8612176565b3480156108ec57600080fd5b506103c86108fb366004613d30565b6122cd565b34801561090c57600080fd5b506103a561022b81565b34801561092257600080fd5b506103df612344565b34801561093757600080fd5b506103df6123d2565b34801561094c57600080fd5b506103df61095b366004613a27565b6123df565b34801561096c57600080fd5b506103c861097b366004613dac565b61253a565b34801561098c57600080fd5b5061037a61099b366004613df1565b612649565b3480156109ac57600080fd5b50600a5461037a90610100900460ff1681565b3480156109cb57600080fd5b50600a5461037a9062010000900460ff1681565b3480156109eb57600080fd5b5061037a6109fa366004613e45565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a4157600080fd5b506103c8610a50366004613a8e565b6126e5565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610aab5750610aab8261282e565b92915050565b60085473ffffffffffffffffffffffffffffffffffffffff163314610b37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600a546301000000900460ff1615610bab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f436f6c6c656374696f6e206c6f636b65640000000000000000000000000000006044820152606401610b2e565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000016610101179055565b606060028054610be890613e78565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1490613e78565b8015610c615780601f10610c3657610100808354040283529160200191610c61565b820191906000526020600020905b815481529060010190602001808311610c4457829003601f168201915b5050505050905090565b6000610c7682612911565b610cac576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610ce082611d29565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d47576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff821614801590610d745750610d7281336109fa565b155b15610dab576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610db6838383612963565b505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314610e3c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a546301000000900460ff1615610eb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f436f6c6c656374696f6e206c6f636b65640000000000000000000000000000006044820152606401610b2e565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff166301000000179055565b610db68383836129e4565b600080610ef784612911565b610f5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f79616c74795175657279466f724e6f6e6578697374656e74546f6b656e006044820152606401610b2e565b600f54600d5473ffffffffffffffffffffffffffffffffffffffff90911690620186a090610f8b9086613ef4565b610f959190613f60565b915091505b9250929050565b60085473ffffffffffffffffffffffffffffffffffffffff163314611022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b61271081111561108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f6f7574206f6620626f756e6473000000000000000000000000000000000000006044820152606401610b2e565b600d55565b60085473ffffffffffffffffffffffffffffffffffffffff163314611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a546301000000900460ff1615611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f436f6c6c656374696f6e206c6f636b65640000000000000000000000000000006044820152606401610b2e565b805161119b90600b9060208401906138b3565b5050565b60085473ffffffffffffffffffffffffffffffffffffffff163314611220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffff16640100000000179055565b60085473ffffffffffffffffffffffffffffffffffffffff1633146112d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600f54479073ffffffffffffffffffffffffffffffffffffffff16158015906112fb5750600081115b611361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f43616e27742077697468647261770000000000000000000000000000000000006044820152606401610b2e565b600f546113849073ffffffffffffffffffffffffffffffffffffffff1682612d1c565b50565b60085473ffffffffffffffffffffffffffffffffffffffff163314611408576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a546301000000900460ff161561147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f436f6c6c656374696f6e206c6f636b65640000000000000000000000000000006044820152606401610b2e565b611484612e76565b565b60085473ffffffffffffffffffffffffffffffffffffffff163314611507576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a54640100000000900460ff1661157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f53616c65206861736e277420656e6465640000000000000000000000000000006044820152606401610b2e565b6001546000546115b3918391037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016115b49190613f74565b111561161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f43616e6e6f7420657863656564206861726420636170000000000000000000006044820152606401610b2e565b61119b8282612f6f565b610db6838383604051806020016040528060008152506122cd565b60085474010000000000000000000000000000000000000000900460ff16156116c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610b2e565b600a54610100900460ff1680156116e85750600a54640100000000900460ff16155b611773576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e27742062757920626563617573652073616c65206973206e6f7420616360448201527f74697665000000000000000000000000000000000000000000000000000000006064820152608401610b2e565b600a5460009081908190819060ff1615611839576040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015260009060340160405160208183030381529060405280519060200120905061181488888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050612f89565b945066b1a2bc2ec5000093506001925061183160c861022b613f74565b915050611851565b506001925067013b7b21280e00009150600a90506115b35b83801561186657506118638584613ef4565b34145b6118cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536f72727920796f752063616e2774206d696e74207269676874206e6f7700006044820152606401610b2e565b6001851015611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f75736c657373207472616e73616374696f6e20746f206d696e74207a65726f006044820152606401610b2e565b600154600054829190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0161196d9087613f74565b11156119d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f63617020726561636865640000000000000000000000000000000000000000006044820152606401610b2e565b3360009081526009602052604090205482906119f590879060ff16613f74565b1115611a5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4f7574206f66206c696d697400000000000000000000000000000000000000006044820152606401610b2e565b3360009081526009602052604081208054879290611a7f90849060ff16613f8c565b92506101000a81548160ff021916908360ff160217905550611aa7611aa13390565b86612f6f565b50505050505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314611b31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a5462010000900460ff1615611ba4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f616c72656164792072657665616c6564000000000000000000000000000000006044820152606401610b2e565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff1662010000179055805161119b90600b9060208401906138b3565b60085473ffffffffffffffffffffffffffffffffffffffff163314611c65576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b73ffffffffffffffffffffffffffffffffffffffff8116611ce2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f43616e27742075736520626c61636b20686f6c650000000000000000000000006044820152606401610b2e565b600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000611d3482612f9f565b5192915050565b600073ffffffffffffffffffffffffffffffffffffffff8216611d8a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b60085473ffffffffffffffffffffffffffffffffffffffff163314611e3e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b611484600061317a565b60085473ffffffffffffffffffffffffffffffffffffffff163314611ec9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a546301000000900460ff1615611f3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f436f6c6c656374696f6e206c6f636b65640000000000000000000000000000006044820152606401610b2e565b6114846131f1565b60606000611f5283611d3b565b905080600003611f765760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611f9157611f91613b07565b604051908082528060200260200182016040528015611fba578160200160208202803683370190505b506001546000805492935091037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019050600060015b828111612070578673ffffffffffffffffffffffffffffffffffffffff1661201782611d29565b73ffffffffffffffffffffffffffffffffffffffff160361205e578084838151811061204557612045613fb1565b60209081029190910101528161205a81613fe0565b9250505b8061206881613fe0565b915050611ff0565b509195945050505050565b50919050565b606060038054610be890613e78565b3373ffffffffffffffffffffffffffffffffffffffff8316036120df576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60085473ffffffffffffffffffffffffffffffffffffffff1633146121f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a546301000000900460ff161561226b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f436f6c6c656374696f6e206c6f636b65640000000000000000000000000000006044820152606401610b2e565b600a5460ff161561229f57600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055565b6122d88484846129e4565b73ffffffffffffffffffffffffffffffffffffffff83163b151580156123075750612305848484846132dd565b155b1561233e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c805461235190613e78565b80601f016020809104026020016040519081016040528092919081815260200182805461237d90613e78565b80156123ca5780601f1061239f576101008083540402835291602001916123ca565b820191906000526020600020905b8154815290600101906020018083116123ad57829003601f168201915b505050505081565b600b805461235190613e78565b60606123ea82612911565b612450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5552495175657279466f724e6f6e6578697374656e74546f6b656e00000000006044820152606401610b2e565b600a5462010000900460ff1615156001036124d857600061247083613457565b90506124ac60408051808201909152600781527f697066733a2f2f00000000000000000000000000000000000000000000000000602082015290565b600b826040516020016124c1939291906140e8565b604051602081830303815290604052915050919050565b60408051808201909152600781527f697066733a2f2f000000000000000000000000000000000000000000000000006020820152600b60405160200161251f929190614175565b6040516020818303038152906040529050919050565b919050565b60085473ffffffffffffffffffffffffffffffffffffffff1633146125bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a546301000000900460ff161561262f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f436f6c6c656374696f6e206c6f636b65640000000000000000000000000000006044820152606401610b2e565b815161264290600c9060208501906138b3565b50600e5550565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606083901b166020820152600090819060340160405160208183030381529060405280519060200120905060006126db86868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150859050612f89565b9695505050505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314612766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b73ffffffffffffffffffffffffffffffffffffffff8116612809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b2e565b6113848161317a565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806128c157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610aab57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610aab565b600081600111158015612925575060005482105b8015610aab5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006129ef82612f9f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a5a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff86161480612a855750612a8585336109fa565b80612aad575033612a9584610c6b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612ae6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8416612b33576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b3f60008487612963565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021783558701808452922080549193909116612cb6576000548214612cb6578054602086015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090911673ffffffffffffffffffffffffffffffffffffffff8a16171781555b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80471015612d86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b2e565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114612de0576040519150601f19603f3d011682016040523d82523d6000602084013e612de5565b606091505b5050905080610db6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b2e565b60085474010000000000000000000000000000000000000000900460ff16612efa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610b2e565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b61119b82826040518060200160405280600081525061358c565b600082612f968584613599565b14949350505050565b60408051606081018252600080825260208201819052918101919091528180600111158015612fcf575060005481105b15613148576000818152600460209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff8116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff1615159181018290529061314657805173ffffffffffffffffffffffffffffffffffffffff1615613087579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600460209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff1615159281019290925215613141579392505050565b613087565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60085474010000000000000000000000000000000000000000900460ff1615613276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610b2e565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612f453390565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906133389033908990889088906004016141c2565b6020604051808303816000875af1925050508015613391575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261338e91810190614201565b60015b613408573d8080156133bf576040519150601f19603f3d011682016040523d82523d6000602084013e6133c4565b606091505b508051600003613400576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b60608160000361349a57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156134c457806134ae81613fe0565b91506134bd9050600a83613f60565b915061349e565b60008167ffffffffffffffff8111156134df576134df613b07565b6040519080825280601f01601f191660200182016040528015613509576020820181803683370190505b5090505b841561344f5761351e60018361421e565b915061352b600a86614235565b613536906030613f74565b60f81b81838151811061354b5761354b613fb1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613585600a86613f60565b945061350d565b610db68383836001613605565b600081815b8451811015611f6e5760008582815181106135bb576135bb613fb1565b602002602001015190508083116135e157600083815260208290526040902092506135f2565b600081815260208490526040902092505b50806135fd81613fe0565b91505061359e565b60005473ffffffffffffffffffffffffffffffffffffffff8516613655576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360000361368f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168c01811690920217909155858452600490925290912080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004290921691909102179055808085018380156137aa575073ffffffffffffffffffffffffffffffffffffffff87163b15155b15613858575b604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461380860008884806001019550886132dd565b61383e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036137b057826000541461385357600080fd5b6138aa565b5b60405160018301929073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203613859575b50600055612d15565b8280546138bf90613e78565b90600052602060002090601f0160209004810192826138e15760008555613927565b82601f106138fa57805160ff1916838001178555613927565b82800160010185558215613927579182015b8281111561392757825182559160200191906001019061390c565b50613933929150613937565b5090565b5b808211156139335760008155600101613938565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461138457600080fd5b60006020828403121561398c57600080fd5b81356139978161394c565b9392505050565b60005b838110156139b95781810151838201526020016139a1565b8381111561233e5750506000910152565b600081518084526139e281602086016020860161399e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061399760208301846139ca565b600060208284031215613a3957600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461253557600080fd5b60008060408385031215613a7757600080fd5b613a8083613a40565b946020939093013593505050565b600060208284031215613aa057600080fd5b61399782613a40565b600080600060608486031215613abe57600080fd5b613ac784613a40565b9250613ad560208501613a40565b9150604084013590509250925092565b60008060408385031215613af857600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115613b5157613b51613b07565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613b9757613b97613b07565b81604052809350858152868686011115613bb057600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112613bdb57600080fd5b61399783833560208501613b36565b600060208284031215613bfc57600080fd5b813567ffffffffffffffff811115613c1357600080fd5b61344f84828501613bca565b60008083601f840112613c3157600080fd5b50813567ffffffffffffffff811115613c4957600080fd5b6020830191508360208260051b8501011115610f9a57600080fd5b600080600060408486031215613c7957600080fd5b833567ffffffffffffffff811115613c9057600080fd5b613c9c86828701613c1f565b909790965060209590950135949350505050565b6020808252825182820181905260009190848201906040850190845b81811015613ce857835183529284019291840191600101613ccc565b50909695505050505050565b60008060408385031215613d0757600080fd5b613d1083613a40565b915060208301358015158114613d2557600080fd5b809150509250929050565b60008060008060808587031215613d4657600080fd5b613d4f85613a40565b9350613d5d60208601613a40565b925060408501359150606085013567ffffffffffffffff811115613d8057600080fd5b8501601f81018713613d9157600080fd5b613da087823560208401613b36565b91505092959194509250565b60008060408385031215613dbf57600080fd5b823567ffffffffffffffff811115613dd657600080fd5b613de285828601613bca565b95602094909401359450505050565b600080600060408486031215613e0657600080fd5b833567ffffffffffffffff811115613e1d57600080fd5b613e2986828701613c1f565b9094509250613e3c905060208501613a40565b90509250925092565b60008060408385031215613e5857600080fd5b613e6183613a40565b9150613e6f60208401613a40565b90509250929050565b600181811c90821680613e8c57607f821691505b60208210810361207b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f2c57613f2c613ec5565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613f6f57613f6f613f31565b500490565b60008219821115613f8757613f87613ec5565b500190565b600060ff821660ff84168060ff03821115613fa957613fa9613ec5565b019392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361401157614011613ec5565b5060010190565b8054600090600181811c908083168061403257607f831692505b6020808410820361406c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b81801561408057600181146140af576140dc565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008616895284890196506140dc565b60008881526020902060005b868110156140d45781548b8201529085019083016140bb565b505084890196505b50505050505092915050565b600084516140fa81846020890161399e565b61410681840186614018565b90507f2f4572633732315f446174615f000000000000000000000000000000000000008152835161413e81600d84016020880161399e565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600d929091019182015260120195945050505050565b6000835161418781846020880161399e565b61419381840185614018565b7f2f00000000000000000000000000000000000000000000000000000000000000815260010195945050505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526126db60808301846139ca565b60006020828403121561421357600080fd5b81516139978161394c565b60008282101561423057614230613ec5565b500390565b60008261424457614244613f31565b50069056fea264697066735822122027a819df28624ee02af9cbbe93f8f309a9be439ded1368347bbaf12e34d3af8464736f6c634300080d0033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000213d8aec20acf4cdde2ce0417f4bc9dd309ab8578e1012ed71af2c555158d52dd10091a167a44121e1ccb36bbf20118ab960c7fb00000000000000000000000000000000000000000000000000000000000000095072696d6f626f7473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055052494d4f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6659556a4a384d314e56326e4a4c77464a63627a48597173416d313378454233704153446b54386d65506938000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d653443325a565877704635696563445a4d6444516945314e586b793542555359726837394572506d79547462000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103555760003560e01c80635c975abb116101bb57806395d89b41116100f7578063c87b56dd11610095578063e0df72161161006f578063e0df7216146109a0578063e8987498146109bf578063e985e9c5146109df578063f2fde38b14610a3557600080fd5b8063c87b56dd14610940578063dd6e684c14610960578063debefaa61461098057600080fd5b8063b88d4fde116100d1578063b88d4fde146108e0578063bd94fafc14610900578063c31fd48214610916578063c623674f1461092b57600080fd5b806395d89b4114610896578063a22cb465146108ab578063b66a0e5d146108cb57600080fd5b8063715018a6116101645780638456cb591161013e5780638456cb59146108085780638462151c1461081d5780638b22f3411461084a5780638da5cb5b1461086b57600080fd5b8063715018a6146107a4578063733f2399146107b957806373914a85146107e657600080fd5b80636352211e116101955780636352211e1461074857806363d9d1661461076857806370a082311461078457600080fd5b80635c975abb146106dd5780635e01967c1461070d57806362dc6e211461072d57600080fd5b80632b80183f116102955780633f4ba83a11610233578063483203a21161020d578063483203a21461067d57806350179bae1461069057806351e75e8b146106b057806353e08604146106c657600080fd5b80633f4ba83a146106285780633fe857b61461063d57806342842e0e1461065d57600080fd5b80633a03171c1161026f5780633a03171c146105d35780633ccfd60b146105e95780633cd54176146105fe5780633d75aa3f1461061357600080fd5b80632b80183f1461057e578063372356e91461059e578063380d831b146105be57600080fd5b80630ee83a711161030257806318160ddd116102dc57806318160ddd146104955780631e7269c5146104d057806323b872dd146105125780632a55205a1461053257600080fd5b80630ee83a71146104515780631036b3c514610466578063114cccd21461048057600080fd5b806306fdde031161033357806306fdde03146103ca578063081812fc146103ec578063095ea7b31461043157600080fd5b806301ffc9a71461035a57806304787f3d1461038f57806304c98b2b146103b3575b600080fd5b34801561036657600080fd5b5061037a61037536600461397a565b610a55565b60405190151581526020015b60405180910390f35b34801561039b57600080fd5b506103a5600d5481565b604051908152602001610386565b3480156103bf57600080fd5b506103c8610ab1565b005b3480156103d657600080fd5b506103df610bd9565b6040516103869190613a14565b3480156103f857600080fd5b5061040c610407366004613a27565b610c6b565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610386565b34801561043d57600080fd5b506103c861044c366004613a64565b610cd5565b34801561045d57600080fd5b506103c8610dbb565b34801561047257600080fd5b50600a5461037a9060ff1681565b34801561048c57600080fd5b506103a5600a81565b3480156104a157600080fd5b50600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016103a5565b3480156104dc57600080fd5b506105006104eb366004613a8e565b60096020526000908152604090205460ff1681565b60405160ff9091168152602001610386565b34801561051e57600080fd5b506103c861052d366004613aa9565b610ee0565b34801561053e57600080fd5b5061055261054d366004613ae5565b610eeb565b6040805173ffffffffffffffffffffffffffffffffffffffff9093168352602083019190915201610386565b34801561058a57600080fd5b506103c8610599366004613a27565b610fa1565b3480156105aa57600080fd5b506103c86105b9366004613bea565b611093565b3480156105ca57600080fd5b506103c861119f565b3480156105df57600080fd5b506103a56115b381565b3480156105f557600080fd5b506103c8611251565b34801561060a57600080fd5b506103a5600181565b34801561061f57600080fd5b506103a560c881565b34801561063457600080fd5b506103c8611387565b34801561064957600080fd5b506103c8610658366004613a64565b611486565b34801561066957600080fd5b506103c8610678366004613aa9565b611626565b6103c861068b366004613c64565b611641565b34801561069c57600080fd5b506103c86106ab366004613bea565b611ab0565b3480156106bc57600080fd5b506103a5600e5481565b3480156106d257600080fd5b506103a5620186a081565b3480156106e957600080fd5b5060085474010000000000000000000000000000000000000000900460ff1661037a565b34801561071957600080fd5b506103c8610728366004613a8e565b611be4565b34801561073957600080fd5b506103a566b1a2bc2ec5000081565b34801561075457600080fd5b5061040c610763366004613a27565b611d29565b34801561077457600080fd5b506103a567013b7b21280e000081565b34801561079057600080fd5b506103a561079f366004613a8e565b611d3b565b3480156107b057600080fd5b506103c8611dbd565b3480156107c557600080fd5b50600f5461040c9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156107f257600080fd5b50600a5461037a90640100000000900460ff1681565b34801561081457600080fd5b506103c8611e48565b34801561082957600080fd5b5061083d610838366004613a8e565b611f45565b6040516103869190613cb0565b34801561085657600080fd5b50600a5461037a906301000000900460ff1681565b34801561087757600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff1661040c565b3480156108a257600080fd5b506103df612081565b3480156108b757600080fd5b506103c86108c6366004613cf4565b612090565b3480156108d757600080fd5b506103c8612176565b3480156108ec57600080fd5b506103c86108fb366004613d30565b6122cd565b34801561090c57600080fd5b506103a561022b81565b34801561092257600080fd5b506103df612344565b34801561093757600080fd5b506103df6123d2565b34801561094c57600080fd5b506103df61095b366004613a27565b6123df565b34801561096c57600080fd5b506103c861097b366004613dac565b61253a565b34801561098c57600080fd5b5061037a61099b366004613df1565b612649565b3480156109ac57600080fd5b50600a5461037a90610100900460ff1681565b3480156109cb57600080fd5b50600a5461037a9062010000900460ff1681565b3480156109eb57600080fd5b5061037a6109fa366004613e45565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a4157600080fd5b506103c8610a50366004613a8e565b6126e5565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610aab5750610aab8261282e565b92915050565b60085473ffffffffffffffffffffffffffffffffffffffff163314610b37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600a546301000000900460ff1615610bab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f436f6c6c656374696f6e206c6f636b65640000000000000000000000000000006044820152606401610b2e565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000016610101179055565b606060028054610be890613e78565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1490613e78565b8015610c615780601f10610c3657610100808354040283529160200191610c61565b820191906000526020600020905b815481529060010190602001808311610c4457829003601f168201915b5050505050905090565b6000610c7682612911565b610cac576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610ce082611d29565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d47576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff821614801590610d745750610d7281336109fa565b155b15610dab576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610db6838383612963565b505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314610e3c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a546301000000900460ff1615610eb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f436f6c6c656374696f6e206c6f636b65640000000000000000000000000000006044820152606401610b2e565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff166301000000179055565b610db68383836129e4565b600080610ef784612911565b610f5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f79616c74795175657279466f724e6f6e6578697374656e74546f6b656e006044820152606401610b2e565b600f54600d5473ffffffffffffffffffffffffffffffffffffffff90911690620186a090610f8b9086613ef4565b610f959190613f60565b915091505b9250929050565b60085473ffffffffffffffffffffffffffffffffffffffff163314611022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b61271081111561108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f6f7574206f6620626f756e6473000000000000000000000000000000000000006044820152606401610b2e565b600d55565b60085473ffffffffffffffffffffffffffffffffffffffff163314611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a546301000000900460ff1615611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f436f6c6c656374696f6e206c6f636b65640000000000000000000000000000006044820152606401610b2e565b805161119b90600b9060208401906138b3565b5050565b60085473ffffffffffffffffffffffffffffffffffffffff163314611220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffff16640100000000179055565b60085473ffffffffffffffffffffffffffffffffffffffff1633146112d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600f54479073ffffffffffffffffffffffffffffffffffffffff16158015906112fb5750600081115b611361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f43616e27742077697468647261770000000000000000000000000000000000006044820152606401610b2e565b600f546113849073ffffffffffffffffffffffffffffffffffffffff1682612d1c565b50565b60085473ffffffffffffffffffffffffffffffffffffffff163314611408576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a546301000000900460ff161561147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f436f6c6c656374696f6e206c6f636b65640000000000000000000000000000006044820152606401610b2e565b611484612e76565b565b60085473ffffffffffffffffffffffffffffffffffffffff163314611507576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a54640100000000900460ff1661157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f53616c65206861736e277420656e6465640000000000000000000000000000006044820152606401610b2e565b6001546000546115b3918391037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016115b49190613f74565b111561161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f43616e6e6f7420657863656564206861726420636170000000000000000000006044820152606401610b2e565b61119b8282612f6f565b610db6838383604051806020016040528060008152506122cd565b60085474010000000000000000000000000000000000000000900460ff16156116c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610b2e565b600a54610100900460ff1680156116e85750600a54640100000000900460ff16155b611773576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e27742062757920626563617573652073616c65206973206e6f7420616360448201527f74697665000000000000000000000000000000000000000000000000000000006064820152608401610b2e565b600a5460009081908190819060ff1615611839576040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015260009060340160405160208183030381529060405280519060200120905061181488888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050612f89565b945066b1a2bc2ec5000093506001925061183160c861022b613f74565b915050611851565b506001925067013b7b21280e00009150600a90506115b35b83801561186657506118638584613ef4565b34145b6118cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536f72727920796f752063616e2774206d696e74207269676874206e6f7700006044820152606401610b2e565b6001851015611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f75736c657373207472616e73616374696f6e20746f206d696e74207a65726f006044820152606401610b2e565b600154600054829190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0161196d9087613f74565b11156119d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f63617020726561636865640000000000000000000000000000000000000000006044820152606401610b2e565b3360009081526009602052604090205482906119f590879060ff16613f74565b1115611a5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4f7574206f66206c696d697400000000000000000000000000000000000000006044820152606401610b2e565b3360009081526009602052604081208054879290611a7f90849060ff16613f8c565b92506101000a81548160ff021916908360ff160217905550611aa7611aa13390565b86612f6f565b50505050505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314611b31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a5462010000900460ff1615611ba4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f616c72656164792072657665616c6564000000000000000000000000000000006044820152606401610b2e565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff1662010000179055805161119b90600b9060208401906138b3565b60085473ffffffffffffffffffffffffffffffffffffffff163314611c65576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b73ffffffffffffffffffffffffffffffffffffffff8116611ce2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f43616e27742075736520626c61636b20686f6c650000000000000000000000006044820152606401610b2e565b600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000611d3482612f9f565b5192915050565b600073ffffffffffffffffffffffffffffffffffffffff8216611d8a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b60085473ffffffffffffffffffffffffffffffffffffffff163314611e3e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b611484600061317a565b60085473ffffffffffffffffffffffffffffffffffffffff163314611ec9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a546301000000900460ff1615611f3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f436f6c6c656374696f6e206c6f636b65640000000000000000000000000000006044820152606401610b2e565b6114846131f1565b60606000611f5283611d3b565b905080600003611f765760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611f9157611f91613b07565b604051908082528060200260200182016040528015611fba578160200160208202803683370190505b506001546000805492935091037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019050600060015b828111612070578673ffffffffffffffffffffffffffffffffffffffff1661201782611d29565b73ffffffffffffffffffffffffffffffffffffffff160361205e578084838151811061204557612045613fb1565b60209081029190910101528161205a81613fe0565b9250505b8061206881613fe0565b915050611ff0565b509195945050505050565b50919050565b606060038054610be890613e78565b3373ffffffffffffffffffffffffffffffffffffffff8316036120df576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60085473ffffffffffffffffffffffffffffffffffffffff1633146121f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a546301000000900460ff161561226b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f436f6c6c656374696f6e206c6f636b65640000000000000000000000000000006044820152606401610b2e565b600a5460ff161561229f57600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055565b6122d88484846129e4565b73ffffffffffffffffffffffffffffffffffffffff83163b151580156123075750612305848484846132dd565b155b1561233e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c805461235190613e78565b80601f016020809104026020016040519081016040528092919081815260200182805461237d90613e78565b80156123ca5780601f1061239f576101008083540402835291602001916123ca565b820191906000526020600020905b8154815290600101906020018083116123ad57829003601f168201915b505050505081565b600b805461235190613e78565b60606123ea82612911565b612450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5552495175657279466f724e6f6e6578697374656e74546f6b656e00000000006044820152606401610b2e565b600a5462010000900460ff1615156001036124d857600061247083613457565b90506124ac60408051808201909152600781527f697066733a2f2f00000000000000000000000000000000000000000000000000602082015290565b600b826040516020016124c1939291906140e8565b604051602081830303815290604052915050919050565b60408051808201909152600781527f697066733a2f2f000000000000000000000000000000000000000000000000006020820152600b60405160200161251f929190614175565b6040516020818303038152906040529050919050565b919050565b60085473ffffffffffffffffffffffffffffffffffffffff1633146125bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b600a546301000000900460ff161561262f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f436f6c6c656374696f6e206c6f636b65640000000000000000000000000000006044820152606401610b2e565b815161264290600c9060208501906138b3565b50600e5550565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606083901b166020820152600090819060340160405160208183030381529060405280519060200120905060006126db86868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150859050612f89565b9695505050505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314612766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2e565b73ffffffffffffffffffffffffffffffffffffffff8116612809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b2e565b6113848161317a565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806128c157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610aab57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610aab565b600081600111158015612925575060005482105b8015610aab5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006129ef82612f9f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a5a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff86161480612a855750612a8585336109fa565b80612aad575033612a9584610c6b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612ae6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8416612b33576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b3f60008487612963565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021783558701808452922080549193909116612cb6576000548214612cb6578054602086015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090911673ffffffffffffffffffffffffffffffffffffffff8a16171781555b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80471015612d86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b2e565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114612de0576040519150601f19603f3d011682016040523d82523d6000602084013e612de5565b606091505b5050905080610db6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b2e565b60085474010000000000000000000000000000000000000000900460ff16612efa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610b2e565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b61119b82826040518060200160405280600081525061358c565b600082612f968584613599565b14949350505050565b60408051606081018252600080825260208201819052918101919091528180600111158015612fcf575060005481105b15613148576000818152600460209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff8116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff1615159181018290529061314657805173ffffffffffffffffffffffffffffffffffffffff1615613087579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600460209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff1615159281019290925215613141579392505050565b613087565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60085474010000000000000000000000000000000000000000900460ff1615613276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610b2e565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612f453390565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906133389033908990889088906004016141c2565b6020604051808303816000875af1925050508015613391575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261338e91810190614201565b60015b613408573d8080156133bf576040519150601f19603f3d011682016040523d82523d6000602084013e6133c4565b606091505b508051600003613400576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b60608160000361349a57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156134c457806134ae81613fe0565b91506134bd9050600a83613f60565b915061349e565b60008167ffffffffffffffff8111156134df576134df613b07565b6040519080825280601f01601f191660200182016040528015613509576020820181803683370190505b5090505b841561344f5761351e60018361421e565b915061352b600a86614235565b613536906030613f74565b60f81b81838151811061354b5761354b613fb1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613585600a86613f60565b945061350d565b610db68383836001613605565b600081815b8451811015611f6e5760008582815181106135bb576135bb613fb1565b602002602001015190508083116135e157600083815260208290526040902092506135f2565b600081815260208490526040902092505b50806135fd81613fe0565b91505061359e565b60005473ffffffffffffffffffffffffffffffffffffffff8516613655576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360000361368f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168c01811690920217909155858452600490925290912080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004290921691909102179055808085018380156137aa575073ffffffffffffffffffffffffffffffffffffffff87163b15155b15613858575b604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461380860008884806001019550886132dd565b61383e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036137b057826000541461385357600080fd5b6138aa565b5b60405160018301929073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203613859575b50600055612d15565b8280546138bf90613e78565b90600052602060002090601f0160209004810192826138e15760008555613927565b82601f106138fa57805160ff1916838001178555613927565b82800160010185558215613927579182015b8281111561392757825182559160200191906001019061390c565b50613933929150613937565b5090565b5b808211156139335760008155600101613938565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461138457600080fd5b60006020828403121561398c57600080fd5b81356139978161394c565b9392505050565b60005b838110156139b95781810151838201526020016139a1565b8381111561233e5750506000910152565b600081518084526139e281602086016020860161399e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061399760208301846139ca565b600060208284031215613a3957600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461253557600080fd5b60008060408385031215613a7757600080fd5b613a8083613a40565b946020939093013593505050565b600060208284031215613aa057600080fd5b61399782613a40565b600080600060608486031215613abe57600080fd5b613ac784613a40565b9250613ad560208501613a40565b9150604084013590509250925092565b60008060408385031215613af857600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115613b5157613b51613b07565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613b9757613b97613b07565b81604052809350858152868686011115613bb057600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112613bdb57600080fd5b61399783833560208501613b36565b600060208284031215613bfc57600080fd5b813567ffffffffffffffff811115613c1357600080fd5b61344f84828501613bca565b60008083601f840112613c3157600080fd5b50813567ffffffffffffffff811115613c4957600080fd5b6020830191508360208260051b8501011115610f9a57600080fd5b600080600060408486031215613c7957600080fd5b833567ffffffffffffffff811115613c9057600080fd5b613c9c86828701613c1f565b909790965060209590950135949350505050565b6020808252825182820181905260009190848201906040850190845b81811015613ce857835183529284019291840191600101613ccc565b50909695505050505050565b60008060408385031215613d0757600080fd5b613d1083613a40565b915060208301358015158114613d2557600080fd5b809150509250929050565b60008060008060808587031215613d4657600080fd5b613d4f85613a40565b9350613d5d60208601613a40565b925060408501359150606085013567ffffffffffffffff811115613d8057600080fd5b8501601f81018713613d9157600080fd5b613da087823560208401613b36565b91505092959194509250565b60008060408385031215613dbf57600080fd5b823567ffffffffffffffff811115613dd657600080fd5b613de285828601613bca565b95602094909401359450505050565b600080600060408486031215613e0657600080fd5b833567ffffffffffffffff811115613e1d57600080fd5b613e2986828701613c1f565b9094509250613e3c905060208501613a40565b90509250925092565b60008060408385031215613e5857600080fd5b613e6183613a40565b9150613e6f60208401613a40565b90509250929050565b600181811c90821680613e8c57607f821691505b60208210810361207b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f2c57613f2c613ec5565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613f6f57613f6f613f31565b500490565b60008219821115613f8757613f87613ec5565b500190565b600060ff821660ff84168060ff03821115613fa957613fa9613ec5565b019392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361401157614011613ec5565b5060010190565b8054600090600181811c908083168061403257607f831692505b6020808410820361406c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b81801561408057600181146140af576140dc565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008616895284890196506140dc565b60008881526020902060005b868110156140d45781548b8201529085019083016140bb565b505084890196505b50505050505092915050565b600084516140fa81846020890161399e565b61410681840186614018565b90507f2f4572633732315f446174615f000000000000000000000000000000000000008152835161413e81600d84016020880161399e565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600d929091019182015260120195945050505050565b6000835161418781846020880161399e565b61419381840185614018565b7f2f00000000000000000000000000000000000000000000000000000000000000815260010195945050505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526126db60808301846139ca565b60006020828403121561421357600080fd5b81516139978161394c565b60008282101561423057614230613ec5565b500390565b60008261424457614244613f31565b50069056fea264697066735822122027a819df28624ee02af9cbbe93f8f309a9be439ded1368347bbaf12e34d3af8464736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000213d8aec20acf4cdde2ce0417f4bc9dd309ab8578e1012ed71af2c555158d52dd10091a167a44121e1ccb36bbf20118ab960c7fb00000000000000000000000000000000000000000000000000000000000000095072696d6f626f7473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055052494d4f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6659556a4a384d314e56326e4a4c77464a63627a48597173416d313378454233704153446b54386d65506938000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d653443325a565877704635696563445a4d6444516945314e586b793542555359726837394572506d79547462000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Primobots
Arg [1] : _ticker (string): PRIMO
Arg [2] : _ipfsHash (string): QmfYUjJ8M1NV2nJLwFJcbzHYqsAm13xEB3pASDkT8mePi8
Arg [3] : _whitelistHash (string): Qme4C2ZVXwpF5iecDZMdDQiE1NXky5BUSYrh79ErPmyTtb
Arg [4] : _vaultAddress (address): 0x213D8aeC20Acf4CDde2CE0417f4bc9DD309ab857
Arg [5] : _merkleRoot (bytes32): 0x8e1012ed71af2c555158d52dd10091a167a44121e1ccb36bbf20118ab960c7fb

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [4] : 000000000000000000000000213d8aec20acf4cdde2ce0417f4bc9dd309ab857
Arg [5] : 8e1012ed71af2c555158d52dd10091a167a44121e1ccb36bbf20118ab960c7fb
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 5072696d6f626f74730000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 5052494d4f000000000000000000000000000000000000000000000000000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [11] : 516d6659556a4a384d314e56326e4a4c77464a63627a48597173416d31337845
Arg [12] : 4233704153446b54386d65506938000000000000000000000000000000000000
Arg [13] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [14] : 516d653443325a565877704635696563445a4d6444516945314e586b79354255
Arg [15] : 5359726837394572506d79547462000000000000000000000000000000000000


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.