ETH Price: $2,643.24 (+2.03%)

Token

Psilo (Psilo)
 

Overview

Max Total Supply

2,222 Psilo

Holders

729

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Psilo
0xb07c837226293f270c2533c1957e46fe0b9296c1
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Psilo

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : psilo.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721Enumerable.sol";

contract Psilo is ERC721Enumerable, Ownable {
    string  public              baseURI;
    
    address public              proxyRegistryAddress;
    address public              teamAddress;

    bytes32 public              mintlistMerkleRoot; //supplied to start the presale
    uint256 public              MAX_SUPPLY; //set to start the public sale

    uint256 public constant     MAX_PER_TX          = 11; // < used in comparison
    uint256 public constant     MAX_PER_WALLET      = 11; // < used in comparison  
    uint256 public constant     RESERVES            = 588; //Team mint amount
    uint256 public constant     priceInWei          = 0.08 ether;

    address public CrossmintAddress = 0xdAb1a1854214684acE522439684a145E62505233;

    mapping(address => bool) public projectProxy; 
    mapping(address => uint) public addressToMinted;

    constructor(
        string memory _baseURI, 
        address _proxyRegistryAddress, 
        address _teamAddress
    )
        ERC721("Psilo", "Psilo")
    {
        baseURI = _baseURI;
        proxyRegistryAddress = _proxyRegistryAddress;
        teamAddress = _teamAddress;
    }

    function setBaseURI(string memory _baseURI) public onlyOwner {
        baseURI = _baseURI;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return string(abi.encodePacked(baseURI, Strings.toString(_tokenId)));
    }

    function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner {
        //Rinkeby: 0xf57b2c51ded3a29e6891aba85459d600256cf317
        //Mainnet: 0xa5409ec958c83c3f309868babaca7c86dcb077c1
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    function flipProxyState(address proxyAddress) public onlyOwner {
        projectProxy[proxyAddress] = !projectProxy[proxyAddress];
    }

    function collectReserves() external onlyOwner {
        require(_owners.length == 0, 'Reserves already taken.');
        for(uint256 i; i < RESERVES; i++)
            _mint(_msgSender(), i);
    }

    function setMintlistMerkleRoot(bytes32 _mintlistMerkleRoot) external onlyOwner {
        mintlistMerkleRoot = _mintlistMerkleRoot;
    }

    function togglePublicSale(uint256 _MAX_SUPPLY) external onlyOwner {
        delete mintlistMerkleRoot;
        MAX_SUPPLY = _MAX_SUPPLY;
    }

    function _leaf(string memory allowance, string memory payload) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(payload, allowance));
    }

    function _verify(bytes32 leaf, bytes32[] memory proof, bytes32 merkleRoot) internal view returns (bool) {
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }

    function getAllowance(string memory allowance, bytes32[] calldata proof) public view returns (string memory) {
        string memory payload = string(abi.encodePacked(_msgSender()));
        require(_verify(_leaf(allowance, payload), proof, mintlistMerkleRoot), "Invalid Merkle Tree proof supplied.");
        return allowance;
    }

    function mintTo(address to, uint _count) external payable {
        require(_count < MAX_PER_TX, "Can't mint more than the max mint.");

        uint256 totalSupply = _owners.length;
        require(totalSupply + _count < MAX_SUPPLY, "Exceeds max supply.");
        require(msg.sender == CrossmintAddress, "This function is for Crossmint only.");
        require(_count * priceInWei == msg.value, "Invalid funds provided.");
        for(uint i; i < _count; i++) {
            _mint(to, totalSupply + i);
        }
    }

    function mintlistMint(uint256 count, uint256 allowance, bytes32[] calldata proof) public payable {
        string memory payload = string(abi.encodePacked(_msgSender()));
        require(_verify(_leaf(Strings.toString(allowance), payload), proof, mintlistMerkleRoot), "Invalid Merkle Tree proof supplied.");
        require(addressToMinted[_msgSender()] + count <= allowance, "Exceeds mintlist supply"); 
        require(count * priceInWei == msg.value, "Invalid funds provided.");

        addressToMinted[_msgSender()] += count;
        uint256 totalSupply = _owners.length;
        for(uint i; i < count; i++) { 
            _mint(_msgSender(), totalSupply + i);
        }
    }

    function publicMint(uint256 count) public payable {
        require(tx.origin == msg.sender);
        uint256 totalSupply = _owners.length;
        require(totalSupply + count < MAX_SUPPLY, "Exceeds max supply."); 
        require(addressToMinted[_msgSender()] + count < MAX_PER_WALLET, "Exceeds max wallet.");
        addressToMinted[_msgSender()] += count;
        require(count < MAX_PER_TX, "Exceeds max per transaction.");
        require(count * priceInWei == msg.value, "Invalid funds provided.");
        
        for(uint i; i < count; i++) { 
            _mint(_msgSender(), totalSupply + i);
        }
    }

    function burn(uint256 tokenId) public { 
        require(_isApprovedOrOwner(_msgSender(), tokenId), "Not approved to burn.");
        _burn(tokenId);
    }

    function withdraw() public  {
        (bool success, ) = teamAddress.call{value: address(this).balance}("");
        require(success, "Failed to send to Team.");
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) return new uint256[](0);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function batchTransferFrom(address _from, address _to, uint256[] memory _tokenIds) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            transferFrom(_from, _to, _tokenIds[i]);
        }
    }

    function batchSafeTransferFrom(address _from, address _to, uint256[] memory _tokenIds, bytes memory data_) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            safeTransferFrom(_from, _to, _tokenIds[i], data_);
        }
    }

    function isOwnerOf(address account, uint256[] calldata _tokenIds) external view returns (bool){
        for(uint256 i; i < _tokenIds.length; ++i ){
            if(_owners[_tokenIds[i]] != account)
                return false;
        }

        return true;
    }

    function isApprovedForAll(address _owner, address operator) public view override returns (bool) {
        OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == operator || projectProxy[operator]) return true;
        return super.isApprovedForAll(_owner, operator);
    }

    function _mint(address to, uint256 tokenId) internal virtual override {
        _owners.push(to);
        emit Transfer(address(0), to, tokenId);
    }
}

contract OwnableDelegateProxy { }
contract OpenSeaProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

File 2 of 14 : 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 14 : 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 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "./ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

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

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

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

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}

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

pragma solidity ^0.8.0;

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

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

File 6 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

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/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "./Address.sol";

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    
    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

        uint count;
        for( uint i; i < _owners.length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        return count;
    }

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

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

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

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

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

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

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 7 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 14 : 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 14 : 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 14 : 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 14 : 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 14 : 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 14 : Address.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;

