ETH Price: $2,541.72 (+0.31%)

Token

Outback Martians (OMNFT)
 

Overview

Max Total Supply

455 OMNFT

Holders

82

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 OMNFT
0x72dbc39d40492e965977b17af721eea159e60287
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:
OutbackMartians

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, GNU GPLv3 license
File 1 of 15 : OutbackMartians.sol
// SPDX-License-Identifier: GNU-3.0-or-later
pragma solidity ^0.8.12;

import {ERC721Enumerable, ERC721} from "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import {Pausable} from "@openzeppelin/contracts/security/Pausable.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

/// @author tempest-sol<[email protected]>
contract OutbackMartians is Ownable, ERC721Enumerable, Pausable {
    enum SaleType {
        INACTIVE,
        PGC,
        GOAT,
        MVP,
        VIP,
        PUBLIC
    }

    string private baseURI;

    uint16 public immutable maxMartians = 8500;
    uint16 public immutable reservedMartians = 100;

    uint16 public reservedMinted;

    uint8 public txMintLimit = 10;
    uint48 public initialSaleTimestamp = 1648306800;

    uint256 private withdrawLimit = 1.25 ether;
    uint256 private withdrawn;
    address private accessor;

    mapping(SaleType => bytes32) private merkleRoots;
    mapping(SaleType => uint256) public salePrices;

    event MartianMinted(address owner, uint256 tokenId);
    event MartianReserved(address to, uint256 tokenId);
    event SalePriceUpdated(SaleType saleType, uint256 value);

    constructor(address _accessor, string memory _uri) ERC721("Outback Martians", "OMNFT") {
        accessor = _accessor;
        baseURI = _uri;
        salePrices[SaleType.PGC]    = 0.05 ether;
        salePrices[SaleType.GOAT]   = 0.06 ether;
        salePrices[SaleType.MVP]    = 0.075 ether;
        salePrices[SaleType.VIP]    = 0.09 ether;
        salePrices[SaleType.PUBLIC] = 0.11 ether;
    }

    function updateStartTime(uint48 timestamp) external onlyOwner {
        initialSaleTimestamp = timestamp;
    }

    function updateSalePrice(SaleType saleType, uint256 value) external onlyOwner {
        require(value > 0, "value_zero");
        require(salePrices[saleType] != value, "already_set_price");
        salePrices[saleType] = value;
        emit SalePriceUpdated(saleType, value);
    }

    function mint(bytes32[] calldata merkleProof, uint8 amount) external payable whenNotPaused {
        (SaleType saleType, uint256 cost) = getCurrentSale();
        require(saleType != SaleType.INACTIVE, "no_active_sale");
        require(totalSupply() + amount <= maxMartians - reservedMartians, "max_mint_acquired");
        if(saleType != SaleType.PUBLIC) {
            require(saleType == SaleType.PGC ? amount > 0 : amount > 0 && amount <= txMintLimit, "invalid_mint_amount");
            require(whitelistData(saleType, merkleProof), "not_on_whitelist");
        } else {
            require(amount > 0, "amount_Zero");
        }
        require(msg.value == amount * cost, "invalid_ether_amount");
        uint256 tokenId = totalSupply();
        for(uint8 i=0;i<amount;++i) {
            _safeMint(msg.sender, tokenId + i);
            emit MartianMinted(msg.sender, tokenId);
        }
    }

    function mintReserved(address to, uint8 amount) external onlyOwner {
        require(reservedMinted + amount <= reservedMartians, "exceeds_reserve_count");

        uint256 tokenId = totalSupply();
        for(uint8 i=0;i<amount;++i) {
            _mint(to, tokenId + i);
            emit MartianReserved(to, tokenId);
        }
        reservedMinted += amount;
    }

    function setMerkleRoots(SaleType[] memory sales, bytes32[] memory merkles) external onlyOwner {
        require(sales.length == merkles.length, "mismatched_data");
        for(uint8 i=0;i<sales.length;++i) {
            merkleRoots[sales[i]] = merkles[i];
        }
    }

    function updateMerkleRoot(SaleType saleType, bytes32 merkle) external onlyOwner {
        merkleRoots[saleType] = merkle;
    }

    function getCurrentSale() public view returns (SaleType saleType, uint256 cost) {
        uint48 currTimestamp = uint48(block.timestamp);
        if (currTimestamp < initialSaleTimestamp) return (saleType = SaleType.INACTIVE, 0);
        uint48 passedTime = currTimestamp - initialSaleTimestamp;
        if(passedTime < 4 days) return (saleType = SaleType.PGC, salePrices[SaleType.PGC]);
        else if(passedTime >= 4 days && passedTime < 8 days) return (saleType = SaleType.GOAT, salePrices[SaleType.GOAT]);
        else if(passedTime >= 8 days && passedTime < 11 days) return (saleType = SaleType.MVP, salePrices[SaleType.MVP]);
        else if(passedTime >= 11 days && passedTime < 13 days) return (saleType = SaleType.VIP, salePrices[SaleType.VIP]);
        else if(passedTime >= 13 days) return (saleType = SaleType.PUBLIC, salePrices[SaleType.PUBLIC]);
    }

    function canMint(bytes32[] calldata merkleProof) public view returns (bool) {
        (SaleType saleType,) = getCurrentSale();
        if(saleType == SaleType.PUBLIC) return true;
        if(saleType == SaleType.INACTIVE) return false;
        return whitelistData(saleType, merkleProof);
    }

    function whitelistData(SaleType saleType, bytes32[] calldata _merkleProof) internal view returns (bool valid) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        valid = MerkleProof.verify(_merkleProof, merkleRoots[saleType], leaf);
    }

    function withdraw(bool all, uint256 amount) external {
        require(msg.sender == owner() || msg.sender == accessor, "invalid_access");
        require(amount > 0, "amount_zero");
        uint256 balance = address(this).balance;
        if(!all) {
            require(balance >= amount, "insufficient_balance");
        }
        if(msg.sender == accessor) {
            require(withdrawn + amount <= withdrawLimit, "already_withdrew_max");
            withdrawn += amount;
            payable(accessor).transfer(amount);
        } else payable(owner()).transfer(all ? balance : amount);
    }

    function tokensOfOwner(address _owner) external view returns (uint256[] memory) {
        require(_owner != address(0), "owner_zero_address");
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount <= 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    function pause() external onlyOwner whenNotPaused {
        _pause();
        emit Paused(msg.sender);
    }

    function unpause() external onlyOwner whenPaused {
        _unpause();
        emit Unpaused(msg.sender);
    }

    function updateBaseUri(string calldata uri) external onlyOwner {
        baseURI = uri;
    }

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 15 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 15 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 7 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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 tokenId);

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 15 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 14 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "metadata": {
    "bytecodeHash": "none"
  },
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_accessor","type":"address"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"MartianMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"MartianReserved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum OutbackMartians.SaleType","name":"saleType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"SalePriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentSale","outputs":[{"internalType":"enum OutbackMartians.SaleType","name":"saleType","type":"uint8"},{"internalType":"uint256","name":"cost","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialSaleTimestamp","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMartians","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMartians","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reservedMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum OutbackMartians.SaleType","name":"","type":"uint8"}],"name":"salePrices","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum OutbackMartians.SaleType[]","name":"sales","type":"uint8[]"},{"internalType":"bytes32[]","name":"merkles","type":"bytes32[]"}],"name":"setMerkleRoots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txMintLimit","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"updateBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum OutbackMartians.SaleType","name":"saleType","type":"uint8"},{"internalType":"bytes32","name":"merkle","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum OutbackMartians.SaleType","name":"saleType","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"updateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint48","name":"timestamp","type":"uint48"}],"name":"updateStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"all","type":"bool"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052612134608052606460a052600d805468ffffffffffffff0000191666623f2a700a0000179055671158e460913d0000600e553480156200004357600080fd5b5060405162003e2838038062003e28833981016040819052620000669162000327565b6040518060400160405280601081526020016f4f75746261636b204d61727469616e7360801b8152506040518060400160405280600581526020016413d353919560da1b815250620000c7620000c16200021760201b60201c565b6200021b565b8151620000dc9060019060208501906200026b565b508051620000f29060029060208401906200026b565b5050600b805460ff1916905550601080546001600160a01b0319166001600160a01b03841617905580516200012f90600c9060208401906200026b565b505060126020525066b1a2bc2ec500007f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a35566d529ae9e8600007f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b25567010a741a462780007f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86976a5567013fbe85edc900007fb4fcd034df3d20faa1c133b66d862ce92732727d40916b48ffb4020cb00fe053556005600052670186cc6acd4b00007f45429b9195d4ec5c0cf6c69e9c21a4ca0ea773b702c2de5735f85d2631f267465562000464565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002799062000427565b90600052602060002090601f0160209004810192826200029d5760008555620002e8565b82601f10620002b857805160ff1916838001178555620002e8565b82800160010185558215620002e8579182015b82811115620002e8578251825591602001919060010190620002cb565b50620002f6929150620002fa565b5090565b5b80821115620002f65760008155600101620002fb565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156200033b57600080fd5b82516001600160a01b03811681146200035357600080fd5b602084810151919350906001600160401b03808211156200037357600080fd5b818601915086601f8301126200038857600080fd5b8151818111156200039d576200039d62000311565b604051601f8201601f19908116603f01168101908382118183101715620003c857620003c862000311565b816040528281528986848701011115620003e157600080fd5b600093505b82841015620004055784840186015181850187015292850192620003e6565b82841115620004175760008684830101525b8096505050505050509250929050565b600181811c908216806200043c57607f821691505b602082108114156200045e57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516139896200049f6000396000818161068801528181610ed00152611a5101526000818161059f0152610ef101526139896000f3fe6080604052600436106102a05760003560e01c80636a1d4bb41161016e5780639c0f41be116100cb578063d19a11d61161007f578063e985e9c511610064578063e985e9c514610794578063f2fde38b146107dd578063fd16f686146107fd57600080fd5b8063d19a11d614610747578063de84d8c51461076757600080fd5b8063ac8dc454116100b0578063ac8dc454146106ca578063b88d4fde14610707578063c87b56dd1461072757600080fd5b80639c0f41be14610676578063a22cb465146106aa57600080fd5b80638462151c116101225780638eb56396116101075780638eb563961461062157806395d89b4114610641578063984c04501461065657600080fd5b80638462151c146105d65780638da5cb5b1461060357600080fd5b8063715018a611610153578063715018a6146105785780637e9afbc91461058d5780638456cb59146105c157600080fd5b80636a1d4bb41461052657806370a082311461055857600080fd5b806339f7e37f1161021c5780634f6ccce7116101d05780635c64bb72116101b55780635c64bb72146104cb5780635c975abb146104ee5780636352211e1461050657600080fd5b80634f6ccce71461048b57806351c3da2a146104ab57600080fd5b80633f4ba83a116102015780633f4ba83a1461042857806342842e0e1461043d5780634f297ccc1461045d57600080fd5b806339f7e37f146103f55780633eee5eb81461041557600080fd5b8063095ea7b31161027357806323b872dd1161025857806323b872dd146103955780632f745c59146103b557806331a0071e146103d557600080fd5b8063095ea7b31461035657806318160ddd1461037657600080fd5b806301f8bf17146102a557806301ffc9a7146102c757806306fdde03146102fc578063081812fc1461031e575b600080fd5b3480156102b157600080fd5b506102c56102c036600461318b565b61081d565b005b3480156102d357600080fd5b506102e76102e2366004613261565b610962565b60405190151581526020015b60405180910390f35b34801561030857600080fd5b506103116109a6565b6040516102f391906132d6565b34801561032a57600080fd5b5061033e6103393660046132e9565b610a38565b6040516001600160a01b0390911681526020016102f3565b34801561036257600080fd5b506102c5610371366004613319565b610acd565b34801561038257600080fd5b506009545b6040519081526020016102f3565b3480156103a157600080fd5b506102c56103b0366004613343565b610bfa565b3480156103c157600080fd5b506103876103d0366004613319565b610c81565b3480156103e157600080fd5b506102c56103f036600461337f565b610d29565b34801561040157600080fd5b506102c56104103660046133a7565b610dad565b6102c5610423366004613476565b610e13565b34801561043457600080fd5b506102c56111bb565b34801561044957600080fd5b506102c5610458366004613343565b6112a5565b34801561046957600080fd5b50600d546104789061ffff1681565b60405161ffff90911681526020016102f3565b34801561049757600080fd5b506103876104a63660046132e9565b6112c0565b3480156104b757600080fd5b506102c56104c63660046134ca565b611364565b3480156104d757600080fd5b506104e061150a565b6040516102f39291906134fc565b3480156104fa57600080fd5b50600b5460ff166102e7565b34801561051257600080fd5b5061033e6105213660046132e9565b611674565b34801561053257600080fd5b50600d546105469062010000900460ff1681565b60405160ff90911681526020016102f3565b34801561056457600080fd5b50610387610573366004613528565b6116ff565b34801561058457600080fd5b506102c5611799565b34801561059957600080fd5b506104787f000000000000000000000000000000000000000000000000000000000000000081565b3480156105cd57600080fd5b506102c56117ff565b3480156105e257600080fd5b506105f66105f1366004613528565b6118d7565b6040516102f39190613543565b34801561060f57600080fd5b506000546001600160a01b031661033e565b34801561062d57600080fd5b506102c561063c366004613587565b6119ef565b34801561064d57600080fd5b50610311611b96565b34801561066257600080fd5b506102c56106713660046135ca565b611ba5565b34801561068257600080fd5b506104787f000000000000000000000000000000000000000000000000000000000000000081565b3480156106b657600080fd5b506102c56106c53660046135e6565b611dc7565b3480156106d657600080fd5b50600d546106f0906301000000900465ffffffffffff1681565b60405165ffffffffffff90911681526020016102f3565b34801561071357600080fd5b506102c5610722366004613610565b611dd6565b34801561073357600080fd5b506103116107423660046132e9565b611e5e565b34801561075357600080fd5b506102c56107623660046134ca565b611f47565b34801561077357600080fd5b506103876107823660046136d0565b60126020526000908152604090205481565b3480156107a057600080fd5b506102e76107af3660046136eb565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107e957600080fd5b506102c56107f8366004613528565b611fde565b34801561080957600080fd5b506102e7610818366004613715565b6120c0565b6000546001600160a01b0316331461087c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b80518251146108cd5760405162461bcd60e51b815260206004820152600f60248201527f6d69736d6174636865645f6461746100000000000000000000000000000000006044820152606401610873565b60005b82518160ff16101561095d57818160ff16815181106108f1576108f1613757565b602002602001015160116000858460ff168151811061091257610912613757565b6020026020010151600581111561092b5761092b6134e6565b600581111561093c5761093c6134e6565b815260208101919091526040016000205561095681613783565b90506108d0565b505050565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109a057506109a082612129565b92915050565b6060600180546109b5906137a3565b80601f01602080910402602001604051908101604052809291908181526020018280546109e1906137a3565b8015610a2e5780601f10610a0357610100808354040283529160200191610a2e565b820191906000526020600020905b815481529060010190602001808311610a1157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610ab15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610873565b506000908152600560205260409020546001600160a01b031690565b6000610ad882611674565b9050806001600160a01b0316836001600160a01b03161415610b625760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610873565b336001600160a01b0382161480610b7e5750610b7e81336107af565b610bf05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610873565b61095d83836121c4565b610c04338261223f565b610c765760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610873565b61095d838383612332565b6000610c8c836116ff565b8210610d005760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610873565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610d835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b600d805465ffffffffffff90921663010000000268ffffffffffff00000019909216919091179055565b6000546001600160a01b03163314610e075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b61095d600c8383613008565b600b5460ff1615610e595760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610873565b600080610e6461150a565b90925090506000826005811115610e7d57610e7d6134e6565b1415610ecb5760405162461bcd60e51b815260206004820152600e60248201527f6e6f5f6163746976655f73616c650000000000000000000000000000000000006044820152606401610873565b610f157f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006137d8565b61ffff168360ff16610f2660095490565b610f3091906137fb565b1115610f7e5760405162461bcd60e51b815260206004820152601160248201527f6d61785f6d696e745f61637175697265640000000000000000000000000000006044820152606401610873565b6005826005811115610f9257610f926134e6565b14611087576001826005811115610fab57610fab6134e6565b14610fd75760008360ff16118015610fd25750600d5460ff62010000909104811690841611155b610fdf565b60008360ff16115b61102b5760405162461bcd60e51b815260206004820152601360248201527f696e76616c69645f6d696e745f616d6f756e74000000000000000000000000006044820152606401610873565b611036828686612517565b6110825760405162461bcd60e51b815260206004820152601060248201527f6e6f745f6f6e5f77686974656c697374000000000000000000000000000000006044820152606401610873565b6110da565b60008360ff16116110da5760405162461bcd60e51b815260206004820152600b60248201527f616d6f756e745f5a65726f0000000000000000000000000000000000000000006044820152606401610873565b6110e78160ff8516613813565b34146111355760405162461bcd60e51b815260206004820152601460248201527f696e76616c69645f65746865725f616d6f756e740000000000000000000000006044820152606401610873565b600061114060095490565b905060005b8460ff168160ff1610156111b2576111693361116460ff8416856137fb565b6125cd565b60408051338152602081018490527fe4a6ea4be22d739f77190eb6e179d0aae0c5e9e450d83a279d518f885689706a910160405180910390a16111ab81613783565b9050611145565b50505050505050565b6000546001600160a01b031633146112155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b600b5460ff166112675760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610873565b61126f6125e7565b6040513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa906020015b60405180910390a1565b61095d83838360405180602001604052806000815250611dd6565b60006112cb60095490565b821061133f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610873565b6009828154811061135257611352613757565b90600052602060002001549050919050565b6000546001600160a01b031633146113be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b6000811161140e5760405162461bcd60e51b815260206004820152600a60248201527f76616c75655f7a65726f000000000000000000000000000000000000000000006044820152606401610873565b8060126000846005811115611425576114256134e6565b6005811115611436576114366134e6565b81526020019081526020016000205414156114935760405162461bcd60e51b815260206004820152601160248201527f616c72656164795f7365745f70726963650000000000000000000000000000006044820152606401610873565b80601260008460058111156114aa576114aa6134e6565b60058111156114bb576114bb6134e6565b8152602001908152602001600020819055507fc1529e8b12bbc11844cbef205b84777ad7ab4ed6b65a3d5f52ae2779ea86d3e382826040516114fe9291906134fc565b60405180910390a15050565b600d546000908190429065ffffffffffff63010000009091048116908216101561153957506000928392509050565b600d54600090611558906301000000900465ffffffffffff1683613832565b9050620546008165ffffffffffff1610156115a257600193508360126000825b6005811115611589576115896134e6565b8152602001908152602001600020549350935050509091565b620546008165ffffffffffff16101580156115c75750620a8c008165ffffffffffff16105b156115db5760029350836012600082611578565b620a8c008165ffffffffffff16101580156116005750620e80808165ffffffffffff16105b156116145760039350836012600082611578565b620e80808165ffffffffffff16101580156116395750621123808165ffffffffffff16105b1561164d5760049350836012600082611578565b621123808165ffffffffffff161061166e5760059350836012600082611578565b50509091565b6000818152600360205260408120546001600160a01b0316806109a05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610873565b60006001600160a01b03821661177d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610873565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146117f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b6117fd600061267e565b565b6000546001600160a01b031633146118595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b600b5460ff161561189f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610873565b6118a76126db565b6040513381527f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589060200161129b565b60606001600160a01b03821661192f5760405162461bcd60e51b815260206004820152601260248201527f6f776e65725f7a65726f5f6164647265737300000000000000000000000000006044820152606401610873565b600061193a836116ff565b90506000811161195e5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611979576119796130a1565b6040519080825280602002602001820160405280156119a2578160200160208202803683370190505b50905060005b82811015611956576119ba8582610c81565b8282815181106119cc576119cc613757565b6020908102919091010152806119e181613851565b9150506119a8565b50919050565b6000546001600160a01b03163314611a495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b600d5461ffff7f0000000000000000000000000000000000000000000000000000000000000000811691611a829160ff8516911661386c565b61ffff161115611ad45760405162461bcd60e51b815260206004820152601560248201527f657863656564735f726573657276655f636f756e7400000000000000000000006044820152606401610873565b6000611adf60095490565b905060005b8260ff168160ff161015611b5a57611b0884611b0360ff8416856137fb565b612756565b604080516001600160a01b0386168152602081018490527f162d4083439677330383d8519f166ed0cb277fd2b1f2e0401c88ec8fd0005eb8910160405180910390a1611b5381613783565b9050611ae4565b50600d805460ff84169190600090611b7790849061ffff1661386c565b92506101000a81548161ffff021916908361ffff160217905550505050565b6060600280546109b5906137a3565b6000546001600160a01b0316331480611bc857506010546001600160a01b031633145b611c145760405162461bcd60e51b815260206004820152600e60248201527f696e76616c69645f6163636573730000000000000000000000000000000000006044820152606401610873565b60008111611c645760405162461bcd60e51b815260206004820152600b60248201527f616d6f756e745f7a65726f0000000000000000000000000000000000000000006044820152606401610873565b4782611cba5781811015611cba5760405162461bcd60e51b815260206004820152601460248201527f696e73756666696369656e745f62616c616e63650000000000000000000000006044820152606401610873565b6010546001600160a01b0316331415611d8357600e5482600f54611cde91906137fb565b1115611d2c5760405162461bcd60e51b815260206004820152601460248201527f616c72656164795f77697468647265775f6d61780000000000000000000000006044820152606401610873565b81600f6000828254611d3e91906137fb565b90915550506010546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015611d7d573d6000803e3d6000fd5b50505050565b6000546001600160a01b03166108fc84611d9d5783611d9f565b825b6040518115909202916000818181858888f19350505050158015611d7d573d6000803e3d6000fd5b611dd23383836128b1565b5050565b611de0338361223f565b611e525760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610873565b611d7d84848484612980565b6000818152600360205260409020546060906001600160a01b0316611eeb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610873565b6000611ef56129fe565b90506000815111611f155760405180602001604052806000815250611f40565b80611f1f84612a0d565b604051602001611f30929190613892565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611fa15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b8060116000846005811115611fb857611fb86134e6565b6005811115611fc957611fc96134e6565b81526020810191909152604001600020555050565b6000546001600160a01b031633146120385760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b6001600160a01b0381166120b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610873565b6120bd8161267e565b50565b6000806120cb61150a565b50905060058160058111156120e2576120e26134e6565b14156120f25760019150506109a0565b6000816005811115612106576121066134e6565b14156121165760009150506109a0565b612121818585612517565b949350505050565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061218c57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109a057507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146109a0565b6000818152600560205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061220682611674565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166122b85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610873565b60006122c383611674565b9050806001600160a01b0316846001600160a01b031614806122fe5750836001600160a01b03166122f384610a38565b6001600160a01b0316145b8061212157506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16612121565b826001600160a01b031661234582611674565b6001600160a01b0316146123c15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610873565b6001600160a01b03821661243c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610873565b612447838383612b3f565b6124526000826121c4565b6001600160a01b038316600090815260046020526040812080546001929061247b9084906138b8565b90915550506001600160a01b03821660009081526004602052604081208054600192906124a99084906137fb565b9091555050600081815260036020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6040516bffffffffffffffffffffffff193360601b16602082015260009081906034016040516020818303038152906040528051906020012090506125c48484808060200260200160405190810160405280939291908181526020018383602002808284376000920182905250601193509150899050600581111561259e5761259e6134e6565b60058111156125af576125af6134e6565b81526020019081526020016000205483612bf7565b95945050505050565b611dd2828260405180602001604052806000815250612c0d565b600b5460ff166126395760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610873565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200161129b565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600b5460ff16156127215760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610873565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126663390565b6001600160a01b0382166127ac5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610873565b6000818152600360205260409020546001600160a01b0316156128115760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610873565b61281d60008383612b3f565b6001600160a01b03821660009081526004602052604081208054600192906128469084906137fb565b9091555050600081815260036020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156129135760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610873565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61298b848484612332565b61299784848484612c8b565b611d7d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610873565b6060600c80546109b5906137a3565b606081612a4d57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612a775780612a6181613851565b9150612a709050600a836138e5565b9150612a51565b60008167ffffffffffffffff811115612a9257612a926130a1565b6040519080825280601f01601f191660200182016040528015612abc576020820181803683370190505b5090505b841561212157612ad16001836138b8565b9150612ade600a866138f9565b612ae99060306137fb565b60f81b818381518110612afe57612afe613757565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612b38600a866138e5565b9450612ac0565b6001600160a01b038316612b9a57612b9581600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612bbd565b816001600160a01b0316836001600160a01b031614612bbd57612bbd8382612dd4565b6001600160a01b038216612bd45761095d81612e71565b826001600160a01b0316826001600160a01b03161461095d5761095d8282612f20565b600082612c048584612f64565b14949350505050565b612c178383612756565b612c246000848484612c8b565b61095d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610873565b60006001600160a01b0384163b15612dc957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ccf90339089908890889060040161390d565b6020604051808303816000875af1925050508015612d0a575060408051601f3d908101601f19168201909252612d0791810190613949565b60015b612daf573d808015612d38576040519150601f19603f3d011682016040523d82523d6000602084013e612d3d565b606091505b508051612da75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610873565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612121565b506001949350505050565b60006001612de1846116ff565b612deb91906138b8565b600083815260086020526040902054909150808214612e3e576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612e83906001906138b8565b6000838152600a602052604081205460098054939450909284908110612eab57612eab613757565b906000526020600020015490508060098381548110612ecc57612ecc613757565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612f0457612f04613966565b6001900381819060005260206000200160009055905550505050565b6000612f2b836116ff565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b600081815b8451811015611956576000858281518110612f8657612f86613757565b60200260200101519050808311612fc8576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612ff5565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061300081613851565b915050612f69565b828054613014906137a3565b90600052602060002090601f016020900481019282613036576000855561307c565b82601f1061304f5782800160ff1982351617855561307c565b8280016001018555821561307c579182015b8281111561307c578235825591602001919060010190613061565b5061308892915061308c565b5090565b5b80821115613088576000815560010161308d565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156130e0576130e06130a1565b604052919050565b600067ffffffffffffffff821115613102576131026130a1565b5060051b60200190565b80356006811061311b57600080fd5b919050565b600082601f83011261313157600080fd5b81356020613146613141836130e8565b6130b7565b82815260059290921b8401810191818101908684111561316557600080fd5b8286015b848110156131805780358352918301918301613169565b509695505050505050565b6000806040838503121561319e57600080fd5b823567ffffffffffffffff808211156131b657600080fd5b818501915085601f8301126131ca57600080fd5b813560206131da613141836130e8565b82815260059290921b840181019181810190898411156131f957600080fd5b948201945b8386101561321e5761320f8661310c565b825294820194908201906131fe565b9650508601359250508082111561323457600080fd5b5061324185828601613120565b9150509250929050565b6001600160e01b0319811681146120bd57600080fd5b60006020828403121561327357600080fd5b8135611f408161324b565b60005b83811015613299578181015183820152602001613281565b83811115611d7d5750506000910152565b600081518084526132c281602086016020860161327e565b601f01601f19169290920160200192915050565b602081526000611f4060208301846132aa565b6000602082840312156132fb57600080fd5b5035919050565b80356001600160a01b038116811461311b57600080fd5b6000806040838503121561332c57600080fd5b61333583613302565b946020939093013593505050565b60008060006060848603121561335857600080fd5b61336184613302565b925061336f60208501613302565b9150604084013590509250925092565b60006020828403121561339157600080fd5b813565ffffffffffff81168114611f4057600080fd5b600080602083850312156133ba57600080fd5b823567ffffffffffffffff808211156133d257600080fd5b818501915085601f8301126133e657600080fd5b8135818111156133f557600080fd5b86602082850101111561340757600080fd5b60209290920196919550909350505050565b60008083601f84011261342b57600080fd5b50813567ffffffffffffffff81111561344357600080fd5b6020830191508360208260051b850101111561345e57600080fd5b9250929050565b803560ff8116811461311b57600080fd5b60008060006040848603121561348b57600080fd5b833567ffffffffffffffff8111156134a257600080fd5b6134ae86828701613419565b90945092506134c1905060208501613465565b90509250925092565b600080604083850312156134dd57600080fd5b6133358361310c565b634e487b7160e01b600052602160045260246000fd5b604081016006841061351e57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b60006020828403121561353a57600080fd5b611f4082613302565b6020808252825182820181905260009190848201906040850190845b8181101561357b5783518352928401929184019160010161355f565b50909695505050505050565b6000806040838503121561359a57600080fd5b6135a383613302565b91506135b160208401613465565b90509250929050565b8035801515811461311b57600080fd5b600080604083850312156135dd57600080fd5b613335836135ba565b600080604083850312156135f957600080fd5b61360283613302565b91506135b1602084016135ba565b6000806000806080858703121561362657600080fd5b61362f85613302565b9350602061363e818701613302565b935060408601359250606086013567ffffffffffffffff8082111561366257600080fd5b818801915088601f83011261367657600080fd5b813581811115613688576136886130a1565b61369a601f8201601f191685016130b7565b915080825289848285010111156136b057600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000602082840312156136e257600080fd5b611f408261310c565b600080604083850312156136fe57600080fd5b61370783613302565b91506135b160208401613302565b6000806020838503121561372857600080fd5b823567ffffffffffffffff81111561373f57600080fd5b61374b85828601613419565b90969095509350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff81141561379a5761379a61376d565b60010192915050565b600181811c908216806137b757607f821691505b602082108114156119e957634e487b7160e01b600052602260045260246000fd5b600061ffff838116908316818110156137f3576137f361376d565b039392505050565b6000821982111561380e5761380e61376d565b500190565b600081600019048311821515161561382d5761382d61376d565b500290565b600065ffffffffffff838116908316818110156137f3576137f361376d565b60006000198214156138655761386561376d565b5060010190565b600061ffff8083168185168083038211156138895761388961376d565b01949350505050565b600083516138a481846020880161327e565b83519083019061388981836020880161327e565b6000828210156138ca576138ca61376d565b500390565b634e487b7160e01b600052601260045260246000fd5b6000826138f4576138f46138cf565b500490565b600082613908576139086138cf565b500690565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261393f60808301846132aa565b9695505050505050565b60006020828403121561395b57600080fd5b8151611f408161324b565b634e487b7160e01b600052603160045260246000fdfea164736f6c634300080c000a00000000000000000000000028a09fd16ca103421838b94b6bcbeb707121a0230000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f6170692e6f75746261636b6d61727469616e732e636f6d2f6d657461646174612f6d61727469616e732f0000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102a05760003560e01c80636a1d4bb41161016e5780639c0f41be116100cb578063d19a11d61161007f578063e985e9c511610064578063e985e9c514610794578063f2fde38b146107dd578063fd16f686146107fd57600080fd5b8063d19a11d614610747578063de84d8c51461076757600080fd5b8063ac8dc454116100b0578063ac8dc454146106ca578063b88d4fde14610707578063c87b56dd1461072757600080fd5b80639c0f41be14610676578063a22cb465146106aa57600080fd5b80638462151c116101225780638eb56396116101075780638eb563961461062157806395d89b4114610641578063984c04501461065657600080fd5b80638462151c146105d65780638da5cb5b1461060357600080fd5b8063715018a611610153578063715018a6146105785780637e9afbc91461058d5780638456cb59146105c157600080fd5b80636a1d4bb41461052657806370a082311461055857600080fd5b806339f7e37f1161021c5780634f6ccce7116101d05780635c64bb72116101b55780635c64bb72146104cb5780635c975abb146104ee5780636352211e1461050657600080fd5b80634f6ccce71461048b57806351c3da2a146104ab57600080fd5b80633f4ba83a116102015780633f4ba83a1461042857806342842e0e1461043d5780634f297ccc1461045d57600080fd5b806339f7e37f146103f55780633eee5eb81461041557600080fd5b8063095ea7b31161027357806323b872dd1161025857806323b872dd146103955780632f745c59146103b557806331a0071e146103d557600080fd5b8063095ea7b31461035657806318160ddd1461037657600080fd5b806301f8bf17146102a557806301ffc9a7146102c757806306fdde03146102fc578063081812fc1461031e575b600080fd5b3480156102b157600080fd5b506102c56102c036600461318b565b61081d565b005b3480156102d357600080fd5b506102e76102e2366004613261565b610962565b60405190151581526020015b60405180910390f35b34801561030857600080fd5b506103116109a6565b6040516102f391906132d6565b34801561032a57600080fd5b5061033e6103393660046132e9565b610a38565b6040516001600160a01b0390911681526020016102f3565b34801561036257600080fd5b506102c5610371366004613319565b610acd565b34801561038257600080fd5b506009545b6040519081526020016102f3565b3480156103a157600080fd5b506102c56103b0366004613343565b610bfa565b3480156103c157600080fd5b506103876103d0366004613319565b610c81565b3480156103e157600080fd5b506102c56103f036600461337f565b610d29565b34801561040157600080fd5b506102c56104103660046133a7565b610dad565b6102c5610423366004613476565b610e13565b34801561043457600080fd5b506102c56111bb565b34801561044957600080fd5b506102c5610458366004613343565b6112a5565b34801561046957600080fd5b50600d546104789061ffff1681565b60405161ffff90911681526020016102f3565b34801561049757600080fd5b506103876104a63660046132e9565b6112c0565b3480156104b757600080fd5b506102c56104c63660046134ca565b611364565b3480156104d757600080fd5b506104e061150a565b6040516102f39291906134fc565b3480156104fa57600080fd5b50600b5460ff166102e7565b34801561051257600080fd5b5061033e6105213660046132e9565b611674565b34801561053257600080fd5b50600d546105469062010000900460ff1681565b60405160ff90911681526020016102f3565b34801561056457600080fd5b50610387610573366004613528565b6116ff565b34801561058457600080fd5b506102c5611799565b34801561059957600080fd5b506104787f000000000000000000000000000000000000000000000000000000000000213481565b3480156105cd57600080fd5b506102c56117ff565b3480156105e257600080fd5b506105f66105f1366004613528565b6118d7565b6040516102f39190613543565b34801561060f57600080fd5b506000546001600160a01b031661033e565b34801561062d57600080fd5b506102c561063c366004613587565b6119ef565b34801561064d57600080fd5b50610311611b96565b34801561066257600080fd5b506102c56106713660046135ca565b611ba5565b34801561068257600080fd5b506104787f000000000000000000000000000000000000000000000000000000000000006481565b3480156106b657600080fd5b506102c56106c53660046135e6565b611dc7565b3480156106d657600080fd5b50600d546106f0906301000000900465ffffffffffff1681565b60405165ffffffffffff90911681526020016102f3565b34801561071357600080fd5b506102c5610722366004613610565b611dd6565b34801561073357600080fd5b506103116107423660046132e9565b611e5e565b34801561075357600080fd5b506102c56107623660046134ca565b611f47565b34801561077357600080fd5b506103876107823660046136d0565b60126020526000908152604090205481565b3480156107a057600080fd5b506102e76107af3660046136eb565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107e957600080fd5b506102c56107f8366004613528565b611fde565b34801561080957600080fd5b506102e7610818366004613715565b6120c0565b6000546001600160a01b0316331461087c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b80518251146108cd5760405162461bcd60e51b815260206004820152600f60248201527f6d69736d6174636865645f6461746100000000000000000000000000000000006044820152606401610873565b60005b82518160ff16101561095d57818160ff16815181106108f1576108f1613757565b602002602001015160116000858460ff168151811061091257610912613757565b6020026020010151600581111561092b5761092b6134e6565b600581111561093c5761093c6134e6565b815260208101919091526040016000205561095681613783565b90506108d0565b505050565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109a057506109a082612129565b92915050565b6060600180546109b5906137a3565b80601f01602080910402602001604051908101604052809291908181526020018280546109e1906137a3565b8015610a2e5780601f10610a0357610100808354040283529160200191610a2e565b820191906000526020600020905b815481529060010190602001808311610a1157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610ab15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610873565b506000908152600560205260409020546001600160a01b031690565b6000610ad882611674565b9050806001600160a01b0316836001600160a01b03161415610b625760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610873565b336001600160a01b0382161480610b7e5750610b7e81336107af565b610bf05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610873565b61095d83836121c4565b610c04338261223f565b610c765760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610873565b61095d838383612332565b6000610c8c836116ff565b8210610d005760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610873565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610d835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b600d805465ffffffffffff90921663010000000268ffffffffffff00000019909216919091179055565b6000546001600160a01b03163314610e075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b61095d600c8383613008565b600b5460ff1615610e595760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610873565b600080610e6461150a565b90925090506000826005811115610e7d57610e7d6134e6565b1415610ecb5760405162461bcd60e51b815260206004820152600e60248201527f6e6f5f6163746976655f73616c650000000000000000000000000000000000006044820152606401610873565b610f157f00000000000000000000000000000000000000000000000000000000000000647f00000000000000000000000000000000000000000000000000000000000021346137d8565b61ffff168360ff16610f2660095490565b610f3091906137fb565b1115610f7e5760405162461bcd60e51b815260206004820152601160248201527f6d61785f6d696e745f61637175697265640000000000000000000000000000006044820152606401610873565b6005826005811115610f9257610f926134e6565b14611087576001826005811115610fab57610fab6134e6565b14610fd75760008360ff16118015610fd25750600d5460ff62010000909104811690841611155b610fdf565b60008360ff16115b61102b5760405162461bcd60e51b815260206004820152601360248201527f696e76616c69645f6d696e745f616d6f756e74000000000000000000000000006044820152606401610873565b611036828686612517565b6110825760405162461bcd60e51b815260206004820152601060248201527f6e6f745f6f6e5f77686974656c697374000000000000000000000000000000006044820152606401610873565b6110da565b60008360ff16116110da5760405162461bcd60e51b815260206004820152600b60248201527f616d6f756e745f5a65726f0000000000000000000000000000000000000000006044820152606401610873565b6110e78160ff8516613813565b34146111355760405162461bcd60e51b815260206004820152601460248201527f696e76616c69645f65746865725f616d6f756e740000000000000000000000006044820152606401610873565b600061114060095490565b905060005b8460ff168160ff1610156111b2576111693361116460ff8416856137fb565b6125cd565b60408051338152602081018490527fe4a6ea4be22d739f77190eb6e179d0aae0c5e9e450d83a279d518f885689706a910160405180910390a16111ab81613783565b9050611145565b50505050505050565b6000546001600160a01b031633146112155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b600b5460ff166112675760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610873565b61126f6125e7565b6040513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa906020015b60405180910390a1565b61095d83838360405180602001604052806000815250611dd6565b60006112cb60095490565b821061133f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610873565b6009828154811061135257611352613757565b90600052602060002001549050919050565b6000546001600160a01b031633146113be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b6000811161140e5760405162461bcd60e51b815260206004820152600a60248201527f76616c75655f7a65726f000000000000000000000000000000000000000000006044820152606401610873565b8060126000846005811115611425576114256134e6565b6005811115611436576114366134e6565b81526020019081526020016000205414156114935760405162461bcd60e51b815260206004820152601160248201527f616c72656164795f7365745f70726963650000000000000000000000000000006044820152606401610873565b80601260008460058111156114aa576114aa6134e6565b60058111156114bb576114bb6134e6565b8152602001908152602001600020819055507fc1529e8b12bbc11844cbef205b84777ad7ab4ed6b65a3d5f52ae2779ea86d3e382826040516114fe9291906134fc565b60405180910390a15050565b600d546000908190429065ffffffffffff63010000009091048116908216101561153957506000928392509050565b600d54600090611558906301000000900465ffffffffffff1683613832565b9050620546008165ffffffffffff1610156115a257600193508360126000825b6005811115611589576115896134e6565b8152602001908152602001600020549350935050509091565b620546008165ffffffffffff16101580156115c75750620a8c008165ffffffffffff16105b156115db5760029350836012600082611578565b620a8c008165ffffffffffff16101580156116005750620e80808165ffffffffffff16105b156116145760039350836012600082611578565b620e80808165ffffffffffff16101580156116395750621123808165ffffffffffff16105b1561164d5760049350836012600082611578565b621123808165ffffffffffff161061166e5760059350836012600082611578565b50509091565b6000818152600360205260408120546001600160a01b0316806109a05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610873565b60006001600160a01b03821661177d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610873565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146117f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b6117fd600061267e565b565b6000546001600160a01b031633146118595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b600b5460ff161561189f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610873565b6118a76126db565b6040513381527f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589060200161129b565b60606001600160a01b03821661192f5760405162461bcd60e51b815260206004820152601260248201527f6f776e65725f7a65726f5f6164647265737300000000000000000000000000006044820152606401610873565b600061193a836116ff565b90506000811161195e5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611979576119796130a1565b6040519080825280602002602001820160405280156119a2578160200160208202803683370190505b50905060005b82811015611956576119ba8582610c81565b8282815181106119cc576119cc613757565b6020908102919091010152806119e181613851565b9150506119a8565b50919050565b6000546001600160a01b03163314611a495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b600d5461ffff7f0000000000000000000000000000000000000000000000000000000000000064811691611a829160ff8516911661386c565b61ffff161115611ad45760405162461bcd60e51b815260206004820152601560248201527f657863656564735f726573657276655f636f756e7400000000000000000000006044820152606401610873565b6000611adf60095490565b905060005b8260ff168160ff161015611b5a57611b0884611b0360ff8416856137fb565b612756565b604080516001600160a01b0386168152602081018490527f162d4083439677330383d8519f166ed0cb277fd2b1f2e0401c88ec8fd0005eb8910160405180910390a1611b5381613783565b9050611ae4565b50600d805460ff84169190600090611b7790849061ffff1661386c565b92506101000a81548161ffff021916908361ffff160217905550505050565b6060600280546109b5906137a3565b6000546001600160a01b0316331480611bc857506010546001600160a01b031633145b611c145760405162461bcd60e51b815260206004820152600e60248201527f696e76616c69645f6163636573730000000000000000000000000000000000006044820152606401610873565b60008111611c645760405162461bcd60e51b815260206004820152600b60248201527f616d6f756e745f7a65726f0000000000000000000000000000000000000000006044820152606401610873565b4782611cba5781811015611cba5760405162461bcd60e51b815260206004820152601460248201527f696e73756666696369656e745f62616c616e63650000000000000000000000006044820152606401610873565b6010546001600160a01b0316331415611d8357600e5482600f54611cde91906137fb565b1115611d2c5760405162461bcd60e51b815260206004820152601460248201527f616c72656164795f77697468647265775f6d61780000000000000000000000006044820152606401610873565b81600f6000828254611d3e91906137fb565b90915550506010546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015611d7d573d6000803e3d6000fd5b50505050565b6000546001600160a01b03166108fc84611d9d5783611d9f565b825b6040518115909202916000818181858888f19350505050158015611d7d573d6000803e3d6000fd5b611dd23383836128b1565b5050565b611de0338361223f565b611e525760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610873565b611d7d84848484612980565b6000818152600360205260409020546060906001600160a01b0316611eeb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610873565b6000611ef56129fe565b90506000815111611f155760405180602001604052806000815250611f40565b80611f1f84612a0d565b604051602001611f30929190613892565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611fa15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b8060116000846005811115611fb857611fb86134e6565b6005811115611fc957611fc96134e6565b81526020810191909152604001600020555050565b6000546001600160a01b031633146120385760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610873565b6001600160a01b0381166120b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610873565b6120bd8161267e565b50565b6000806120cb61150a565b50905060058160058111156120e2576120e26134e6565b14156120f25760019150506109a0565b6000816005811115612106576121066134e6565b14156121165760009150506109a0565b612121818585612517565b949350505050565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061218c57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109a057507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146109a0565b6000818152600560205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061220682611674565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166122b85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610873565b60006122c383611674565b9050806001600160a01b0316846001600160a01b031614806122fe5750836001600160a01b03166122f384610a38565b6001600160a01b0316145b8061212157506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16612121565b826001600160a01b031661234582611674565b6001600160a01b0316146123c15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610873565b6001600160a01b03821661243c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610873565b612447838383612b3f565b6124526000826121c4565b6001600160a01b038316600090815260046020526040812080546001929061247b9084906138b8565b90915550506001600160a01b03821660009081526004602052604081208054600192906124a99084906137fb565b9091555050600081815260036020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6040516bffffffffffffffffffffffff193360601b16602082015260009081906034016040516020818303038152906040528051906020012090506125c48484808060200260200160405190810160405280939291908181526020018383602002808284376000920182905250601193509150899050600581111561259e5761259e6134e6565b60058111156125af576125af6134e6565b81526020019081526020016000205483612bf7565b95945050505050565b611dd2828260405180602001604052806000815250612c0d565b600b5460ff166126395760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610873565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200161129b565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600b5460ff16156127215760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610873565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126663390565b6001600160a01b0382166127ac5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610873565b6000818152600360205260409020546001600160a01b0316156128115760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610873565b61281d60008383612b3f565b6001600160a01b03821660009081526004602052604081208054600192906128469084906137fb565b9091555050600081815260036020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156129135760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610873565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61298b848484612332565b61299784848484612c8b565b611d7d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610873565b6060600c80546109b5906137a3565b606081612a4d57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612a775780612a6181613851565b9150612a709050600a836138e5565b9150612a51565b60008167ffffffffffffffff811115612a9257612a926130a1565b6040519080825280601f01601f191660200182016040528015612abc576020820181803683370190505b5090505b841561212157612ad16001836138b8565b9150612ade600a866138f9565b612ae99060306137fb565b60f81b818381518110612afe57612afe613757565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612b38600a866138e5565b9450612ac0565b6001600160a01b038316612b9a57612b9581600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612bbd565b816001600160a01b0316836001600160a01b031614612bbd57612bbd8382612dd4565b6001600160a01b038216612bd45761095d81612e71565b826001600160a01b0316826001600160a01b03161461095d5761095d8282612f20565b600082612c048584612f64565b14949350505050565b612c178383612756565b612c246000848484612c8b565b61095d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610873565b60006001600160a01b0384163b15612dc957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ccf90339089908890889060040161390d565b6020604051808303816000875af1925050508015612d0a575060408051601f3d908101601f19168201909252612d0791810190613949565b60015b612daf573d808015612d38576040519150601f19603f3d011682016040523d82523d6000602084013e612d3d565b606091505b508051612da75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610873565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612121565b506001949350505050565b60006001612de1846116ff565b612deb91906138b8565b600083815260086020526040902054909150808214612e3e576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612e83906001906138b8565b6000838152600a602052604081205460098054939450909284908110612eab57612eab613757565b906000526020600020015490508060098381548110612ecc57612ecc613757565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612f0457612f04613966565b6001900381819060005260206000200160009055905550505050565b6000612f2b836116ff565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b600081815b8451811015611956576000858281518110612f8657612f86613757565b60200260200101519050808311612fc8576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612ff5565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061300081613851565b915050612f69565b828054613014906137a3565b90600052602060002090601f016020900481019282613036576000855561307c565b82601f1061304f5782800160ff1982351617855561307c565b8280016001018555821561307c579182015b8281111561307c578235825591602001919060010190613061565b5061308892915061308c565b5090565b5b80821115613088576000815560010161308d565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156130e0576130e06130a1565b604052919050565b600067ffffffffffffffff821115613102576131026130a1565b5060051b60200190565b80356006811061311b57600080fd5b919050565b600082601f83011261313157600080fd5b81356020613146613141836130e8565b6130b7565b82815260059290921b8401810191818101908684111561316557600080fd5b8286015b848110156131805780358352918301918301613169565b509695505050505050565b6000806040838503121561319e57600080fd5b823567ffffffffffffffff808211156131b657600080fd5b818501915085601f8301126131ca57600080fd5b813560206131da613141836130e8565b82815260059290921b840181019181810190898411156131f957600080fd5b948201945b8386101561321e5761320f8661310c565b825294820194908201906131fe565b9650508601359250508082111561323457600080fd5b5061324185828601613120565b9150509250929050565b6001600160e01b0319811681146120bd57600080fd5b60006020828403121561327357600080fd5b8135611f408161324b565b60005b83811015613299578181015183820152602001613281565b83811115611d7d5750506000910152565b600081518084526132c281602086016020860161327e565b601f01601f19169290920160200192915050565b602081526000611f4060208301846132aa565b6000602082840312156132fb57600080fd5b5035919050565b80356001600160a01b038116811461311b57600080fd5b6000806040838503121561332c57600080fd5b61333583613302565b946020939093013593505050565b60008060006060848603121561335857600080fd5b61336184613302565b925061336f60208501613302565b9150604084013590509250925092565b60006020828403121561339157600080fd5b813565ffffffffffff81168114611f4057600080fd5b600080602083850312156133ba57600080fd5b823567ffffffffffffffff808211156133d257600080fd5b818501915085601f8301126133e657600080fd5b8135818111156133f557600080fd5b86602082850101111561340757600080fd5b60209290920196919550909350505050565b60008083601f84011261342b57600080fd5b50813567ffffffffffffffff81111561344357600080fd5b6020830191508360208260051b850101111561345e57600080fd5b9250929050565b803560ff8116811461311b57600080fd5b60008060006040848603121561348b57600080fd5b833567ffffffffffffffff8111156134a257600080fd5b6134ae86828701613419565b90945092506134c1905060208501613465565b90509250925092565b600080604083850312156134dd57600080fd5b6133358361310c565b634e487b7160e01b600052602160045260246000fd5b604081016006841061351e57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b60006020828403121561353a57600080fd5b611f4082613302565b6020808252825182820181905260009190848201906040850190845b8181101561357b5783518352928401929184019160010161355f565b50909695505050505050565b6000806040838503121561359a57600080fd5b6135a383613302565b91506135b160208401613465565b90509250929050565b8035801515811461311b57600080fd5b600080604083850312156135dd57600080fd5b613335836135ba565b600080604083850312156135f957600080fd5b61360283613302565b91506135b1602084016135ba565b6000806000806080858703121561362657600080fd5b61362f85613302565b9350602061363e818701613302565b935060408601359250606086013567ffffffffffffffff8082111561366257600080fd5b818801915088601f83011261367657600080fd5b813581811115613688576136886130a1565b61369a601f8201601f191685016130b7565b915080825289848285010111156136b057600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000602082840312156136e257600080fd5b611f408261310c565b600080604083850312156136fe57600080fd5b61370783613302565b91506135b160208401613302565b6000806020838503121561372857600080fd5b823567ffffffffffffffff81111561373f57600080fd5b61374b85828601613419565b90969095509350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff81141561379a5761379a61376d565b60010192915050565b600181811c908216806137b757607f821691505b602082108114156119e957634e487b7160e01b600052602260045260246000fd5b600061ffff838116908316818110156137f3576137f361376d565b039392505050565b6000821982111561380e5761380e61376d565b500190565b600081600019048311821515161561382d5761382d61376d565b500290565b600065ffffffffffff838116908316818110156137f3576137f361376d565b60006000198214156138655761386561376d565b5060010190565b600061ffff8083168185168083038211156138895761388961376d565b01949350505050565b600083516138a481846020880161327e565b83519083019061388981836020880161327e565b6000828210156138ca576138ca61376d565b500390565b634e487b7160e01b600052601260045260246000fd5b6000826138f4576138f46138cf565b500490565b600082613908576139086138cf565b500690565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261393f60808301846132aa565b9695505050505050565b60006020828403121561395b57600080fd5b8151611f408161324b565b634e487b7160e01b600052603160045260246000fdfea164736f6c634300080c000a

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

00000000000000000000000028a09fd16ca103421838b94b6bcbeb707121a0230000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f6170692e6f75746261636b6d61727469616e732e636f6d2f6d657461646174612f6d61727469616e732f0000000000000000000000000000

-----Decoded View---------------
Arg [0] : _accessor (address): 0x28a09fd16cA103421838B94b6bcbeB707121a023
Arg [1] : _uri (string): https://api.outbackmartians.com/metadata/martians/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000028a09fd16ca103421838b94b6bcbeb707121a023
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [3] : 68747470733a2f2f6170692e6f75746261636b6d61727469616e732e636f6d2f
Arg [4] : 6d657461646174612f6d61727469616e732f0000000000000000000000000000


Deployed Bytecode Sourcemap

477:6554:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3476:276;;;;;;;;;;-1:-1:-1;3476:276:14;;;;;:::i;:::-;;:::i;:::-;;990:222:5;;;;;;;;;;-1:-1:-1;990:222:5;;;;;:::i;:::-;;:::i;:::-;;;3277:14:15;;3270:22;3252:41;;3240:2;3225:18;990:222:5;;;;;;;;2473:98:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3984:217::-;;;;;;;;;;-1:-1:-1;3984:217:2;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4404:55:15;;;4386:74;;4374:2;4359:18;3984:217:2;4240:226:15;3522:401:2;;;;;;;;;;-1:-1:-1;3522:401:2;;;;;:::i;:::-;;:::i;1615:111:5:-;;;;;;;;;;-1:-1:-1;1702:10:5;:17;1615:111;;;5077:25:15;;;5065:2;5050:18;1615:111:5;4931:177:15;4711:330:2;;;;;;;;;;-1:-1:-1;4711:330:2;;;;;:::i;:::-;;:::i;1291:253:5:-;;;;;;;;;;-1:-1:-1;1291:253:5;;;;;:::i;:::-;;:::i;1753:113:14:-;;;;;;;;;;-1:-1:-1;1753:113:14;;;;;:::i;:::-;;:::i;6825:95::-;;;;;;;;;;-1:-1:-1;6825:95:14;;;;;:::i;:::-;;:::i;2169:914::-;;;;;;:::i;:::-;;:::i;6703:114::-;;;;;;;;;;;;;:::i;5107:179:2:-;;;;;;;;;;-1:-1:-1;5107:179:2;;;;;:::i;:::-;;:::i;805:28:14:-;;;;;;;;;;-1:-1:-1;805:28:14;;;;;;;;;;;7547:6:15;7535:19;;;7517:38;;7505:2;7490:18;805:28:14;7373:188:15;1798:230:5;;;;;;;;;;-1:-1:-1;1798:230:5;;;;;:::i;:::-;;:::i;1874:287:14:-;;;;;;;;;;-1:-1:-1;1874:287:14;;;;;:::i;:::-;;:::i;3897:875::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;1098:84:1:-;;;;;;;;;;-1:-1:-1;1168:7:1;;;;1098:84;;2176:235:2;;;;;;;;;;-1:-1:-1;2176:235:2;;;;;:::i;:::-;;:::i;842:29:14:-;;;;;;;;;;-1:-1:-1;842:29:14;;;;;;;;;;;;;;8679:4:15;8667:17;;;8649:36;;8637:2;8622:18;842:29:14;8507:184:15;1914:205:2;;;;;;;;;;-1:-1:-1;1914:205:2;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;701:42:14:-;;;;;;;;;;;;;;;6584:111;;;;;;;;;;;;;:::i;5974:602::-;;;;;;;;;;-1:-1:-1;5974:602:14;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1036:85:0:-;;;;;;;;;;-1:-1:-1;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;1036:85;;3091:377:14;;;;;;;;;;-1:-1:-1;3091:377:14;;;;;:::i;:::-;;:::i;2635:102:2:-;;;;;;;;;;;;;:::i;5358:608:14:-;;;;;;;;;;-1:-1:-1;5358:608:14;;;;;:::i;:::-;;:::i;750:46::-;;;;;;;;;;;;;;;4268:153:2;;;;;;;;;;-1:-1:-1;4268:153:2;;;;;:::i;:::-;;:::i;878:47:14:-;;;;;;;;;;-1:-1:-1;878:47:14;;;;;;;;;;;;;;10636:14:15;10624:27;;;10606:46;;10594:2;10579:18;878:47:14;10462:196:15;5352:320:2;;;;;;;;;;-1:-1:-1;5352:320:2;;;;;:::i;:::-;;:::i;2803:329::-;;;;;;;;;;-1:-1:-1;2803:329:2;;;;;:::i;:::-;;:::i;3760:129:14:-;;;;;;;;;;-1:-1:-1;3760:129:14;;;;;:::i;:::-;;:::i;1103:46::-;;;;;;;;;;-1:-1:-1;1103:46:14;;;;;:::i;:::-;;;;;;;;;;;;;;4487:162:2;;;;;;;;;;-1:-1:-1;4487:162:2;;;;;:::i;:::-;-1:-1:-1;;;;;4607:25:2;;;4584:4;4607:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4487:162;1918:198:0;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;4780:299:14:-;;;;;;;;;;-1:-1:-1;4780:299:14;;;;;:::i;:::-;;:::i;3476:276::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13045:2:15;1240:68:0;;;13027:21:15;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;1240:68:0;;;;;;;;;3605:7:14::1;:14;3589:5;:12;:30;3581:58;;;::::0;-1:-1:-1;;;3581:58:14;;13406:2:15;3581:58:14::1;::::0;::::1;13388:21:15::0;13445:2;13425:18;;;13418:30;13484:17;13464:18;;;13457:45;13519:18;;3581:58:14::1;13204:339:15::0;3581:58:14::1;3654:7;3650:95;3666:5;:12;3664:1;:14;;;3650:95;;;3723:7;3731:1;3723:10;;;;;;;;;;:::i;:::-;;;;;;;3699:11;:21;3711:5;3717:1;3711:8;;;;;;;;;;:::i;:::-;;;;;;;3699:21;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3699:21:14;:34;3679:3:::1;::::0;::::1;:::i;:::-;;;3650:95;;;;3476:276:::0;;:::o;990:222:5:-;1092:4;-1:-1:-1;;;;;;1115:50:5;;1130:35;1115:50;;:90;;;1169:36;1193:11;1169:23;:36::i;:::-;1108:97;990:222;-1:-1:-1;;990:222:5:o;2473:98:2:-;2527:13;2559:5;2552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2473:98;:::o;3984:217::-;4060:7;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:2;4079:73;;;;-1:-1:-1;;;4079:73:2;;14750:2:15;4079:73:2;;;14732:21:15;14789:2;14769:18;;;14762:30;14828:34;14808:18;;;14801:62;-1:-1:-1;;;14879:18:15;;;14872:42;14931:19;;4079:73:2;14548:408:15;4079:73:2;-1:-1:-1;4170:24:2;;;;:15;:24;;;;;;-1:-1:-1;;;;;4170:24:2;;3984:217::o;3522:401::-;3602:13;3618:23;3633:7;3618:14;:23::i;:::-;3602:39;;3665:5;-1:-1:-1;;;;;3659:11:2;:2;-1:-1:-1;;;;;3659:11:2;;;3651:57;;;;-1:-1:-1;;;3651:57:2;;15163:2:15;3651:57:2;;;15145:21:15;15202:2;15182:18;;;15175:30;15241:34;15221:18;;;15214:62;15312:3;15292:18;;;15285:31;15333:19;;3651:57:2;14961:397:15;3651:57:2;719:10:9;-1:-1:-1;;;;;3740:21:2;;;;:62;;-1:-1:-1;3765:37:2;3782:5;719:10:9;4487:162:2;:::i;3765:37::-;3719:165;;;;-1:-1:-1;;;3719:165:2;;15565:2:15;3719:165:2;;;15547:21:15;15604:2;15584:18;;;15577:30;15643:34;15623:18;;;15616:62;15714:26;15694:18;;;15687:54;15758:19;;3719:165:2;15363:420:15;3719:165:2;3895:21;3904:2;3908:7;3895:8;:21::i;4711:330::-;4900:41;719:10:9;4933:7:2;4900:18;:41::i;:::-;4892:103;;;;-1:-1:-1;;;4892:103:2;;15990:2:15;4892:103:2;;;15972:21:15;16029:2;16009:18;;;16002:30;16068:34;16048:18;;;16041:62;16139:19;16119:18;;;16112:47;16176:19;;4892:103:2;15788:413:15;4892:103:2;5006:28;5016:4;5022:2;5026:7;5006:9;:28::i;1291:253:5:-;1388:7;1423:23;1440:5;1423:16;:23::i;:::-;1415:5;:31;1407:87;;;;-1:-1:-1;;;1407:87:5;;16408:2:15;1407:87:5;;;16390:21:15;16447:2;16427:18;;;16420:30;16486:34;16466:18;;;16459:62;16557:13;16537:18;;;16530:41;16588:19;;1407:87:5;16206:407:15;1407:87:5;-1:-1:-1;;;;;;1511:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1291:253::o;1753:113:14:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13045:2:15;1240:68:0;;;13027:21:15;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;1240:68:0;12843:356:15;1240:68:0;1826:20:14::1;:32:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;1826:32:14;;::::1;::::0;;;::::1;::::0;;1753:113::o;6825:95::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13045:2:15;1240:68:0;;;13027:21:15;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;1240:68:0;12843:356:15;1240:68:0;6899:13:14::1;:7;6909:3:::0;;6899:13:::1;:::i;2169:914::-:0;1168:7:1;;;;1411:9;1403:38;;;;-1:-1:-1;;;1403:38:1;;16820:2:15;1403:38:1;;;16802:21:15;16859:2;16839:18;;;16832:30;-1:-1:-1;;;16878:18:15;;;16871:46;16934:18;;1403:38:1;16618:340:15;1403:38:1;2272:17:14::1;2291:12:::0;2307:16:::1;:14;:16::i;:::-;2271:52:::0;;-1:-1:-1;2271:52:14;-1:-1:-1;2354:17:14::1;2342:8;:29;;;;;;;;:::i;:::-;;;2334:56;;;::::0;-1:-1:-1;;;2334:56:14;;17165:2:15;2334:56:14::1;::::0;::::1;17147:21:15::0;17204:2;17184:18;;;17177:30;17243:16;17223:18;;;17216:44;17277:18;;2334:56:14::1;16963:338:15::0;2334:56:14::1;2435:30;2449:16;2435:11;:30;:::i;:::-;2409:56;;2425:6;2409:22;;:13;1702:10:5::0;:17;;1615:111;2409:13:14::1;:22;;;;:::i;:::-;:56;;2401:86;;;::::0;-1:-1:-1;;;2401:86:14;;17863:2:15;2401:86:14::1;::::0;::::1;17845:21:15::0;17902:2;17882:18;;;17875:30;17941:19;17921:18;;;17914:47;17978:18;;2401:86:14::1;17661:341:15::0;2401:86:14::1;2513:15;2501:8;:27;;;;;;;;:::i;:::-;;2498:313;;2565:12;2553:8;:24;;;;;;;;:::i;:::-;;:75;;2602:1;2593:6;:10;;;:35;;;;-1:-1:-1::0;2617:11:14::1;::::0;::::1;::::0;;;::::1;::::0;::::1;2607:21:::0;;::::1;;;2593:35;2553:75;;;2589:1;2580:6;:10;;;2553:75;2545:107;;;::::0;-1:-1:-1;;;2545:107:14;;18209:2:15;2545:107:14::1;::::0;::::1;18191:21:15::0;18248:2;18228:18;;;18221:30;18287:21;18267:18;;;18260:49;18326:18;;2545:107:14::1;18007:343:15::0;2545:107:14::1;2675:36;2689:8;2699:11;;2675:13;:36::i;:::-;2667:65;;;::::0;-1:-1:-1;;;2667:65:14;;18557:2:15;2667:65:14::1;::::0;::::1;18539:21:15::0;18596:2;18576:18;;;18569:30;18635:18;18615;;;18608:46;18671:18;;2667:65:14::1;18355:340:15::0;2667:65:14::1;2498:313;;;2782:1;2773:6;:10;;;2765:34;;;::::0;-1:-1:-1;;;2765:34:14;;18902:2:15;2765:34:14::1;::::0;::::1;18884:21:15::0;18941:2;18921:18;;;18914:30;18980:13;18960:18;;;18953:41;19011:18;;2765:34:14::1;18700:335:15::0;2765:34:14::1;2842:13;2851:4:::0;2842:13:::1;::::0;::::1;;:::i;:::-;2829:9;:26;2821:59;;;::::0;-1:-1:-1;;;2821:59:14;;19415:2:15;2821:59:14::1;::::0;::::1;19397:21:15::0;19454:2;19434:18;;;19427:30;19493:22;19473:18;;;19466:50;19533:18;;2821:59:14::1;19213:344:15::0;2821:59:14::1;2891:15;2909:13;1702:10:5::0;:17;;1615:111;2909:13:14::1;2891:31;;2937:7;2933:143;2949:6;2947:8;;:1;:8;;;2933:143;;;2976:34;2986:10;2998:11;;::::0;::::1;:7:::0;:11:::1;:::i;:::-;2976:9;:34::i;:::-;3030;::::0;;3044:10:::1;19736:74:15::0;;19841:2;19826:18;;19819:34;;;3030::14::1;::::0;19709:18:15;3030:34:14::1;;;;;;;2956:3;::::0;::::1;:::i;:::-;;;2933:143;;;;2260:823;;;2169:914:::0;;;:::o;6703:114::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13045:2:15;1240:68:0;;;13027:21:15;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;1240:68:0;12843:356:15;1240:68:0;1168:7:1;;;;1669:41:::1;;;::::0;-1:-1:-1;;;1669:41:1;;20066:2:15;1669:41:1::1;::::0;::::1;20048:21:15::0;20105:2;20085:18;;;20078:30;20144:22;20124:18;;;20117:50;20184:18;;1669:41:1::1;19864:344:15::0;1669:41:1::1;6763:10:14::2;:8;:10::i;:::-;6789:20;::::0;6798:10:::2;4386:74:15::0;;6789:20:14::2;::::0;4374:2:15;4359:18;6789:20:14::2;;;;;;;;6703:114::o:0;5107:179:2:-;5240:39;5257:4;5263:2;5267:7;5240:39;;;;;;;;;;;;:16;:39::i;1798:230:5:-;1873:7;1908:30;1702:10;:17;;1615:111;1908:30;1900:5;:38;1892:95;;;;-1:-1:-1;;;1892:95:5;;20415:2:15;1892:95:5;;;20397:21:15;20454:2;20434:18;;;20427:30;20493:34;20473:18;;;20466:62;20564:14;20544:18;;;20537:42;20596:19;;1892:95:5;20213:408:15;1892:95:5;2004:10;2015:5;2004:17;;;;;;;;:::i;:::-;;;;;;;;;1997:24;;1798:230;;;:::o;1874:287:14:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13045:2:15;1240:68:0;;;13027:21:15;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;1240:68:0;12843:356:15;1240:68:0;1979:1:14::1;1971:5;:9;1963:32;;;::::0;-1:-1:-1;;;1963:32:14;;20828:2:15;1963:32:14::1;::::0;::::1;20810:21:15::0;20867:2;20847:18;;;20840:30;20906:12;20886:18;;;20879:40;20936:18;;1963:32:14::1;20626:334:15::0;1963:32:14::1;2038:5;2014:10;:20;2025:8;2014:20;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:29;;2006:59;;;::::0;-1:-1:-1;;;2006:59:14;;21167:2:15;2006:59:14::1;::::0;::::1;21149:21:15::0;21206:2;21186:18;;;21179:30;21245:19;21225:18;;;21218:47;21282:18;;2006:59:14::1;20965:341:15::0;2006:59:14::1;2099:5;2076:10;:20;2087:8;2076:20;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;:28;;;;2120:33;2137:8;2147:5;2120:33;;;;;;;:::i;:::-;;;;;;;;1874:287:::0;;:::o;3897:875::-;4065:20;;3944:17;;;;4018:15;;4065:20;;;;;;;4049:36;;;;4045:82;;;-1:-1:-1;4106:17:14;;;;-1:-1:-1;3897:875:14;-1:-1:-1;3897:875:14:o;4045:82::-;4174:20;;4138:17;;4158:36;;4174:20;;;;;4158:13;:36;:::i;:::-;4138:56;;4221:6;4208:10;:19;;;4205:559;;;4248:12;;-1:-1:-1;4248:12:14;4262:10;:24;4248:12;4262:24;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4229:58;;;;;;3897:875;;:::o;4205:559::-;4320:6;4306:10;:20;;;;:43;;;;;4343:6;4330:10;:19;;;4306:43;4303:461;;;4370:13;;-1:-1:-1;4370:13:14;4385:10;:25;4370:13;4385:25;;4303:461;4444:6;4430:10;:20;;;;:44;;;;;4467:7;4454:10;:20;;;4430:44;4427:337;;;4495:12;;-1:-1:-1;4495:12:14;4509:10;:24;4495:12;4509:24;;4427:337;4567:7;4553:10;:21;;;;:45;;;;;4591:7;4578:10;:20;;;4553:45;4550:214;;;4619:12;;-1:-1:-1;4619:12:14;4633:10;:24;4619:12;4633:24;;4550:214;4691:7;4677:10;:21;;;4674:90;;4719:15;;-1:-1:-1;4719:15:14;4736:10;:27;4719:15;4736:27;;4674:90;3977:795;;3897:875;;:::o;2176:235:2:-;2248:7;2283:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2283:16:2;2317:19;2309:73;;;;-1:-1:-1;;;2309:73:2;;21743:2:15;2309:73:2;;;21725:21:15;21782:2;21762:18;;;21755:30;21821:34;21801:18;;;21794:62;21892:11;21872:18;;;21865:39;21921:19;;2309:73:2;21541:405:15;1914:205:2;1986:7;-1:-1:-1;;;;;2013:19:2;;2005:74;;;;-1:-1:-1;;;2005:74:2;;22153:2:15;2005:74:2;;;22135:21:15;22192:2;22172:18;;;22165:30;22231:34;22211:18;;;22204:62;22302:12;22282:18;;;22275:40;22332:19;;2005:74:2;21951:406:15;2005:74:2;-1:-1:-1;;;;;;2096:16:2;;;;;:9;:16;;;;;;;1914:205::o;1668:101:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13045:2:15;1240:68:0;;;13027:21:15;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;1240:68:0;12843:356:15;1240:68:0;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;6584:111:14:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13045:2:15;1240:68:0;;;13027:21:15;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;1240:68:0;12843:356:15;1240:68:0;1168:7:1;;;;1411:9:::1;1403:38;;;::::0;-1:-1:-1;;;1403:38:1;;16820:2:15;1403:38:1::1;::::0;::::1;16802:21:15::0;16859:2;16839:18;;;16832:30;-1:-1:-1;;;16878:18:15;;;16871:46;16934:18;;1403:38:1::1;16618:340:15::0;1403:38:1::1;6645:8:14::2;:6;:8::i;:::-;6669:18;::::0;6676:10:::2;4386:74:15::0;;6669:18:14::2;::::0;4374:2:15;4359:18;6669::14::2;4240:226:15::0;5974:602:14;6036:16;-1:-1:-1;;;;;6073:20:14;;6065:51;;;;-1:-1:-1;;;6065:51:14;;22564:2:15;6065:51:14;;;22546:21:15;22603:2;22583:18;;;22576:30;22642:20;22622:18;;;22615:48;22680:18;;6065:51:14;22362:342:15;6065:51:14;6127:18;6148:17;6158:6;6148:9;:17::i;:::-;6127:38;;6194:1;6180:10;:15;6176:393;;6257:16;;;6271:1;6257:16;;;;;;;;;;;-1:-1:-1;6250:23:14;5974:602;-1:-1:-1;;;5974:602:14:o;6176:393::-;6306:23;6346:10;6332:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6332:25:14;;6306:51;;6372:13;6400:130;6424:10;6416:5;:18;6400:130;;;6480:34;6500:6;6508:5;6480:19;:34::i;:::-;6464:6;6471:5;6464:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;6436:7;;;;:::i;:::-;;;;6400:130;;6176:393;6054:522;5974:602;;;:::o;3091:377::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13045:2:15;1240:68:0;;;13027:21:15;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;1240:68:0;12843:356:15;1240:68:0;3177:14:14::1;::::0;:43:::1;3204:16;3177:43:::0;::::1;::::0;:23:::1;::::0;::::1;::::0;::::1;::::0;:14:::1;:23;:::i;:::-;:43;;;;3169:77;;;::::0;-1:-1:-1;;;3169:77:14;;23280:2:15;3169:77:14::1;::::0;::::1;23262:21:15::0;23319:2;23299:18;;;23292:30;23358:23;23338:18;;;23331:51;23399:18;;3169:77:14::1;23078:345:15::0;3169:77:14::1;3259:15;3277:13;1702:10:5::0;:17;;1615:111;3277:13:14::1;3259:31;;3305:7;3301:125;3317:6;3315:8;;:1;:8;;;3301:125;;;3344:22;3350:2:::0;3354:11:::1;;::::0;::::1;:7:::0;:11:::1;:::i;:::-;3344:5;:22::i;:::-;3386:28;::::0;;-1:-1:-1;;;;;19754:55:15;;19736:74;;19841:2;19826:18;;19819:34;;;3386:28:14::1;::::0;19709:18:15;3386:28:14::1;;;;;;;3324:3;::::0;::::1;:::i;:::-;;;3301:125;;;-1:-1:-1::0;3436:14:14::1;:24:::0;;::::1;::::0;::::1;::::0;:14;::::1;::::0;:24:::1;::::0;;;::::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;3158:310;3091:377:::0;;:::o;2635:102:2:-;2691:13;2723:7;2716:14;;;;;:::i;5358:608:14:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;5430:10:14;:21;;:47;;-1:-1:-1;5469:8:14;;-1:-1:-1;;;;;5469:8:14;5455:10;:22;5430:47;5422:74;;;;-1:-1:-1;;;5422:74:14;;23630:2:15;5422:74:14;;;23612:21:15;23669:2;23649:18;;;23642:30;23708:16;23688:18;;;23681:44;23742:18;;5422:74:14;23428:338:15;5422:74:14;5524:1;5515:6;:10;5507:34;;;;-1:-1:-1;;;5507:34:14;;23973:2:15;5507:34:14;;;23955:21:15;24012:2;23992:18;;;23985:30;24051:13;24031:18;;;24024:41;24082:18;;5507:34:14;23771:335:15;5507:34:14;5570:21;5606:3;5602:86;;5645:6;5634:7;:17;;5626:50;;;;-1:-1:-1;;;5626:50:14;;24313:2:15;5626:50:14;;;24295:21:15;24352:2;24332:18;;;24325:30;24391:22;24371:18;;;24364:50;24431:18;;5626:50:14;24111:344:15;5626:50:14;5715:8;;-1:-1:-1;;;;;5715:8:14;5701:10;:22;5698:260;;;5770:13;;5760:6;5748:9;;:18;;;;:::i;:::-;:35;;5740:68;;;;-1:-1:-1;;;5740:68:14;;24662:2:15;5740:68:14;;;24644:21:15;24701:2;24681:18;;;24674:30;24740:22;24720:18;;;24713:50;24780:18;;5740:68:14;24460:344:15;5740:68:14;5836:6;5823:9;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;5865:8:14;;5857:34;;-1:-1:-1;;;;;5865:8:14;;;;5857:34;;;;;5884:6;;5865:8;5857:34;5865:8;5857:34;5884:6;5865:8;5857:34;;;;;;;;;;;;;;;;;;;;;3650:95:::1;3476:276:::0;;:::o;5698:260::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;5909:49:14;5935:3;:22;;5951:6;5935:22;;;5941:7;5935:22;5909:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4268:153:2;4362:52;719:10:9;4395:8:2;4405;4362:18;:52::i;:::-;4268:153;;:::o;5352:320::-;5521:41;719:10:9;5554:7:2;5521:18;:41::i;:::-;5513:103;;;;-1:-1:-1;;;5513:103:2;;15990:2:15;5513:103:2;;;15972:21:15;16029:2;16009:18;;;16002:30;16068:34;16048:18;;;16041:62;16139:19;16119:18;;;16112:47;16176:19;;5513:103:2;15788:413:15;5513:103:2;5626:39;5640:4;5646:2;5650:7;5659:5;5626:13;:39::i;2803:329::-;7209:4;7232:16;;;:7;:16;;;;;;2876:13;;-1:-1:-1;;;;;7232:16:2;2901:76;;;;-1:-1:-1;;;2901:76:2;;25011:2:15;2901:76:2;;;24993:21:15;25050:2;25030:18;;;25023:30;25089:34;25069:18;;;25062:62;25160:17;25140:18;;;25133:45;25195:19;;2901:76:2;24809:411:15;2901:76:2;2988:21;3012:10;:8;:10::i;:::-;2988:34;;3063:1;3045:7;3039:21;:25;:86;;;;;;;;;;;;;;;;;3091:7;3100:18;:7;:16;:18::i;:::-;3074:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3039:86;3032:93;2803:329;-1:-1:-1;;;2803:329:2:o;3760:129:14:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13045:2:15;1240:68:0;;;13027:21:15;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;1240:68:0;12843:356:15;1240:68:0;3875:6:14::1;3851:11;:21;3863:8;3851:21;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3851:21:14;:30;-1:-1:-1;;3760:129:14:o;1918:198:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13045:2:15;1240:68:0;;;13027:21:15;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;1240:68:0;12843:356:15;1240:68:0;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;25902:2:15;1998:73:0::1;::::0;::::1;25884:21:15::0;25941:2;25921:18;;;25914:30;25980:34;25960:18;;;25953:62;26051:8;26031:18;;;26024:36;26077:19;;1998:73:0::1;25700:402:15::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;4780:299:14:-;4850:4;4868:17;4890:16;:14;:16::i;:::-;-1:-1:-1;4867:39:14;-1:-1:-1;4932:15:14;4920:8;:27;;;;;;;;:::i;:::-;;4917:43;;;4956:4;4949:11;;;;;4917:43;4986:17;4974:8;:29;;;;;;;;:::i;:::-;;4971:46;;;5012:5;5005:12;;;;;4971:46;5035:36;5049:8;5059:11;;5035:13;:36::i;:::-;5028:43;4780:299;-1:-1:-1;;;;4780:299:14:o;1555:300:2:-;1657:4;-1:-1:-1;;;;;;1692:40:2;;1707:25;1692:40;;:104;;-1:-1:-1;;;;;;;1748:48:2;;1763:33;1748:48;1692:104;:156;;;-1:-1:-1;952:25:12;-1:-1:-1;;;;;;937:40:12;;;1812:36:2;829:155:12;10995:171:2;11069:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;11069:29:2;-1:-1:-1;;;;;11069:29:2;;;;;;;;:24;;11122:23;11069:24;11122:14;:23::i;:::-;-1:-1:-1;;;;;11113:46:2;;;;;;;;;;;10995:171;;:::o;7427:344::-;7520:4;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:2;7536:73;;;;-1:-1:-1;;;7536:73:2;;26309:2:15;7536:73:2;;;26291:21:15;26348:2;26328:18;;;26321:30;26387:34;26367:18;;;26360:62;-1:-1:-1;;;26438:18:15;;;26431:42;26490:19;;7536:73:2;26107:408:15;7536:73:2;7619:13;7635:23;7650:7;7635:14;:23::i;:::-;7619:39;;7687:5;-1:-1:-1;;;;;7676:16:2;:7;-1:-1:-1;;;;;7676:16:2;;:51;;;;7720:7;-1:-1:-1;;;;;7696:31:2;:20;7708:7;7696:11;:20::i;:::-;-1:-1:-1;;;;;7696:31:2;;7676:51;:87;;;-1:-1:-1;;;;;;4607:25:2;;;4584:4;4607:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7731:32;4487:162;10324:560;10478:4;-1:-1:-1;;;;;10451:31:2;:23;10466:7;10451:14;:23::i;:::-;-1:-1:-1;;;;;10451:31:2;;10443:85;;;;-1:-1:-1;;;10443:85:2;;26722:2:15;10443:85:2;;;26704:21:15;26761:2;26741:18;;;26734:30;26800:34;26780:18;;;26773:62;26871:11;26851:18;;;26844:39;26900:19;;10443:85:2;26520:405:15;10443:85:2;-1:-1:-1;;;;;10546:16:2;;10538:65;;;;-1:-1:-1;;;10538:65:2;;27132:2:15;10538:65:2;;;27114:21:15;27171:2;27151:18;;;27144:30;27210:34;27190:18;;;27183:62;27281:6;27261:18;;;27254:34;27305:19;;10538:65:2;26930:400:15;10538:65:2;10614:39;10635:4;10641:2;10645:7;10614:20;:39::i;:::-;10715:29;10732:1;10736:7;10715:8;:29::i;:::-;-1:-1:-1;;;;;10755:15:2;;;;;;:9;:15;;;;;:20;;10774:1;;10755:15;:20;;10774:1;;10755:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10785:13:2;;;;;;:9;:13;;;;;:18;;10802:1;;10785:13;:18;;10802:1;;10785:18;:::i;:::-;;;;-1:-1:-1;;10813:16:2;;;;:7;:16;;;;;;:21;;-1:-1:-1;;10813:21:2;-1:-1:-1;;;;;10813:21:2;;;;;;;;;10850:27;;10813:16;;10850:27;;;;;;;10324:560;;;:::o;5087:263:14:-;5233:28;;-1:-1:-1;;5250:10:14;27614:2:15;27610:15;27606:53;5233:28:14;;;27594:66:15;5185:10:14;;;;27676:12:15;;5233:28:14;;;;;;;;;;;;5223:39;;;;;;5208:54;;5281:61;5300:12;;5281:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5314:11:14;;-1:-1:-1;5281:61:14;-1:-1:-1;5326:8:14;;-1:-1:-1;5314:21:14;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5337:4;5281:18;:61::i;:::-;5273:69;5087:263;-1:-1:-1;;;;;5087:263:14:o;8101:108:2:-;8176:26;8186:2;8190:7;8176:26;;;;;;;;;;;;:9;:26::i;2110:117:1:-;1168:7;;;;1669:41;;;;-1:-1:-1;;;1669:41:1;;20066:2:15;1669:41:1;;;20048:21:15;20105:2;20085:18;;;20078:30;20144:22;20124:18;;;20117:50;20184:18;;1669:41:1;19864:344:15;1669:41:1;2168:7:::1;:15:::0;;-1:-1:-1;;2168:15:1::1;::::0;;2198:22:::1;719:10:9::0;2207:12:1::1;2198:22;::::0;-1:-1:-1;;;;;4404:55:15;;;4386:74;;4374:2;4359:18;2198:22:1::1;4240:226:15::0;2270:187:0;2343:16;2362:6;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;2378:17:0;;;;;;2410:40;;2362:6;;;;;;;2410:40;;2343:16;2410:40;2333:124;2270:187;:::o;1863:115:1:-;1168:7;;;;1411:9;1403:38;;;;-1:-1:-1;;;1403:38:1;;16820:2:15;1403:38:1;;;16802:21:15;16859:2;16839:18;;;16832:30;-1:-1:-1;;;16878:18:15;;;16871:46;16934:18;;1403:38:1;16618:340:15;1403:38:1;1922:7:::1;:14:::0;;-1:-1:-1;;1922:14:1::1;1932:4;1922:14;::::0;;1951:20:::1;1958:12;719:10:9::0;;640:96;9063:372:2;-1:-1:-1;;;;;9142:16:2;;9134:61;;;;-1:-1:-1;;;9134:61:2;;27901:2:15;9134:61:2;;;27883:21:15;;;27920:18;;;27913:30;27979:34;27959:18;;;27952:62;28031:18;;9134:61:2;27699:356:15;9134:61:2;7209:4;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:2;:30;9205:58;;;;-1:-1:-1;;;9205:58:2;;28262:2:15;9205:58:2;;;28244:21:15;28301:2;28281:18;;;28274:30;28340;28320:18;;;28313:58;28388:18;;9205:58:2;28060:352:15;9205:58:2;9274:45;9303:1;9307:2;9311:7;9274:20;:45::i;:::-;-1:-1:-1;;;;;9330:13:2;;;;;;:9;:13;;;;;:18;;9347:1;;9330:13;:18;;9347:1;;9330:18;:::i;:::-;;;;-1:-1:-1;;9358:16:2;;;;:7;:16;;;;;;:21;;-1:-1:-1;;9358:21:2;-1:-1:-1;;;;;9358:21:2;;;;;;;;9395:33;;9358:16;;;9395:33;;9358:16;;9395:33;9063:372;;:::o;11301:307::-;11451:8;-1:-1:-1;;;;;11442:17:2;:5;-1:-1:-1;;;;;11442:17:2;;;11434:55;;;;-1:-1:-1;;;11434:55:2;;28619:2:15;11434:55:2;;;28601:21:15;28658:2;28638:18;;;28631:30;28697:27;28677:18;;;28670:55;28742:18;;11434:55:2;28417:349:15;11434:55:2;-1:-1:-1;;;;;11499:25:2;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11499:46:2;;;;;;;;;;11560:41;;3252::15;;;11560::2;;3225:18:15;11560:41:2;;;;;;;11301:307;;;:::o;6534:::-;6685:28;6695:4;6701:2;6705:7;6685:9;:28::i;:::-;6731:48;6754:4;6760:2;6764:7;6773:5;6731:22;:48::i;:::-;6723:111;;;;-1:-1:-1;;;6723:111:2;;28973:2:15;6723:111:2;;;28955:21:15;29012:2;28992:18;;;28985:30;29051:34;29031:18;;;29024:62;-1:-1:-1;;;29102:18:15;;;29095:48;29160:19;;6723:111:2;28771:414:15;6928:100:14;6980:13;7013:7;7006:14;;;;;:::i;328:703:10:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:10;;;;;;;;;;;;;;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:10;;-1:-1:-1;773:2:10;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:10;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:10;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;972:11:10;981:2;972:11;;:::i;:::-;;;844:150;;2624:572:5;-1:-1:-1;;;;;2823:18:5;;2819:183;;2857:40;2889:7;4005:10;:17;;3978:24;;;;:15;:24;;;;;:44;;;4032:24;;;;;;;;;;;;3902:161;2857:40;2819:183;;;2926:2;-1:-1:-1;;;;;2918:10:5;:4;-1:-1:-1;;;;;2918:10:5;;2914:88;;2944:47;2977:4;2983:7;2944:32;:47::i;:::-;-1:-1:-1;;;;;3015:16:5;;3011:179;;3047:45;3084:7;3047:36;:45::i;3011:179::-;3119:4;-1:-1:-1;;;;;3113:10:5;:2;-1:-1:-1;;;;;3113:10:5;;3109:81;;3139:40;3167:2;3171:7;3139:27;:40::i;847:184:11:-;968:4;1020;991:25;1004:5;1011:4;991:12;:25::i;:::-;:33;;847:184;-1:-1:-1;;;;847:184:11:o;8430:311:2:-;8555:18;8561:2;8565:7;8555:5;:18::i;:::-;8604:54;8635:1;8639:2;8643:7;8652:5;8604:22;:54::i;:::-;8583:151;;;;-1:-1:-1;;;8583:151:2;;28973:2:15;8583:151:2;;;28955:21:15;29012:2;28992:18;;;28985:30;29051:34;29031:18;;;29024:62;-1:-1:-1;;;29102:18:15;;;29095:48;29160:19;;8583:151:2;28771:414:15;12161:778:2;12311:4;-1:-1:-1;;;;;12331:13:2;;1087:20:8;1133:8;12327:606:2;;12366:72;;-1:-1:-1;;;12366:72:2;;-1:-1:-1;;;;;12366:36:2;;;;;:72;;719:10:9;;12417:4:2;;12423:7;;12432:5;;12366:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12366:72:2;;;;;;;;-1:-1:-1;;12366:72:2;;;;;;;;;;;;:::i;:::-;;;12362:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12605:13:2;;12601:266;;12647:60;;-1:-1:-1;;;12647:60:2;;28973:2:15;12647:60:2;;;28955:21:15;29012:2;28992:18;;;28985:30;29051:34;29031:18;;;29024:62;-1:-1:-1;;;29102:18:15;;;29095:48;29160:19;;12647:60:2;28771:414:15;12601:266:2;12819:6;12813:13;12804:6;12800:2;12796:15;12789:38;12362:519;-1:-1:-1;;;;;;12488:51:2;-1:-1:-1;;;12488:51:2;;-1:-1:-1;12481:58:2;;12327:606;-1:-1:-1;12918:4:2;12161:778;;;;;;:::o;4680:970:5:-;4942:22;4992:1;4967:22;4984:4;4967:16;:22::i;:::-;:26;;;;:::i;:::-;5003:18;5024:26;;;:17;:26;;;;;;4942:51;;-1:-1:-1;5154:28:5;;;5150:323;;-1:-1:-1;;;;;5220:18:5;;5198:19;5220:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5269:30;;;;;;:44;;;5385:30;;:17;:30;;;;;:43;;;5150:323;-1:-1:-1;5566:26:5;;;;:17;:26;;;;;;;;5559:33;;;-1:-1:-1;;;;;5609:18:5;;;;;:12;:18;;;;;:34;;;;;;;5602:41;4680:970::o;5938:1061::-;6212:10;:17;6187:22;;6212:21;;6232:1;;6212:21;:::i;:::-;6243:18;6264:24;;;:15;:24;;;;;;6632:10;:26;;6187:46;;-1:-1:-1;6264:24:5;;6187:46;;6632:26;;;;;;:::i;:::-;;;;;;;;;6610:48;;6694:11;6669:10;6680;6669:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6773:28;;;:15;:28;;;;;;;:41;;;6942:24;;;;;6935:31;6976:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6009:990;;;5938:1061;:::o;3490:217::-;3574:14;3591:20;3608:2;3591:16;:20::i;:::-;-1:-1:-1;;;;;3621:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3665:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3490:217:5:o;1383:688:11:-;1466:7;1508:4;1466:7;1522:514;1546:5;:12;1542:1;:16;1522:514;;;1579:20;1602:5;1608:1;1602:8;;;;;;;;:::i;:::-;;;;;;;1579:31;;1644:12;1628;:28;1624:402;;1779:44;;;;;;30738:19:15;;;30773:12;;;30766:28;;;30810:12;;1779:44:11;;;;;;;;;;;;1769:55;;;;;;1754:70;;1624:402;;;1966:44;;;;;;30738:19:15;;;30773:12;;;30766:28;;;30810:12;;1966:44:11;;;;;;;;;;;;1956:55;;;;;;1941:70;;1624:402;-1:-1:-1;1560:3:11;;;;:::i;:::-;;;;1522:514;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:184:15;-1:-1:-1;;;63:1:15;56:88;163:4;160:1;153:15;187:4;184:1;177:15;203:275;274:2;268:9;339:2;320:13;;-1:-1:-1;;316:27:15;304:40;;374:18;359:34;;395:22;;;356:62;353:88;;;421:18;;:::i;:::-;457:2;450:22;203:275;;-1:-1:-1;203:275:15:o;483:189::-;549:4;582:18;574:6;571:30;568:56;;;604:18;;:::i;:::-;-1:-1:-1;649:1:15;645:14;661:4;641:25;;483:189::o;677:149::-;751:20;;800:1;790:12;;780:40;;816:1;813;806:12;780:40;677:149;;;:::o;831:668::-;885:5;938:3;931:4;923:6;919:17;915:27;905:55;;956:1;953;946:12;905:55;992:6;979:20;1018:4;1042:66;1058:49;1104:2;1058:49;:::i;:::-;1042:66;:::i;:::-;1142:15;;;1228:1;1224:10;;;;1212:23;;1208:32;;;1173:12;;;;1252:15;;;1249:35;;;1280:1;1277;1270:12;1249:35;1316:2;1308:6;1304:15;1328:142;1344:6;1339:3;1336:15;1328:142;;;1410:17;;1398:30;;1448:12;;;;1361;;1328:142;;;-1:-1:-1;1488:5:15;831:668;-1:-1:-1;;;;;;831:668:15:o;1504:1171::-;1635:6;1643;1696:2;1684:9;1675:7;1671:23;1667:32;1664:52;;;1712:1;1709;1702:12;1664:52;1752:9;1739:23;1781:18;1822:2;1814:6;1811:14;1808:34;;;1838:1;1835;1828:12;1808:34;1876:6;1865:9;1861:22;1851:32;;1921:7;1914:4;1910:2;1906:13;1902:27;1892:55;;1943:1;1940;1933:12;1892:55;1979:2;1966:16;2001:4;2025:66;2041:49;2087:2;2041:49;:::i;2025:66::-;2125:15;;;2207:1;2203:10;;;;2195:19;;2191:28;;;2156:12;;;;2231:19;;;2228:39;;;2263:1;2260;2253:12;2228:39;2287:11;;;;2307:154;2323:6;2318:3;2315:15;2307:154;;;2389:29;2414:3;2389:29;:::i;:::-;2377:42;;2340:12;;;;2439;;;;2307:154;;;2480:5;-1:-1:-1;;2523:18:15;;2510:32;;-1:-1:-1;;2554:16:15;;;2551:36;;;2583:1;2580;2573:12;2551:36;;2606:63;2661:7;2650:8;2639:9;2635:24;2606:63;:::i;:::-;2596:73;;;1504:1171;;;;;:::o;2680:177::-;-1:-1:-1;;;;;;2758:5:15;2754:78;2747:5;2744:89;2734:117;;2847:1;2844;2837:12;2862:245;2920:6;2973:2;2961:9;2952:7;2948:23;2944:32;2941:52;;;2989:1;2986;2979:12;2941:52;3028:9;3015:23;3047:30;3071:5;3047:30;:::i;3304:258::-;3376:1;3386:113;3400:6;3397:1;3394:13;3386:113;;;3476:11;;;3470:18;3457:11;;;3450:39;3422:2;3415:10;3386:113;;;3517:6;3514:1;3511:13;3508:48;;;-1:-1:-1;;3552:1:15;3534:16;;3527:27;3304:258::o;3567:::-;3609:3;3647:5;3641:12;3674:6;3669:3;3662:19;3690:63;3746:6;3739:4;3734:3;3730:14;3723:4;3716:5;3712:16;3690:63;:::i;:::-;3807:2;3786:15;-1:-1:-1;;3782:29:15;3773:39;;;;3814:4;3769:50;;3567:258;-1:-1:-1;;3567:258:15:o;3830:220::-;3979:2;3968:9;3961:21;3942:4;3999:45;4040:2;4029:9;4025:18;4017:6;3999:45;:::i;4055:180::-;4114:6;4167:2;4155:9;4146:7;4142:23;4138:32;4135:52;;;4183:1;4180;4173:12;4135:52;-1:-1:-1;4206:23:15;;4055:180;-1:-1:-1;4055:180:15:o;4471:196::-;4539:20;;-1:-1:-1;;;;;4588:54:15;;4578:65;;4568:93;;4657:1;4654;4647:12;4672:254;4740:6;4748;4801:2;4789:9;4780:7;4776:23;4772:32;4769:52;;;4817:1;4814;4807:12;4769:52;4840:29;4859:9;4840:29;:::i;:::-;4830:39;4916:2;4901:18;;;;4888:32;;-1:-1:-1;;;4672:254:15:o;5113:328::-;5190:6;5198;5206;5259:2;5247:9;5238:7;5234:23;5230:32;5227:52;;;5275:1;5272;5265:12;5227:52;5298:29;5317:9;5298:29;:::i;:::-;5288:39;;5346:38;5380:2;5369:9;5365:18;5346:38;:::i;:::-;5336:48;;5431:2;5420:9;5416:18;5403:32;5393:42;;5113:328;;;;;:::o;5446:280::-;5504:6;5557:2;5545:9;5536:7;5532:23;5528:32;5525:52;;;5573:1;5570;5563:12;5525:52;5612:9;5599:23;5662:14;5655:5;5651:26;5644:5;5641:37;5631:65;;5692:1;5689;5682:12;5731:592;5802:6;5810;5863:2;5851:9;5842:7;5838:23;5834:32;5831:52;;;5879:1;5876;5869:12;5831:52;5919:9;5906:23;5948:18;5989:2;5981:6;5978:14;5975:34;;;6005:1;6002;5995:12;5975:34;6043:6;6032:9;6028:22;6018:32;;6088:7;6081:4;6077:2;6073:13;6069:27;6059:55;;6110:1;6107;6100:12;6059:55;6150:2;6137:16;6176:2;6168:6;6165:14;6162:34;;;6192:1;6189;6182:12;6162:34;6237:7;6232:2;6223:6;6219:2;6215:15;6211:24;6208:37;6205:57;;;6258:1;6255;6248:12;6205:57;6289:2;6281:11;;;;;6311:6;;-1:-1:-1;5731:592:15;;-1:-1:-1;;;;5731:592:15:o;6328:367::-;6391:8;6401:6;6455:3;6448:4;6440:6;6436:17;6432:27;6422:55;;6473:1;6470;6463:12;6422:55;-1:-1:-1;6496:20:15;;6539:18;6528:30;;6525:50;;;6571:1;6568;6561:12;6525:50;6608:4;6600:6;6596:17;6584:29;;6668:3;6661:4;6651:6;6648:1;6644:14;6636:6;6632:27;6628:38;6625:47;6622:67;;;6685:1;6682;6675:12;6622:67;6328:367;;;;;:::o;6700:156::-;6766:20;;6826:4;6815:16;;6805:27;;6795:55;;6846:1;6843;6836:12;6861:507;6954:6;6962;6970;7023:2;7011:9;7002:7;6998:23;6994:32;6991:52;;;7039:1;7036;7029:12;6991:52;7079:9;7066:23;7112:18;7104:6;7101:30;7098:50;;;7144:1;7141;7134:12;7098:50;7183:70;7245:7;7236:6;7225:9;7221:22;7183:70;:::i;:::-;7272:8;;-1:-1:-1;7157:96:15;-1:-1:-1;7326:36:15;;-1:-1:-1;7358:2:15;7343:18;;7326:36;:::i;:::-;7316:46;;6861:507;;;;;:::o;7566:273::-;7647:6;7655;7708:2;7696:9;7687:7;7683:23;7679:32;7676:52;;;7724:1;7721;7714:12;7676:52;7747:35;7772:9;7747:35;:::i;7844:184::-;-1:-1:-1;;;7893:1:15;7886:88;7993:4;7990:1;7983:15;8017:4;8014:1;8007:15;8033:469;8206:2;8191:18;;8239:1;8228:13;;8218:201;;-1:-1:-1;;;8272:1:15;8265:88;8376:4;8373:1;8366:15;8404:4;8401:1;8394:15;8218:201;8428:25;;;8484:2;8469:18;8462:34;8033:469;:::o;8696:186::-;8755:6;8808:2;8796:9;8787:7;8783:23;8779:32;8776:52;;;8824:1;8821;8814:12;8776:52;8847:29;8866:9;8847:29;:::i;8887:632::-;9058:2;9110:21;;;9180:13;;9083:18;;;9202:22;;;9029:4;;9058:2;9281:15;;;;9255:2;9240:18;;;9029:4;9324:169;9338:6;9335:1;9332:13;9324:169;;;9399:13;;9387:26;;9468:15;;;;9433:12;;;;9360:1;9353:9;9324:169;;;-1:-1:-1;9510:3:15;;8887:632;-1:-1:-1;;;;;;8887:632:15:o;9524:256::-;9590:6;9598;9651:2;9639:9;9630:7;9626:23;9622:32;9619:52;;;9667:1;9664;9657:12;9619:52;9690:29;9709:9;9690:29;:::i;:::-;9680:39;;9738:36;9770:2;9759:9;9755:18;9738:36;:::i;:::-;9728:46;;9524:256;;;;;:::o;9785:160::-;9850:20;;9906:13;;9899:21;9889:32;;9879:60;;9935:1;9932;9925:12;9950:248;10015:6;10023;10076:2;10064:9;10055:7;10051:23;10047:32;10044:52;;;10092:1;10089;10082:12;10044:52;10115:26;10131:9;10115:26;:::i;10203:254::-;10268:6;10276;10329:2;10317:9;10308:7;10304:23;10300:32;10297:52;;;10345:1;10342;10335:12;10297:52;10368:29;10387:9;10368:29;:::i;:::-;10358:39;;10416:35;10447:2;10436:9;10432:18;10416:35;:::i;10663:980::-;10758:6;10766;10774;10782;10835:3;10823:9;10814:7;10810:23;10806:33;10803:53;;;10852:1;10849;10842:12;10803:53;10875:29;10894:9;10875:29;:::i;:::-;10865:39;;10923:2;10944:38;10978:2;10967:9;10963:18;10944:38;:::i;:::-;10934:48;;11029:2;11018:9;11014:18;11001:32;10991:42;;11084:2;11073:9;11069:18;11056:32;11107:18;11148:2;11140:6;11137:14;11134:34;;;11164:1;11161;11154:12;11134:34;11202:6;11191:9;11187:22;11177:32;;11247:7;11240:4;11236:2;11232:13;11228:27;11218:55;;11269:1;11266;11259:12;11218:55;11305:2;11292:16;11327:2;11323;11320:10;11317:36;;;11333:18;;:::i;:::-;11375:53;11418:2;11399:13;;-1:-1:-1;;11395:27:15;11391:36;;11375:53;:::i;:::-;11362:66;;11451:2;11444:5;11437:17;11491:7;11486:2;11481;11477;11473:11;11469:20;11466:33;11463:53;;;11512:1;11509;11502:12;11463:53;11567:2;11562;11558;11554:11;11549:2;11542:5;11538:14;11525:45;11611:1;11606:2;11601;11594:5;11590:14;11586:23;11579:34;;11632:5;11622:15;;;;;10663:980;;;;;;;:::o;11926:205::-;11998:6;12051:2;12039:9;12030:7;12026:23;12022:32;12019:52;;;12067:1;12064;12057:12;12019:52;12090:35;12115:9;12090:35;:::i;12136:260::-;12204:6;12212;12265:2;12253:9;12244:7;12240:23;12236:32;12233:52;;;12281:1;12278;12271:12;12233:52;12304:29;12323:9;12304:29;:::i;:::-;12294:39;;12352:38;12386:2;12375:9;12371:18;12352:38;:::i;12401:437::-;12487:6;12495;12548:2;12536:9;12527:7;12523:23;12519:32;12516:52;;;12564:1;12561;12554:12;12516:52;12604:9;12591:23;12637:18;12629:6;12626:30;12623:50;;;12669:1;12666;12659:12;12623:50;12708:70;12770:7;12761:6;12750:9;12746:22;12708:70;:::i;:::-;12797:8;;12682:96;;-1:-1:-1;12401:437:15;-1:-1:-1;;;;12401:437:15:o;13548:184::-;-1:-1:-1;;;13597:1:15;13590:88;13697:4;13694:1;13687:15;13721:4;13718:1;13711:15;13737:184;-1:-1:-1;;;13786:1:15;13779:88;13886:4;13883:1;13876:15;13910:4;13907:1;13900:15;13926:175;13963:3;14007:4;14000:5;13996:16;14036:4;14027:7;14024:17;14021:43;;;14044:18;;:::i;:::-;14093:1;14080:15;;13926:175;-1:-1:-1;;13926:175:15:o;14106:437::-;14185:1;14181:12;;;;14228;;;14249:61;;14303:4;14295:6;14291:17;14281:27;;14249:61;14356:2;14348:6;14345:14;14325:18;14322:38;14319:218;;;-1:-1:-1;;;14390:1:15;14383:88;14494:4;14491:1;14484:15;14522:4;14519:1;14512:15;17306:217;17345:4;17374:6;17430:10;;;;17400;;17452:12;;;17449:38;;;17467:18;;:::i;:::-;17504:13;;17306:217;-1:-1:-1;;;17306:217:15:o;17528:128::-;17568:3;17599:1;17595:6;17592:1;17589:13;17586:39;;;17605:18;;:::i;:::-;-1:-1:-1;17641:9:15;;17528:128::o;19040:168::-;19080:7;19146:1;19142;19138:6;19134:14;19131:1;19128:21;19123:1;19116:9;19109:17;19105:45;19102:71;;;19153:18;;:::i;:::-;-1:-1:-1;19193:9:15;;19040:168::o;21311:225::-;21350:4;21379:14;21443:10;;;;21413;;21465:12;;;21462:38;;;21480:18;;:::i;22709:135::-;22748:3;-1:-1:-1;;22769:17:15;;22766:43;;;22789:18;;:::i;:::-;-1:-1:-1;22836:1:15;22825:13;;22709:135::o;22849:224::-;22888:3;22916:6;22949:2;22946:1;22942:10;22979:2;22976:1;22972:10;23010:3;23006:2;23002:12;22997:3;22994:21;22991:47;;;23018:18;;:::i;:::-;23054:13;;22849:224;-1:-1:-1;;;;22849:224:15:o;25225:470::-;25404:3;25442:6;25436:13;25458:53;25504:6;25499:3;25492:4;25484:6;25480:17;25458:53;:::i;:::-;25574:13;;25533:16;;;;25596:57;25574:13;25533:16;25630:4;25618:17;;25596:57;:::i;27335:125::-;27375:4;27403:1;27400;27397:8;27394:34;;;27408:18;;:::i;:::-;-1:-1:-1;27445:9:15;;27335:125::o;29190:184::-;-1:-1:-1;;;29239:1:15;29232:88;29339:4;29336:1;29329:15;29363:4;29360:1;29353:15;29379:120;29419:1;29445;29435:35;;29450:18;;:::i;:::-;-1:-1:-1;29484:9:15;;29379:120::o;29504:112::-;29536:1;29562;29552:35;;29567:18;;:::i;:::-;-1:-1:-1;29601:9:15;;29504:112::o;29621:512::-;29815:4;-1:-1:-1;;;;;29925:2:15;29917:6;29913:15;29902:9;29895:34;29977:2;29969:6;29965:15;29960:2;29949:9;29945:18;29938:43;;30017:6;30012:2;30001:9;29997:18;29990:34;30060:3;30055:2;30044:9;30040:18;30033:31;30081:46;30122:3;30111:9;30107:19;30099:6;30081:46;:::i;:::-;30073:54;29621:512;-1:-1:-1;;;;;;29621:512:15:o;30138:249::-;30207:6;30260:2;30248:9;30239:7;30235:23;30231:32;30228:52;;;30276:1;30273;30266:12;30228:52;30308:9;30302:16;30327:30;30351:5;30327:30;:::i;30392:184::-;-1:-1:-1;;;30441:1:15;30434:88;30541:4;30538:1;30531:15;30565:4;30562:1;30555:15

Swarm Source

none
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.