library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"address","name":"_teamAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CrossmintAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToMinted","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"batchSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"allowance","type":"string"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"getAllowance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintlistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceInWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_mintlistMerkleRoot","type":"bytes32"}],"name":"setMintlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","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":[],"name":"teamAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273dab1a1854214684ace522439684a145e62505233600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b5060405162005b1f38038062005b1f83398181016040528101906200008c919062000403565b6040518060400160405280600581526020017f5073696c6f0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5073696c6f000000000000000000000000000000000000000000000000000000815250816000908051906020019062000110929190620002be565b50806001908051906020019062000129929190620002be565b5050506200014c62000140620001f060201b60201c565b620001f860201b60201c565b826006908051906020019062000164929190620002be565b5081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000650565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002cc9062000547565b90600052602060002090601f016020900481019282620002f057600085556200033c565b82601f106200030b57805160ff19168380011785556200033c565b828001600101855582156200033c579182015b828111156200033b5782518255916020019190600101906200031e565b5b5090506200034b91906200034f565b5090565b5b808211156200036a57600081600090555060010162000350565b5090565b6000620003856200037f84620004a7565b6200047e565b905082815260208101848484011115620003a457620003a362000616565b5b620003b184828562000511565b509392505050565b600081519050620003ca8162000636565b92915050565b600082601f830112620003e857620003e762000611565b5b8151620003fa8482602086016200036e565b91505092915050565b6000806000606084860312156200041f576200041e62000620565b5b600084015167ffffffffffffffff81111562000440576200043f6200061b565b5b6200044e86828701620003d0565b93505060206200046186828701620003b9565b92505060406200047486828701620003b9565b9150509250925092565b60006200048a6200049d565b90506200049882826200057d565b919050565b6000604051905090565b600067ffffffffffffffff821115620004c557620004c4620005e2565b5b620004d08262000625565b9050602081019050919050565b6000620004ea82620004f1565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200053157808201518184015260208101905062000514565b8381111562000541576000848401525b50505050565b600060028204905060018216806200056057607f821691505b60208210811415620005775762000576620005b3565b5b50919050565b620005888262000625565b810181811067ffffffffffffffff82111715620005aa57620005a9620005e2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200064181620004dd565b81146200064d57600080fd5b50565b6154bf80620006606000396000f3fe6080604052600436106102885760003560e01c80635bab26e21161015a578063b6920d90116100c1578063d26ea6c01161007a578063d26ea6c0146109cb578063e985e9c5146109f4578063f2fde38b14610a31578063f3993d1114610a5a578063f43a22dc14610a83578063f73c814b14610aae57610288565b8063b6920d90146108c8578063b88d4fde146108f3578063c23790401461091c578063c87b56dd14610947578063cd7c032614610984578063d012468f146109af57610288565b8063715018a611610113578063715018a6146107cc5780638cf7be7e146107e35780638da5cb5b1461080c57806395d89b41146108375780639ec00c9514610862578063a22cb4651461089f57610288565b80635bab26e2146106845780636352211e146106c157806366fddfa9146106fe5780636c0360eb1461073b5780636fe7b14b1461076657806370a082311461078f57610288565b80632f745c59116101fe578063438b6300116101b7578063438b63001461055f578063449a52f81461059c5780634d44660c146105b85780634f6ccce7146105f557806355f804b3146106325780635a4fee301461065b57610288565b80632f745c591461046357806332cb6b0c146104a05780633c8da588146104cb5780633ccfd60b146104f657806342842e0e1461050d57806342966c681461053657610288565b8063095ea7b311610250578063095ea7b3146103745780630f2cdd6c1461039d57806318160ddd146103c85780631c75f085146103f357806323b872dd1461041e5780632db115441461044757610288565b806301ffc9a71461028d578063029877b6146102ca57806306fdde03146102e1578063081812fc1461030c5780630922f9c514610349575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613b5c565b610ad7565b6040516102c19190614418565b60405180910390f35b3480156102d657600080fd5b506102df610b51565b005b3480156102ed57600080fd5b506102f6610c49565b604051610303919061444e565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190613ca8565b610cdb565b604051610340919061438f565b60405180910390f35b34801561035557600080fd5b5061035e610d60565b60405161036b91906147d0565b60405180910390f35b34801561038057600080fd5b5061039b60048036038101906103969190613aef565b610d66565b005b3480156103a957600080fd5b506103b2610e7e565b6040516103bf91906147d0565b60405180910390f35b3480156103d457600080fd5b506103dd610e83565b6040516103ea91906147d0565b60405180910390f35b3480156103ff57600080fd5b50610408610e90565b604051610415919061438f565b60405180910390f35b34801561042a57600080fd5b5061044560048036038101906104409190613979565b610eb6565b005b610461600480360381019061045c9190613ca8565b610f16565b005b34801561046f57600080fd5b5061048a60048036038101906104859190613aef565b61116f565b60405161049791906147d0565b60405180910390f35b3480156104ac57600080fd5b506104b56112b4565b6040516104c291906147d0565b60405180910390f35b3480156104d757600080fd5b506104e06112ba565b6040516104ed91906147d0565b60405180910390f35b34801561050257600080fd5b5061050b6112c6565b005b34801561051957600080fd5b50610534600480360381019061052f9190613979565b611397565b005b34801561054257600080fd5b5061055d60048036038101906105589190613ca8565b6113b7565b005b34801561056b57600080fd5b50610586600480360381019061058191906137fe565b611413565b60405161059391906143f6565b60405180910390f35b6105b660048036038101906105b19190613aef565b61151d565b005b3480156105c457600080fd5b506105df60048036038101906105da9190613a4f565b6116d7565b6040516105ec9190614418565b60405180910390f35b34801561060157600080fd5b5061061c60048036038101906106179190613ca8565b611798565b60405161062991906147d0565b60405180910390f35b34801561063e57600080fd5b5061065960048036038101906106549190613be3565b6117e9565b005b34801561066757600080fd5b50610682600480360381019061067d91906138da565b61187f565b005b34801561069057600080fd5b506106ab60048036038101906106a691906137fe565b6118cb565b6040516106b89190614418565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190613ca8565b6118eb565b6040516106f5919061438f565b60405180910390f35b34801561070a57600080fd5b5061072560048036038101906107209190613c2c565b6119a8565b604051610732919061444e565b60405180910390f35b34801561074757600080fd5b50610750611a76565b60405161075d919061444e565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190613b2f565b611b04565b005b34801561079b57600080fd5b506107b660048036038101906107b191906137fe565b611b8a565b6040516107c391906147d0565b60405180910390f35b3480156107d857600080fd5b506107e1611ca6565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190613ca8565b611d2e565b005b34801561081857600080fd5b50610821611dba565b60405161082e919061438f565b60405180910390f35b34801561084357600080fd5b5061084c611de4565b604051610859919061444e565b60405180910390f35b34801561086e57600080fd5b50610889600480360381019061088491906137fe565b611e76565b60405161089691906147d0565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c19190613aaf565b611e8e565b005b3480156108d457600080fd5b506108dd61200f565b6040516108ea9190614433565b60405180910390f35b3480156108ff57600080fd5b5061091a600480360381019061091591906139cc565b612015565b005b34801561092857600080fd5b50610931612077565b60405161093e919061438f565b60405180910390f35b34801561095357600080fd5b5061096e60048036038101906109699190613ca8565b61209d565b60405161097b919061444e565b60405180910390f35b34801561099057600080fd5b50610999612119565b6040516109a6919061438f565b60405180910390f35b6109c960048036038101906109c49190613cd5565b61213f565b005b3480156109d757600080fd5b506109f260048036038101906109ed91906137fe565b61239b565b005b348015610a0057600080fd5b50610a1b6004803603810190610a16919061382b565b61245b565b604051610a289190614418565b60405180910390f35b348015610a3d57600080fd5b50610a586004803603810190610a5391906137fe565b6125b1565b005b348015610a6657600080fd5b50610a816004803603810190610a7c919061386b565b6126a9565b005b348015610a8f57600080fd5b50610a986126f3565b604051610aa591906147d0565b60405180910390f35b348015610aba57600080fd5b50610ad56004803603810190610ad091906137fe565b6126f8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4a5750610b498261281b565b5b9050919050565b610b596128fd565b73ffffffffffffffffffffffffffffffffffffffff16610b77611dba565b73ffffffffffffffffffffffffffffffffffffffff1614610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc490614670565b60405180910390fd5b600060028054905014610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90614710565b60405180910390fd5b60005b61024c811015610c4657610c33610c2d6128fd565b82612905565b8080610c3e90614b84565b915050610c18565b50565b606060008054610c5890614b21565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8490614b21565b8015610cd15780601f10610ca657610100808354040283529160200191610cd1565b820191906000526020600020905b815481529060010190602001808311610cb457829003601f168201915b5050505050905090565b6000610ce6826129c8565b610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c90614630565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61024c81565b6000610d71826118eb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd9906146f0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e016128fd565b73ffffffffffffffffffffffffffffffffffffffff161480610e305750610e2f81610e2a6128fd565b61245b565b5b610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690614570565b60405180910390fd5b610e798383612a50565b505050565b600b81565b6000600280549050905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ec7610ec16128fd565b82612b09565b610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90614730565b60405180910390fd5b610f11838383612be7565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f4e57600080fd5b60006002805490509050600a548282610f67919061493a565b10610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e906146b0565b60405180910390fd5b600b82600d6000610fb66128fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ffb919061493a565b1061103b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611032906145d0565b60405180910390fd5b81600d60006110486128fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611091919061493a565b92505081905550600b82106110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290614750565b60405180910390fd5b3467011c37937e080000836110f091906149c1565b14611130576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611127906145f0565b60405180910390fd5b60005b8281101561116a576111576111466128fd565b8284611152919061493a565b612905565b808061116290614b84565b915050611133565b505050565b600061117a83611b8a565b82106111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b2906144b0565b60405180910390fd5b6000805b60028054905081101561127257600281815481106111e0576111df614caf565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561125f57838214156112505780925050506112ae565b818061125b90614b84565b9250505b808061126a90614b84565b9150506111bf565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a5906144b0565b60405180910390fd5b92915050565b600a5481565b67011c37937e08000081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161130e9061437a565b60006040518083038185875af1925050503d806000811461134b576040519150601f19603f3d011682016040523d82523d6000602084013e611350565b606091505b5050905080611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b906147b0565b60405180910390fd5b50565b6113b283838360405180602001604052806000815250612015565b505050565b6113c86113c26128fd565b82612b09565b611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe906146d0565b60405180910390fd5b61141081612da0565b50565b6060600061142083611b8a565b9050600081141561147d57600067ffffffffffffffff81111561144657611445614cde565b5b6040519080825280602002602001820160405280156114745781602001602082028036833780820191505090505b50915050611518565b60008167ffffffffffffffff81111561149957611498614cde565b5b6040519080825280602002602001820160405280156114c75781602001602082028036833780820191505090505b50905060005b82811015611511576114df858261116f565b8282815181106114f2576114f1614caf565b5b602002602001018181525050808061150990614b84565b9150506114cd565b5080925050505b919050565b600b8110611560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155790614790565b60405180910390fd5b60006002805490509050600a548282611579919061493a565b106115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b0906146b0565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090614490565b60405180910390fd5b3467011c37937e0800008361165e91906149c1565b1461169e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611695906145f0565b60405180910390fd5b60005b828110156116d1576116be8482846116b9919061493a565b612905565b80806116c990614b84565b9150506116a1565b50505050565b6000805b8383905081101561178b578473ffffffffffffffffffffffffffffffffffffffff16600285858481811061171257611711614caf565b5b905060200201358154811061172a57611729614caf565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461177a576000915050611791565b8061178490614b84565b90506116db565b50600190505b9392505050565b600060028054905082106117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d890614770565b60405180910390fd5b819050919050565b6117f16128fd565b73ffffffffffffffffffffffffffffffffffffffff1661180f611dba565b73ffffffffffffffffffffffffffffffffffffffff1614611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c90614670565b60405180910390fd5b806006908051906020019061187b92919061349e565b5050565b60005b82518110156118c4576118b185858584815181106118a3576118a2614caf565b5b602002602001015185612015565b80806118bc90614b84565b915050611882565b5050505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000806002838154811061190257611901614caf565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611996906145b0565b60405180910390fd5b80915050919050565b606060006119b46128fd565b6040516020016119c49190614317565b6040516020818303038152906040529050611a2c6119e28683612e82565b858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600954612eb5565b611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6290614470565b60405180910390fd5b849150509392505050565b60068054611a8390614b21565b80601f0160208091040260200160405190810160405280929190818152602001828054611aaf90614b21565b8015611afc5780601f10611ad157610100808354040283529160200191611afc565b820191906000526020600020905b815481529060010190602001808311611adf57829003601f168201915b505050505081565b611b0c6128fd565b73ffffffffffffffffffffffffffffffffffffffff16611b2a611dba565b73ffffffffffffffffffffffffffffffffffffffff1614611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7790614670565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf290614590565b60405180910390fd5b6000805b600280549050811015611c9c5760028181548110611c2057611c1f614caf565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c8b5781611c8890614b84565b91505b80611c9590614b84565b9050611bff565b5080915050919050565b611cae6128fd565b73ffffffffffffffffffffffffffffffffffffffff16611ccc611dba565b73ffffffffffffffffffffffffffffffffffffffff1614611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1990614670565b60405180910390fd5b611d2c6000612ecb565b565b611d366128fd565b73ffffffffffffffffffffffffffffffffffffffff16611d54611dba565b73ffffffffffffffffffffffffffffffffffffffff1614611daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da190614670565b60405180910390fd5b60096000905580600a8190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611df390614b21565b80601f0160208091040260200160405190810160405280929190818152602001828054611e1f90614b21565b8015611e6c5780601f10611e4157610100808354040283529160200191611e6c565b820191906000526020600020905b815481529060010190602001808311611e4f57829003601f168201915b5050505050905090565b600d6020528060005260406000206000915090505481565b611e966128fd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90614530565b60405180910390fd5b8060046000611f116128fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fbe6128fd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120039190614418565b60405180910390a35050565b60095481565b6120266120206128fd565b83612b09565b612065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205c90614730565b60405180910390fd5b61207184848484612f91565b50505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606120a8826129c8565b6120e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120de90614610565b60405180910390fd5b60066120f283612fed565b604051602001612103929190614356565b6040516020818303038152906040529050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006121496128fd565b6040516020016121599190614317565b60405160208183030381529060405290506121c961217f61217986612fed565b83612e82565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600954612eb5565b612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff90614470565b60405180910390fd5b8385600d60006122166128fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461225b919061493a565b111561229c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229390614650565b60405180910390fd5b3467011c37937e080000866122b191906149c1565b146122f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e8906145f0565b60405180910390fd5b84600d60006122fe6128fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612347919061493a565b925050819055506000600280549050905060005b868110156123925761237f61236e6128fd565b828461237a919061493a565b612905565b808061238a90614b84565b91505061235b565b50505050505050565b6123a36128fd565b73ffffffffffffffffffffffffffffffffffffffff166123c1611dba565b73ffffffffffffffffffffffffffffffffffffffff1614612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90614670565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016124d3919061438f565b60206040518083038186803b1580156124eb57600080fd5b505afa1580156124ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125239190613bb6565b73ffffffffffffffffffffffffffffffffffffffff16148061258e5750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561259d5760019150506125ab565b6125a7848461314e565b9150505b92915050565b6125b96128fd565b73ffffffffffffffffffffffffffffffffffffffff166125d7611dba565b73ffffffffffffffffffffffffffffffffffffffff161461262d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262490614670565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561269d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612694906144f0565b60405180910390fd5b6126a681612ecb565b50565b60005b81518110156126ed576126da84848484815181106126cd576126cc614caf565b5b6020026020010151610eb6565b80806126e590614b84565b9150506126ac565b50505050565b600b81565b6127006128fd565b73ffffffffffffffffffffffffffffffffffffffff1661271e611dba565b73ffffffffffffffffffffffffffffffffffffffff1614612774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276b90614670565b60405180910390fd5b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128e657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806128f657506128f5826131e2565b5b9050919050565b600033905090565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600060028054905082108015612a495750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110612a0557612a04614caf565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ac3836118eb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b14826129c8565b612b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4a90614550565b60405180910390fd5b6000612b5e836118eb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612bcd57508373ffffffffffffffffffffffffffffffffffffffff16612bb584610cdb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bde5750612bdd818561245b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c07826118eb565b73ffffffffffffffffffffffffffffffffffffffff1614612c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5490614690565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc490614510565b60405180910390fd5b612cd883838361324c565b612ce3600082612a50565b8160028281548110612cf857612cf7614caf565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612dab826118eb565b9050612db98160008461324c565b612dc4600083612a50565b600060028381548110612dda57612dd9614caf565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008183604051602001612e97929190614332565b60405160208183030381529060405280519060200120905092915050565b6000612ec2838386613251565b90509392505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f9c848484612be7565b612fa884848484613268565b612fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fde906144d0565b60405180910390fd5b50505050565b60606000821415613035576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613149565b600082905060005b6000821461306757808061305090614b84565b915050600a826130609190614990565b915061303d565b60008167ffffffffffffffff81111561308357613082614cde565b5b6040519080825280601f01601f1916602001820160405280156130b55781602001600182028036833780820191505090505b5090505b60008514613142576001826130ce9190614a1b565b9150600a856130dd9190614bf1565b60306130e9919061493a565b60f81b8183815181106130ff576130fe614caf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561313b9190614990565b94506130b9565b8093505050505b919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60008261325e85846133ff565b1490509392505050565b60006132898473ffffffffffffffffffffffffffffffffffffffff16613474565b156133f2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132b26128fd565b8786866040518563ffffffff1660e01b81526004016132d494939291906143aa565b602060405180830381600087803b1580156132ee57600080fd5b505af192505050801561331f57506040513d601f19601f8201168201806040525081019061331c9190613b89565b60015b6133a2573d806000811461334f576040519150601f19603f3d011682016040523d82523d6000602084013e613354565b606091505b5060008151141561339a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613391906144d0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133f7565b600190505b949350505050565b60008082905060005b845181101561346957600085828151811061342657613425614caf565b5b60200260200101519050808311613448576134418382613487565b9250613455565b6134528184613487565b92505b50808061346190614b84565b915050613408565b508091505092915050565b600080823b905060008111915050919050565b600082600052816020526040600020905092915050565b8280546134aa90614b21565b90600052602060002090601f0160209004810192826134cc5760008555613513565b82601f106134e557805160ff1916838001178555613513565b82800160010185558215613513579182015b828111156135125782518255916020019190600101906134f7565b5b5090506135209190613524565b5090565b5b8082111561353d576000816000905550600101613525565b5090565b600061355461354f84614810565b6147eb565b9050808382526020820190508285602086028201111561357757613576614d17565b5b60005b858110156135a7578161358d88826137e9565b84526020840193506020830192505060018101905061357a565b5050509392505050565b60006135c46135bf8461483c565b6147eb565b9050828152602081018484840111156135e0576135df614d1c565b5b6135eb848285614adf565b509392505050565b60006136066136018461486d565b6147eb565b90508281526020810184848401111561362257613621614d1c565b5b61362d848285614adf565b509392505050565b600081359050613644816153ff565b92915050565b60008083601f8401126136605761365f614d12565b5b8235905067ffffffffffffffff81111561367d5761367c614d0d565b5b60208301915083602082028301111561369957613698614d17565b5b9250929050565b60008083601f8401126136b6576136b5614d12565b5b8235905067ffffffffffffffff8111156136d3576136d2614d0d565b5b6020830191508360208202830111156136ef576136ee614d17565b5b9250929050565b600082601f83011261370b5761370a614d12565b5b813561371b848260208601613541565b91505092915050565b60008135905061373381615416565b92915050565b6000813590506137488161542d565b92915050565b60008135905061375d81615444565b92915050565b60008151905061377281615444565b92915050565b600082601f83011261378d5761378c614d12565b5b813561379d8482602086016135b1565b91505092915050565b6000815190506137b58161545b565b92915050565b600082601f8301126137d0576137cf614d12565b5b81356137e08482602086016135f3565b91505092915050565b6000813590506137f881615472565b92915050565b60006020828403121561381457613813614d26565b5b600061382284828501613635565b91505092915050565b6000806040838503121561384257613841614d26565b5b600061385085828601613635565b925050602061386185828601613635565b9150509250929050565b60008060006060848603121561388457613883614d26565b5b600061389286828701613635565b93505060206138a386828701613635565b925050604084013567ffffffffffffffff8111156138c4576138c3614d21565b5b6138d0868287016136f6565b9150509250925092565b600080600080608085870312156138f4576138f3614d26565b5b600061390287828801613635565b945050602061391387828801613635565b935050604085013567ffffffffffffffff81111561393457613933614d21565b5b613940878288016136f6565b925050606085013567ffffffffffffffff81111561396157613960614d21565b5b61396d87828801613778565b91505092959194509250565b60008060006060848603121561399257613991614d26565b5b60006139a086828701613635565b93505060206139b186828701613635565b92505060406139c2868287016137e9565b9150509250925092565b600080600080608085870312156139e6576139e5614d26565b5b60006139f487828801613635565b9450506020613a0587828801613635565b9350506040613a16878288016137e9565b925050606085013567ffffffffffffffff811115613a3757613a36614d21565b5b613a4387828801613778565b91505092959194509250565b600080600060408486031215613a6857613a67614d26565b5b6000613a7686828701613635565b935050602084013567ffffffffffffffff811115613a9757613a96614d21565b5b613aa3868287016136a0565b92509250509250925092565b60008060408385031215613ac657613ac5614d26565b5b6000613ad485828601613635565b9250506020613ae585828601613724565b9150509250929050565b60008060408385031215613b0657613b05614d26565b5b6000613b1485828601613635565b9250506020613b25858286016137e9565b9150509250929050565b600060208284031215613b4557613b44614d26565b5b6000613b5384828501613739565b91505092915050565b600060208284031215613b7257613b71614d26565b5b6000613b808482850161374e565b91505092915050565b600060208284031215613b9f57613b9e614d26565b5b6000613bad84828501613763565b91505092915050565b600060208284031215613bcc57613bcb614d26565b5b6000613bda848285016137a6565b91505092915050565b600060208284031215613bf957613bf8614d26565b5b600082013567ffffffffffffffff811115613c1757613c16614d21565b5b613c23848285016137bb565b91505092915050565b600080600060408486031215613c4557613c44614d26565b5b600084013567ffffffffffffffff811115613c6357613c62614d21565b5b613c6f868287016137bb565b935050602084013567ffffffffffffffff811115613c9057613c8f614d21565b5b613c9c8682870161364a565b92509250509250925092565b600060208284031215613cbe57613cbd614d26565b5b6000613ccc848285016137e9565b91505092915050565b60008060008060608587031215613cef57613cee614d26565b5b6000613cfd878288016137e9565b9450506020613d0e878288016137e9565b935050604085013567ffffffffffffffff811115613d2f57613d2e614d21565b5b613d3b8782880161364a565b925092505092959194509250565b6000613d5583836142f9565b60208301905092915050565b613d6a81614a4f565b82525050565b613d81613d7c82614a4f565b614bcd565b82525050565b6000613d92826148c3565b613d9c81856148f1565b9350613da78361489e565b8060005b83811015613dd8578151613dbf8882613d49565b9750613dca836148e4565b925050600181019050613dab565b5085935050505092915050565b613dee81614a61565b82525050565b613dfd81614a6d565b82525050565b6000613e0e826148ce565b613e188185614902565b9350613e28818560208601614aee565b613e3181614d2b565b840191505092915050565b6000613e47826148d9565b613e51818561491e565b9350613e61818560208601614aee565b613e6a81614d2b565b840191505092915050565b6000613e80826148d9565b613e8a818561492f565b9350613e9a818560208601614aee565b80840191505092915050565b60008154613eb381614b21565b613ebd818661492f565b94506001821660008114613ed85760018114613ee957613f1c565b60ff19831686528186019350613f1c565b613ef2856148ae565b60005b83811015613f1457815481890152600182019150602081019050613ef5565b838801955050505b50505092915050565b6000613f3260238361491e565b9150613f3d82614d49565b604082019050919050565b6000613f5560248361491e565b9150613f6082614d98565b604082019050919050565b6000613f78602b8361491e565b9150613f8382614de7565b604082019050919050565b6000613f9b60328361491e565b9150613fa682614e36565b604082019050919050565b6000613fbe60268361491e565b9150613fc982614e85565b604082019050919050565b6000613fe160248361491e565b9150613fec82614ed4565b604082019050919050565b600061400460198361491e565b915061400f82614f23565b602082019050919050565b6000614027602c8361491e565b915061403282614f4c565b604082019050919050565b600061404a60388361491e565b915061405582614f9b565b604082019050919050565b600061406d602a8361491e565b915061407882614fea565b604082019050919050565b600061409060298361491e565b915061409b82615039565b604082019050919050565b60006140b360138361491e565b91506140be82615088565b602082019050919050565b60006140d660178361491e565b91506140e1826150b1565b602082019050919050565b60006140f960158361491e565b9150614104826150da565b602082019050919050565b600061411c602c8361491e565b915061412782615103565b604082019050919050565b600061413f60178361491e565b915061414a82615152565b602082019050919050565b600061416260208361491e565b915061416d8261517b565b602082019050919050565b600061418560298361491e565b9150614190826151a4565b604082019050919050565b60006141a860138361491e565b91506141b3826151f3565b602082019050919050565b60006141cb60158361491e565b91506141d68261521c565b602082019050919050565b60006141ee60218361491e565b91506141f982615245565b604082019050919050565b600061421160178361491e565b915061421c82615294565b602082019050919050565b6000614234600083614913565b915061423f826152bd565b600082019050919050565b600061425760318361491e565b9150614262826152c0565b604082019050919050565b600061427a601c8361491e565b91506142858261530f565b602082019050919050565b600061429d602c8361491e565b91506142a882615338565b604082019050919050565b60006142c060228361491e565b91506142cb82615387565b604082019050919050565b60006142e360178361491e565b91506142ee826153d6565b602082019050919050565b61430281614ad5565b82525050565b61431181614ad5565b82525050565b60006143238284613d70565b60148201915081905092915050565b600061433e8285613e75565b915061434a8284613e75565b91508190509392505050565b60006143628285613ea6565b915061436e8284613e75565b91508190509392505050565b600061438582614227565b9150819050919050565b60006020820190506143a46000830184613d61565b92915050565b60006080820190506143bf6000830187613d61565b6143cc6020830186613d61565b6143d96040830185614308565b81810360608301526143eb8184613e03565b905095945050505050565b600060208201905081810360008301526144108184613d87565b905092915050565b600060208201905061442d6000830184613de5565b92915050565b60006020820190506144486000830184613df4565b92915050565b600060208201905081810360008301526144688184613e3c565b905092915050565b6000602082019050818103600083015261448981613f25565b9050919050565b600060208201905081810360008301526144a981613f48565b9050919050565b600060208201905081810360008301526144c981613f6b565b9050919050565b600060208201905081810360008301526144e981613f8e565b9050919050565b6000602082019050818103600083015261450981613fb1565b9050919050565b6000602082019050818103600083015261452981613fd4565b9050919050565b6000602082019050818103600083015261454981613ff7565b9050919050565b600060208201905081810360008301526145698161401a565b9050919050565b600060208201905081810360008301526145898161403d565b9050919050565b600060208201905081810360008301526145a981614060565b9050919050565b600060208201905081810360008301526145c981614083565b9050919050565b600060208201905081810360008301526145e9816140a6565b9050919050565b60006020820190508181036000830152614609816140c9565b9050919050565b60006020820190508181036000830152614629816140ec565b9050919050565b600060208201905081810360008301526146498161410f565b9050919050565b6000602082019050818103600083015261466981614132565b9050919050565b6000602082019050818103600083015261468981614155565b9050919050565b600060208201905081810360008301526146a981614178565b9050919050565b600060208201905081810360008301526146c98161419b565b9050919050565b600060208201905081810360008301526146e9816141be565b9050919050565b60006020820190508181036000830152614709816141e1565b9050919050565b6000602082019050818103600083015261472981614204565b9050919050565b600060208201905081810360008301526147498161424a565b9050919050565b600060208201905081810360008301526147698161426d565b9050919050565b6000602082019050818103600083015261478981614290565b9050919050565b600060208201905081810360008301526147a9816142b3565b9050919050565b600060208201905081810360008301526147c9816142d6565b9050919050565b60006020820190506147e56000830184614308565b92915050565b60006147f5614806565b90506148018282614b53565b919050565b6000604051905090565b600067ffffffffffffffff82111561482b5761482a614cde565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561485757614856614cde565b5b61486082614d2b565b9050602081019050919050565b600067ffffffffffffffff82111561488857614887614cde565b5b61489182614d2b565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061494582614ad5565b915061495083614ad5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561498557614984614c22565b5b828201905092915050565b600061499b82614ad5565b91506149a683614ad5565b9250826149b6576149b5614c51565b5b828204905092915050565b60006149cc82614ad5565b91506149d783614ad5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a1057614a0f614c22565b5b828202905092915050565b6000614a2682614ad5565b9150614a3183614ad5565b925082821015614a4457614a43614c22565b5b828203905092915050565b6000614a5a82614ab5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614aae82614a4f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614b0c578082015181840152602081019050614af1565b83811115614b1b576000848401525b50505050565b60006002820490506001821680614b3957607f821691505b60208210811415614b4d57614b4c614c80565b5b50919050565b614b5c82614d2b565b810181811067ffffffffffffffff82111715614b7b57614b7a614cde565b5b80604052505050565b6000614b8f82614ad5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bc257614bc1614c22565b5b600182019050919050565b6000614bd882614bdf565b9050919050565b6000614bea82614d3c565b9050919050565b6000614bfc82614ad5565b9150614c0783614ad5565b925082614c1757614c16614c51565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e76616c6964204d65726b6c6520547265652070726f6f6620737570706c6960008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b7f546869732066756e6374696f6e20697320666f722043726f73736d696e74206f60008201527f6e6c792e00000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d61782077616c6c65742e00000000000000000000000000600082015250565b7f496e76616c69642066756e64732070726f76696465642e000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45786365656473206d696e746c69737420737570706c79000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b7f4e6f7420617070726f76656420746f206275726e2e0000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f526573657276657320616c72656164792074616b656e2e000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265207468616e20746865206d6178206d696e60008201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e6420746f205465616d2e000000000000000000600082015250565b61540881614a4f565b811461541357600080fd5b50565b61541f81614a61565b811461542a57600080fd5b50565b61543681614a6d565b811461544157600080fd5b50565b61544d81614a77565b811461545857600080fd5b50565b61546481614aa3565b811461546f57600080fd5b50565b61547b81614ad5565b811461548657600080fd5b5056fea2646970667358221220e635aa6e3b5b1519cf41b61b33e8891ad206b9d3741f82292f0b53446bf8391564736f6c634300080700330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000005fa0cae22ea05795c8509c5e19e31c2ffba1e417000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f7073696c6f2e6d7970696e6174612e636c6f75642f697066732f516d53675947335276585754453941724252367a58626b7633585362545a63384a4d53654d4a74516941373276422f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c80635bab26e21161015a578063b6920d90116100c1578063d26ea6c01161007a578063d26ea6c0146109cb578063e985e9c5146109f4578063f2fde38b14610a31578063f3993d1114610a5a578063f43a22dc14610a83578063f73c814b14610aae57610288565b8063b6920d90146108c8578063b88d4fde146108f3578063c23790401461091c578063c87b56dd14610947578063cd7c032614610984578063d012468f146109af57610288565b8063715018a611610113578063715018a6146107cc5780638cf7be7e146107e35780638da5cb5b1461080c57806395d89b41146108375780639ec00c9514610862578063a22cb4651461089f57610288565b80635bab26e2146106845780636352211e146106c157806366fddfa9146106fe5780636c0360eb1461073b5780636fe7b14b1461076657806370a082311461078f57610288565b80632f745c59116101fe578063438b6300116101b7578063438b63001461055f578063449a52f81461059c5780634d44660c146105b85780634f6ccce7146105f557806355f804b3146106325780635a4fee301461065b57610288565b80632f745c591461046357806332cb6b0c146104a05780633c8da588146104cb5780633ccfd60b146104f657806342842e0e1461050d57806342966c681461053657610288565b8063095ea7b311610250578063095ea7b3146103745780630f2cdd6c1461039d57806318160ddd146103c85780631c75f085146103f357806323b872dd1461041e5780632db115441461044757610288565b806301ffc9a71461028d578063029877b6146102ca57806306fdde03146102e1578063081812fc1461030c5780630922f9c514610349575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613b5c565b610ad7565b6040516102c19190614418565b60405180910390f35b3480156102d657600080fd5b506102df610b51565b005b3480156102ed57600080fd5b506102f6610c49565b604051610303919061444e565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190613ca8565b610cdb565b604051610340919061438f565b60405180910390f35b34801561035557600080fd5b5061035e610d60565b60405161036b91906147d0565b60405180910390f35b34801561038057600080fd5b5061039b60048036038101906103969190613aef565b610d66565b005b3480156103a957600080fd5b506103b2610e7e565b6040516103bf91906147d0565b60405180910390f35b3480156103d457600080fd5b506103dd610e83565b6040516103ea91906147d0565b60405180910390f35b3480156103ff57600080fd5b50610408610e90565b604051610415919061438f565b60405180910390f35b34801561042a57600080fd5b5061044560048036038101906104409190613979565b610eb6565b005b610461600480360381019061045c9190613ca8565b610f16565b005b34801561046f57600080fd5b5061048a60048036038101906104859190613aef565b61116f565b60405161049791906147d0565b60405180910390f35b3480156104ac57600080fd5b506104b56112b4565b6040516104c291906147d0565b60405180910390f35b3480156104d757600080fd5b506104e06112ba565b6040516104ed91906147d0565b60405180910390f35b34801561050257600080fd5b5061050b6112c6565b005b34801561051957600080fd5b50610534600480360381019061052f9190613979565b611397565b005b34801561054257600080fd5b5061055d60048036038101906105589190613ca8565b6113b7565b005b34801561056b57600080fd5b50610586600480360381019061058191906137fe565b611413565b60405161059391906143f6565b60405180910390f35b6105b660048036038101906105b19190613aef565b61151d565b005b3480156105c457600080fd5b506105df60048036038101906105da9190613a4f565b6116d7565b6040516105ec9190614418565b60405180910390f35b34801561060157600080fd5b5061061c60048036038101906106179190613ca8565b611798565b60405161062991906147d0565b60405180910390f35b34801561063e57600080fd5b5061065960048036038101906106549190613be3565b6117e9565b005b34801561066757600080fd5b50610682600480360381019061067d91906138da565b61187f565b005b34801561069057600080fd5b506106ab60048036038101906106a691906137fe565b6118cb565b6040516106b89190614418565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190613ca8565b6118eb565b6040516106f5919061438f565b60405180910390f35b34801561070a57600080fd5b5061072560048036038101906107209190613c2c565b6119a8565b604051610732919061444e565b60405180910390f35b34801561074757600080fd5b50610750611a76565b60405161075d919061444e565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190613b2f565b611b04565b005b34801561079b57600080fd5b506107b660048036038101906107b191906137fe565b611b8a565b6040516107c391906147d0565b60405180910390f35b3480156107d857600080fd5b506107e1611ca6565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190613ca8565b611d2e565b005b34801561081857600080fd5b50610821611dba565b60405161082e919061438f565b60405180910390f35b34801561084357600080fd5b5061084c611de4565b604051610859919061444e565b60405180910390f35b34801561086e57600080fd5b50610889600480360381019061088491906137fe565b611e76565b60405161089691906147d0565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c19190613aaf565b611e8e565b005b3480156108d457600080fd5b506108dd61200f565b6040516108ea9190614433565b60405180910390f35b3480156108ff57600080fd5b5061091a600480360381019061091591906139cc565b612015565b005b34801561092857600080fd5b50610931612077565b60405161093e919061438f565b60405180910390f35b34801561095357600080fd5b5061096e60048036038101906109699190613ca8565b61209d565b60405161097b919061444e565b60405180910390f35b34801561099057600080fd5b50610999612119565b6040516109a6919061438f565b60405180910390f35b6109c960048036038101906109c49190613cd5565b61213f565b005b3480156109d757600080fd5b506109f260048036038101906109ed91906137fe565b61239b565b005b348015610a0057600080fd5b50610a1b6004803603810190610a16919061382b565b61245b565b604051610a289190614418565b60405180910390f35b348015610a3d57600080fd5b50610a586004803603810190610a5391906137fe565b6125b1565b005b348015610a6657600080fd5b50610a816004803603810190610a7c919061386b565b6126a9565b005b348015610a8f57600080fd5b50610a986126f3565b604051610aa591906147d0565b60405180910390f35b348015610aba57600080fd5b50610ad56004803603810190610ad091906137fe565b6126f8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4a5750610b498261281b565b5b9050919050565b610b596128fd565b73ffffffffffffffffffffffffffffffffffffffff16610b77611dba565b73ffffffffffffffffffffffffffffffffffffffff1614610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc490614670565b60405180910390fd5b600060028054905014610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90614710565b60405180910390fd5b60005b61024c811015610c4657610c33610c2d6128fd565b82612905565b8080610c3e90614b84565b915050610c18565b50565b606060008054610c5890614b21565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8490614b21565b8015610cd15780601f10610ca657610100808354040283529160200191610cd1565b820191906000526020600020905b815481529060010190602001808311610cb457829003601f168201915b5050505050905090565b6000610ce6826129c8565b610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c90614630565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61024c81565b6000610d71826118eb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd9906146f0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e016128fd565b73ffffffffffffffffffffffffffffffffffffffff161480610e305750610e2f81610e2a6128fd565b61245b565b5b610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690614570565b60405180910390fd5b610e798383612a50565b505050565b600b81565b6000600280549050905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ec7610ec16128fd565b82612b09565b610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90614730565b60405180910390fd5b610f11838383612be7565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f4e57600080fd5b60006002805490509050600a548282610f67919061493a565b10610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e906146b0565b60405180910390fd5b600b82600d6000610fb66128fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ffb919061493a565b1061103b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611032906145d0565b60405180910390fd5b81600d60006110486128fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611091919061493a565b92505081905550600b82106110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290614750565b60405180910390fd5b3467011c37937e080000836110f091906149c1565b14611130576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611127906145f0565b60405180910390fd5b60005b8281101561116a576111576111466128fd565b8284611152919061493a565b612905565b808061116290614b84565b915050611133565b505050565b600061117a83611b8a565b82106111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b2906144b0565b60405180910390fd5b6000805b60028054905081101561127257600281815481106111e0576111df614caf565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561125f57838214156112505780925050506112ae565b818061125b90614b84565b9250505b808061126a90614b84565b9150506111bf565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a5906144b0565b60405180910390fd5b92915050565b600a5481565b67011c37937e08000081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161130e9061437a565b60006040518083038185875af1925050503d806000811461134b576040519150601f19603f3d011682016040523d82523d6000602084013e611350565b606091505b5050905080611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b906147b0565b60405180910390fd5b50565b6113b283838360405180602001604052806000815250612015565b505050565b6113c86113c26128fd565b82612b09565b611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe906146d0565b60405180910390fd5b61141081612da0565b50565b6060600061142083611b8a565b9050600081141561147d57600067ffffffffffffffff81111561144657611445614cde565b5b6040519080825280602002602001820160405280156114745781602001602082028036833780820191505090505b50915050611518565b60008167ffffffffffffffff81111561149957611498614cde565b5b6040519080825280602002602001820160405280156114c75781602001602082028036833780820191505090505b50905060005b82811015611511576114df858261116f565b8282815181106114f2576114f1614caf565b5b602002602001018181525050808061150990614b84565b9150506114cd565b5080925050505b919050565b600b8110611560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155790614790565b60405180910390fd5b60006002805490509050600a548282611579919061493a565b106115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b0906146b0565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090614490565b60405180910390fd5b3467011c37937e0800008361165e91906149c1565b1461169e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611695906145f0565b60405180910390fd5b60005b828110156116d1576116be8482846116b9919061493a565b612905565b80806116c990614b84565b9150506116a1565b50505050565b6000805b8383905081101561178b578473ffffffffffffffffffffffffffffffffffffffff16600285858481811061171257611711614caf565b5b905060200201358154811061172a57611729614caf565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461177a576000915050611791565b8061178490614b84565b90506116db565b50600190505b9392505050565b600060028054905082106117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d890614770565b60405180910390fd5b819050919050565b6117f16128fd565b73ffffffffffffffffffffffffffffffffffffffff1661180f611dba565b73ffffffffffffffffffffffffffffffffffffffff1614611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c90614670565b60405180910390fd5b806006908051906020019061187b92919061349e565b5050565b60005b82518110156118c4576118b185858584815181106118a3576118a2614caf565b5b602002602001015185612015565b80806118bc90614b84565b915050611882565b5050505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000806002838154811061190257611901614caf565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611996906145b0565b60405180910390fd5b80915050919050565b606060006119b46128fd565b6040516020016119c49190614317565b6040516020818303038152906040529050611a2c6119e28683612e82565b858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600954612eb5565b611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6290614470565b60405180910390fd5b849150509392505050565b60068054611a8390614b21565b80601f0160208091040260200160405190810160405280929190818152602001828054611aaf90614b21565b8015611afc5780601f10611ad157610100808354040283529160200191611afc565b820191906000526020600020905b815481529060010190602001808311611adf57829003601f168201915b505050505081565b611b0c6128fd565b73ffffffffffffffffffffffffffffffffffffffff16611b2a611dba565b73ffffffffffffffffffffffffffffffffffffffff1614611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7790614670565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf290614590565b60405180910390fd5b6000805b600280549050811015611c9c5760028181548110611c2057611c1f614caf565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c8b5781611c8890614b84565b91505b80611c9590614b84565b9050611bff565b5080915050919050565b611cae6128fd565b73ffffffffffffffffffffffffffffffffffffffff16611ccc611dba565b73ffffffffffffffffffffffffffffffffffffffff1614611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1990614670565b60405180910390fd5b611d2c6000612ecb565b565b611d366128fd565b73ffffffffffffffffffffffffffffffffffffffff16611d54611dba565b73ffffffffffffffffffffffffffffffffffffffff1614611daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da190614670565b60405180910390fd5b60096000905580600a8190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611df390614b21565b80601f0160208091040260200160405190810160405280929190818152602001828054611e1f90614b21565b8015611e6c5780601f10611e4157610100808354040283529160200191611e6c565b820191906000526020600020905b815481529060010190602001808311611e4f57829003601f168201915b5050505050905090565b600d6020528060005260406000206000915090505481565b611e966128fd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90614530565b60405180910390fd5b8060046000611f116128fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fbe6128fd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120039190614418565b60405180910390a35050565b60095481565b6120266120206128fd565b83612b09565b612065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205c90614730565b60405180910390fd5b61207184848484612f91565b50505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606120a8826129c8565b6120e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120de90614610565b60405180910390fd5b60066120f283612fed565b604051602001612103929190614356565b6040516020818303038152906040529050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006121496128fd565b6040516020016121599190614317565b60405160208183030381529060405290506121c961217f61217986612fed565b83612e82565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600954612eb5565b612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff90614470565b60405180910390fd5b8385600d60006122166128fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461225b919061493a565b111561229c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229390614650565b60405180910390fd5b3467011c37937e080000866122b191906149c1565b146122f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e8906145f0565b60405180910390fd5b84600d60006122fe6128fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612347919061493a565b925050819055506000600280549050905060005b868110156123925761237f61236e6128fd565b828461237a919061493a565b612905565b808061238a90614b84565b91505061235b565b50505050505050565b6123a36128fd565b73ffffffffffffffffffffffffffffffffffffffff166123c1611dba565b73ffffffffffffffffffffffffffffffffffffffff1614612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90614670565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016124d3919061438f565b60206040518083038186803b1580156124eb57600080fd5b505afa1580156124ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125239190613bb6565b73ffffffffffffffffffffffffffffffffffffffff16148061258e5750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561259d5760019150506125ab565b6125a7848461314e565b9150505b92915050565b6125b96128fd565b73ffffffffffffffffffffffffffffffffffffffff166125d7611dba565b73ffffffffffffffffffffffffffffffffffffffff161461262d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262490614670565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561269d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612694906144f0565b60405180910390fd5b6126a681612ecb565b50565b60005b81518110156126ed576126da84848484815181106126cd576126cc614caf565b5b6020026020010151610eb6565b80806126e590614b84565b9150506126ac565b50505050565b600b81565b6127006128fd565b73ffffffffffffffffffffffffffffffffffffffff1661271e611dba565b73ffffffffffffffffffffffffffffffffffffffff1614612774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276b90614670565b60405180910390fd5b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128e657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806128f657506128f5826131e2565b5b9050919050565b600033905090565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600060028054905082108015612a495750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110612a0557612a04614caf565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ac3836118eb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b14826129c8565b612b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4a90614550565b60405180910390fd5b6000612b5e836118eb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612bcd57508373ffffffffffffffffffffffffffffffffffffffff16612bb584610cdb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bde5750612bdd818561245b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c07826118eb565b73ffffffffffffffffffffffffffffffffffffffff1614612c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5490614690565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc490614510565b60405180910390fd5b612cd883838361324c565b612ce3600082612a50565b8160028281548110612cf857612cf7614caf565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612dab826118eb565b9050612db98160008461324c565b612dc4600083612a50565b600060028381548110612dda57612dd9614caf565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008183604051602001612e97929190614332565b60405160208183030381529060405280519060200120905092915050565b6000612ec2838386613251565b90509392505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f9c848484612be7565b612fa884848484613268565b612fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fde906144d0565b60405180910390fd5b50505050565b60606000821415613035576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613149565b600082905060005b6000821461306757808061305090614b84565b915050600a826130609190614990565b915061303d565b60008167ffffffffffffffff81111561308357613082614cde565b5b6040519080825280601f01601f1916602001820160405280156130b55781602001600182028036833780820191505090505b5090505b60008514613142576001826130ce9190614a1b565b9150600a856130dd9190614bf1565b60306130e9919061493a565b60f81b8183815181106130ff576130fe614caf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561313b9190614990565b94506130b9565b8093505050505b919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60008261325e85846133ff565b1490509392505050565b60006132898473ffffffffffffffffffffffffffffffffffffffff16613474565b156133f2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132b26128fd565b8786866040518563ffffffff1660e01b81526004016132d494939291906143aa565b602060405180830381600087803b1580156132ee57600080fd5b505af192505050801561331f57506040513d601f19601f8201168201806040525081019061331c9190613b89565b60015b6133a2573d806000811461334f576040519150601f19603f3d011682016040523d82523d6000602084013e613354565b606091505b5060008151141561339a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613391906144d0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133f7565b600190505b949350505050565b60008082905060005b845181101561346957600085828151811061342657613425614caf565b5b60200260200101519050808311613448576134418382613487565b9250613455565b6134528184613487565b92505b50808061346190614b84565b915050613408565b508091505092915050565b600080823b905060008111915050919050565b600082600052816020526040600020905092915050565b8280546134aa90614b21565b90600052602060002090601f0160209004810192826134cc5760008555613513565b82601f106134e557805160ff1916838001178555613513565b82800160010185558215613513579182015b828111156135125782518255916020019190600101906134f7565b5b5090506135209190613524565b5090565b5b8082111561353d576000816000905550600101613525565b5090565b600061355461354f84614810565b6147eb565b9050808382526020820190508285602086028201111561357757613576614d17565b5b60005b858110156135a7578161358d88826137e9565b84526020840193506020830192505060018101905061357a565b5050509392505050565b60006135c46135bf8461483c565b6147eb565b9050828152602081018484840111156135e0576135df614d1c565b5b6135eb848285614adf565b509392505050565b60006136066136018461486d565b6147eb565b90508281526020810184848401111561362257613621614d1c565b5b61362d848285614adf565b509392505050565b600081359050613644816153ff565b92915050565b60008083601f8401126136605761365f614d12565b5b8235905067ffffffffffffffff81111561367d5761367c614d0d565b5b60208301915083602082028301111561369957613698614d17565b5b9250929050565b60008083601f8401126136b6576136b5614d12565b5b8235905067ffffffffffffffff8111156136d3576136d2614d0d565b5b6020830191508360208202830111156136ef576136ee614d17565b5b9250929050565b600082601f83011261370b5761370a614d12565b5b813561371b848260208601613541565b91505092915050565b60008135905061373381615416565b92915050565b6000813590506137488161542d565b92915050565b60008135905061375d81615444565b92915050565b60008151905061377281615444565b92915050565b600082601f83011261378d5761378c614d12565b5b813561379d8482602086016135b1565b91505092915050565b6000815190506137b58161545b565b92915050565b600082601f8301126137d0576137cf614d12565b5b81356137e08482602086016135f3565b91505092915050565b6000813590506137f881615472565b92915050565b60006020828403121561381457613813614d26565b5b600061382284828501613635565b91505092915050565b6000806040838503121561384257613841614d26565b5b600061385085828601613635565b925050602061386185828601613635565b9150509250929050565b60008060006060848603121561388457613883614d26565b5b600061389286828701613635565b93505060206138a386828701613635565b925050604084013567ffffffffffffffff8111156138c4576138c3614d21565b5b6138d0868287016136f6565b9150509250925092565b600080600080608085870312156138f4576138f3614d26565b5b600061390287828801613635565b945050602061391387828801613635565b935050604085013567ffffffffffffffff81111561393457613933614d21565b5b613940878288016136f6565b925050606085013567ffffffffffffffff81111561396157613960614d21565b5b61396d87828801613778565b91505092959194509250565b60008060006060848603121561399257613991614d26565b5b60006139a086828701613635565b93505060206139b186828701613635565b92505060406139c2868287016137e9565b9150509250925092565b600080600080608085870312156139e6576139e5614d26565b5b60006139f487828801613635565b9450506020613a0587828801613635565b9350506040613a16878288016137e9565b925050606085013567ffffffffffffffff811115613a3757613a36614d21565b5b613a4387828801613778565b91505092959194509250565b600080600060408486031215613a6857613a67614d26565b5b6000613a7686828701613635565b935050602084013567ffffffffffffffff811115613a9757613a96614d21565b5b613aa3868287016136a0565b92509250509250925092565b60008060408385031215613ac657613ac5614d26565b5b6000613ad485828601613635565b9250506020613ae585828601613724565b9150509250929050565b60008060408385031215613b0657613b05614d26565b5b6000613b1485828601613635565b9250506020613b25858286016137e9565b9150509250929050565b600060208284031215613b4557613b44614d26565b5b6000613b5384828501613739565b91505092915050565b600060208284031215613b7257613b71614d26565b5b6000613b808482850161374e565b91505092915050565b600060208284031215613b9f57613b9e614d26565b5b6000613bad84828501613763565b91505092915050565b600060208284031215613bcc57613bcb614d26565b5b6000613bda848285016137a6565b91505092915050565b600060208284031215613bf957613bf8614d26565b5b600082013567ffffffffffffffff811115613c1757613c16614d21565b5b613c23848285016137bb565b91505092915050565b600080600060408486031215613c4557613c44614d26565b5b600084013567ffffffffffffffff811115613c6357613c62614d21565b5b613c6f868287016137bb565b935050602084013567ffffffffffffffff811115613c9057613c8f614d21565b5b613c9c8682870161364a565b92509250509250925092565b600060208284031215613cbe57613cbd614d26565b5b6000613ccc848285016137e9565b91505092915050565b60008060008060608587031215613cef57613cee614d26565b5b6000613cfd878288016137e9565b9450506020613d0e878288016137e9565b935050604085013567ffffffffffffffff811115613d2f57613d2e614d21565b5b613d3b8782880161364a565b925092505092959194509250565b6000613d5583836142f9565b60208301905092915050565b613d6a81614a4f565b82525050565b613d81613d7c82614a4f565b614bcd565b82525050565b6000613d92826148c3565b613d9c81856148f1565b9350613da78361489e565b8060005b83811015613dd8578151613dbf8882613d49565b9750613dca836148e4565b925050600181019050613dab565b5085935050505092915050565b613dee81614a61565b82525050565b613dfd81614a6d565b82525050565b6000613e0e826148ce565b613e188185614902565b9350613e28818560208601614aee565b613e3181614d2b565b840191505092915050565b6000613e47826148d9565b613e51818561491e565b9350613e61818560208601614aee565b613e6a81614d2b565b840191505092915050565b6000613e80826148d9565b613e8a818561492f565b9350613e9a818560208601614aee565b80840191505092915050565b60008154613eb381614b21565b613ebd818661492f565b94506001821660008114613ed85760018114613ee957613f1c565b60ff19831686528186019350613f1c565b613ef2856148ae565b60005b83811015613f1457815481890152600182019150602081019050613ef5565b838801955050505b50505092915050565b6000613f3260238361491e565b9150613f3d82614d49565b604082019050919050565b6000613f5560248361491e565b9150613f6082614d98565b604082019050919050565b6000613f78602b8361491e565b9150613f8382614de7565b604082019050919050565b6000613f9b60328361491e565b9150613fa682614e36565b604082019050919050565b6000613fbe60268361491e565b9150613fc982614e85565b604082019050919050565b6000613fe160248361491e565b9150613fec82614ed4565b604082019050919050565b600061400460198361491e565b915061400f82614f23565b602082019050919050565b6000614027602c8361491e565b915061403282614f4c565b604082019050919050565b600061404a60388361491e565b915061405582614f9b565b604082019050919050565b600061406d602a8361491e565b915061407882614fea565b604082019050919050565b600061409060298361491e565b915061409b82615039565b604082019050919050565b60006140b360138361491e565b91506140be82615088565b602082019050919050565b60006140d660178361491e565b91506140e1826150b1565b602082019050919050565b60006140f960158361491e565b9150614104826150da565b602082019050919050565b600061411c602c8361491e565b915061412782615103565b604082019050919050565b600061413f60178361491e565b915061414a82615152565b602082019050919050565b600061416260208361491e565b915061416d8261517b565b602082019050919050565b600061418560298361491e565b9150614190826151a4565b604082019050919050565b60006141a860138361491e565b91506141b3826151f3565b602082019050919050565b60006141cb60158361491e565b91506141d68261521c565b602082019050919050565b60006141ee60218361491e565b91506141f982615245565b604082019050919050565b600061421160178361491e565b915061421c82615294565b602082019050919050565b6000614234600083614913565b915061423f826152bd565b600082019050919050565b600061425760318361491e565b9150614262826152c0565b604082019050919050565b600061427a601c8361491e565b91506142858261530f565b602082019050919050565b600061429d602c8361491e565b91506142a882615338565b604082019050919050565b60006142c060228361491e565b91506142cb82615387565b604082019050919050565b60006142e360178361491e565b91506142ee826153d6565b602082019050919050565b61430281614ad5565b82525050565b61431181614ad5565b82525050565b60006143238284613d70565b60148201915081905092915050565b600061433e8285613e75565b915061434a8284613e75565b91508190509392505050565b60006143628285613ea6565b915061436e8284613e75565b91508190509392505050565b600061438582614227565b9150819050919050565b60006020820190506143a46000830184613d61565b92915050565b60006080820190506143bf6000830187613d61565b6143cc6020830186613d61565b6143d96040830185614308565b81810360608301526143eb8184613e03565b905095945050505050565b600060208201905081810360008301526144108184613d87565b905092915050565b600060208201905061442d6000830184613de5565b92915050565b60006020820190506144486000830184613df4565b92915050565b600060208201905081810360008301526144688184613e3c565b905092915050565b6000602082019050818103600083015261448981613f25565b9050919050565b600060208201905081810360008301526144a981613f48565b9050919050565b600060208201905081810360008301526144c981613f6b565b9050919050565b600060208201905081810360008301526144e981613f8e565b9050919050565b6000602082019050818103600083015261450981613fb1565b9050919050565b6000602082019050818103600083015261452981613fd4565b9050919050565b6000602082019050818103600083015261454981613ff7565b9050919050565b600060208201905081810360008301526145698161401a565b9050919050565b600060208201905081810360008301526145898161403d565b9050919050565b600060208201905081810360008301526145a981614060565b9050919050565b600060208201905081810360008301526145c981614083565b9050919050565b600060208201905081810360008301526145e9816140a6565b9050919050565b60006020820190508181036000830152614609816140c9565b9050919050565b60006020820190508181036000830152614629816140ec565b9050919050565b600060208201905081810360008301526146498161410f565b9050919050565b6000602082019050818103600083015261466981614132565b9050919050565b6000602082019050818103600083015261468981614155565b9050919050565b600060208201905081810360008301526146a981614178565b9050919050565b600060208201905081810360008301526146c98161419b565b9050919050565b600060208201905081810360008301526146e9816141be565b9050919050565b60006020820190508181036000830152614709816141e1565b9050919050565b6000602082019050818103600083015261472981614204565b9050919050565b600060208201905081810360008301526147498161424a565b9050919050565b600060208201905081810360008301526147698161426d565b9050919050565b6000602082019050818103600083015261478981614290565b9050919050565b600060208201905081810360008301526147a9816142b3565b9050919050565b600060208201905081810360008301526147c9816142d6565b9050919050565b60006020820190506147e56000830184614308565b92915050565b60006147f5614806565b90506148018282614b53565b919050565b6000604051905090565b600067ffffffffffffffff82111561482b5761482a614cde565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561485757614856614cde565b5b61486082614d2b565b9050602081019050919050565b600067ffffffffffffffff82111561488857614887614cde565b5b61489182614d2b565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061494582614ad5565b915061495083614ad5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561498557614984614c22565b5b828201905092915050565b600061499b82614ad5565b91506149a683614ad5565b9250826149b6576149b5614c51565b5b828204905092915050565b60006149cc82614ad5565b91506149d783614ad5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a1057614a0f614c22565b5b828202905092915050565b6000614a2682614ad5565b9150614a3183614ad5565b925082821015614a4457614a43614c22565b5b828203905092915050565b6000614a5a82614ab5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614aae82614a4f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614b0c578082015181840152602081019050614af1565b83811115614b1b576000848401525b50505050565b60006002820490506001821680614b3957607f821691505b60208210811415614b4d57614b4c614c80565b5b50919050565b614b5c82614d2b565b810181811067ffffffffffffffff82111715614b7b57614b7a614cde565b5b80604052505050565b6000614b8f82614ad5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bc257614bc1614c22565b5b600182019050919050565b6000614bd882614bdf565b9050919050565b6000614bea82614d3c565b9050919050565b6000614bfc82614ad5565b9150614c0783614ad5565b925082614c1757614c16614c51565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e76616c6964204d65726b6c6520547265652070726f6f6620737570706c6960008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b7f546869732066756e6374696f6e20697320666f722043726f73736d696e74206f60008201527f6e6c792e00000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d61782077616c6c65742e00000000000000000000000000600082015250565b7f496e76616c69642066756e64732070726f76696465642e000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45786365656473206d696e746c69737420737570706c79000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b7f4e6f7420617070726f76656420746f206275726e2e0000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f526573657276657320616c72656164792074616b656e2e000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265207468616e20746865206d6178206d696e60008201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e6420746f205465616d2e000000000000000000600082015250565b61540881614a4f565b811461541357600080fd5b50565b61541f81614a61565b811461542a57600080fd5b50565b61543681614a6d565b811461544157600080fd5b50565b61544d81614a77565b811461545857600080fd5b50565b61546481614aa3565b811461546f57600080fd5b50565b61547b81614ad5565b811461548657600080fd5b5056fea2646970667358221220e635aa6e3b5b1519cf41b61b33e8891ad206b9d3741f82292f0b53446bf8391564736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000005fa0cae22ea05795c8509c5e19e31c2ffba1e417000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f7073696c6f2e6d7970696e6174612e636c6f75642f697066732f516d53675947335276585754453941724252367a58626b7633585362545a63384a4d53654d4a74516941373276422f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): https://psilo.mypinata.cloud/ipfs/QmSgYG3RvXWTE9ArBR6zXbkv3XSbTZc8JMSeMJtQiA72vB/
Arg [1] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [2] : _teamAddress (address): 0x5FA0CaE22eA05795C8509C5e19E31C2FFBA1E417

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [2] : 0000000000000000000000005fa0cae22ea05795c8509c5e19e31c2ffba1e417
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [4] : 68747470733a2f2f7073696c6f2e6d7970696e6174612e636c6f75642f697066
Arg [5] : 732f516d53675947335276585754453941724252367a58626b7633585362545a
Arg [6] : 63384a4d53654d4a74516941373276422f000000000000000000000000000000


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.