ETH Price: $3,388.97 (-1.53%)
Gas: 2 Gwei

Token

ZombieFrens (ZFREN)
 

Overview

Max Total Supply

9,182 ZFREN

Holders

3,335

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ZFREN
0xce925fd92823a25789d6834c95ab10ad7eebc7f7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

[[SOLD OUT IN 51 MINUTES]] Zombie Frens is a collection on the Ethereum blockchain with an extensive and ambitious roadmap. Utility such as gamified staking and breeding, where zombies and humans compete on-chain for $BRAINS. Integration into the metaverse also on the roadmap.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ZombieFrens

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, GNU AGPLv3 license
File 1 of 16 : IYieldVestment.sol
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.4;

/// @author tempest-sol
interface IYieldVestment {
    function isVested(uint256 tokenId) external view returns (bool vested);
}

File 2 of 16 : ZombieFrens.sol
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.4;

import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {ERC721, ERC721Enumerable} from "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import {TeiredWhitelist} from "./TeiredWhitelist.sol";
import {IYieldVestment} from "./IYieldVestment.sol";

/// @author tempest-sol
contract ZombieFrens is Ownable, ERC721Enumerable, TeiredWhitelist {

    IYieldVestment public vestmentPool;

    uint256 constant public MAX_ZOMBIES = 9999;

    uint8 constant public PER_WALLET_MINT = 10;
    uint8 constant public MAX_PER_TX = 2;
    uint8 constant public MAXIMUM_RESERVE = 100;
    uint8 public reserveCount;

    bool public publicSaleActive;

    string private baseURI;
    
    mapping(address => uint8) public reserveList;

    event ZombieMinted(address minter, uint8 amount);

    event PublicSaleStatusChanged(bool oldStatus, bool newStatus);

    event ZombieReservedFor(address receiver, uint8 amount);

    constructor() ERC721("ZombieFrens", "ZFREN") { }

    function setVestmentPool(address _vestmentPool) external onlyOwner {
        vestmentPool = IYieldVestment(_vestmentPool);
    }

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

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

    function reserveFor(address to, uint8 amount) external onlyOwner {
        require(to != address(0x0), "zero_address");
        require(amount > 0, "amount_zero");
        require(reserveCount < MAXIMUM_RESERVE && reserveCount + amount <= MAXIMUM_RESERVE, "not_enough_reserve");

        reserveList[to] += amount;
    }

    function setWhitelistSale(WhitelistTeir teir) external onlyOwner {
        require(currentWhitelistSale != teir, "sale_already_active");
        require(!publicSaleActive, "public_sale_active");
        WhitelistTeir oldTeir = currentWhitelistSale;
        currentWhitelistSale = teir;

        emit WhitelistSaleChanged(oldTeir, currentWhitelistSale);
    }

    function claimWhitelist(bytes32[] calldata merkleProof, uint8 amount) external {
        super._claimWhitelist(merkleProof, amount);
        _mintZombie(msg.sender, amount);
        emit WhitelistClaimed(msg.sender, amount);
    }

    function claimReserved() external _hasReserves {
        uint8 reserves = getReserveCount();
        reserveList[msg.sender] -= reserves;
        _mintZombie(msg.sender, reserves);
    }

    function mint(uint8 amount) external _canMint(amount) _publicSale {
        _mintZombie(msg.sender, amount);
    }

    function _mintZombie(address to, uint8 amount) internal {
        uint256 tokenId = totalSupply();
        for(uint8 i = 0; i<amount; i++) {
            _safeMint(to, tokenId + i);
        }
        emit ZombieMinted(msg.sender, amount);
    }

    function flipPublicSale() external onlyOwner {
        currentWhitelistSale = WhitelistTeir.CONCLUDED;
        publicSaleActive = !publicSaleActive;
        emit PublicSaleStatusChanged(!publicSaleActive, publicSaleActive);
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override _notVested(tokenId) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function getReserveCount() public view returns (uint8 _reserveCount) {
        _reserveCount = reserveList[msg.sender];
    }

    function withdraw() external onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    modifier _canMint(uint8 amount) {
        require(amount <= MAX_PER_TX, "exceeds_tx_limit");
        require(balanceOf(msg.sender) + amount <= PER_WALLET_MINT, "exceeds_wallet_limit");
        _;
    }

    modifier _hasReserves() {
        require(reserveList[msg.sender] > 0, "no_reserves");
        _;
    }

    modifier _notVested(uint256 tokenId) {
        if(address(vestmentPool) != address(0x0)) {
            bool isVested = vestmentPool.isVested(tokenId);
            require(!isVested, "cannot_transfer_vested_token");
        }
        _;
    }

    modifier _publicSale() {
        if(currentWhitelistSale == WhitelistTeir.INACTIVE && !publicSaleActive) revert("no_active_sale");
        require(currentWhitelistSale == WhitelistTeir.CONCLUDED, "whitelist_sale_active");
        require(publicSaleActive, "public_sale_inactive");
        _;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 16 : 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 5 of 16 : TeiredWhitelist.sol
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.4;

import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

/// @author tempest-sol
abstract contract TeiredWhitelist {

    enum WhitelistTeir {
        INACTIVE,
        OG,
        OG_OG,
        CONCLUDED
    }

    WhitelistTeir public currentWhitelistSale;

    mapping(address => uint8) public claimedWhitelistMints;

    mapping(WhitelistTeir => bytes32) public merkleRoots;

    mapping(WhitelistTeir => uint8) public teiredWhitelistMintAmount;

    event WhitelistMerkleRootUpdated(WhitelistTeir teir, bytes32 oldMerkleRoot, bytes32 newMerkleRoot);

    event WhitelistSaleChanged(WhitelistTeir oldTeir, WhitelistTeir newTeir);

    event WhitelistClaimed(address claimee, uint8 amount);

    constructor() {
        teiredWhitelistMintAmount[WhitelistTeir.OG] = 3;
        teiredWhitelistMintAmount[WhitelistTeir.OG_OG] = 5;
    }

    function getClaimableAmount(WhitelistTeir teir) public view returns (uint8 amount) {
        uint8 mintable = teiredWhitelistMintAmount[teir];
        uint8 claimed = claimedWhitelistMints[msg.sender];
        amount = mintable > claimed ? mintable - claimed : 0;
    }

    function _claimWhitelist(bytes32[] calldata merkleProof, uint8 amount) internal virtual _canMintWhitelist(merkleProof, amount) {
        claimedWhitelistMints[msg.sender] += amount;
    }

    function updateWhitelistMerkle(WhitelistTeir teir, bytes32 _merkleRoot) external {
        require(teir > WhitelistTeir.INACTIVE && teir <= WhitelistTeir.OG_OG, "invalid_whitelist_teir");
        require(_merkleRoot != 0x0, "invalid_merkle_root");
        bytes32 currentRoot = merkleRoots[teir];
        merkleRoots[teir] =_merkleRoot;

        emit WhitelistMerkleRootUpdated(teir, currentRoot, _merkleRoot);
    }

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

    modifier _canMintWhitelist(bytes32[] calldata merkleProof, uint8 amount) {
        (WhitelistTeir teir, bool isValid) = whitelistData(merkleProof);
        require(isValid, "not_whitelisted");
        uint8 claimable = getClaimableAmount(teir);
        require(amount > 0 && amount <= claimable, "amount_exceeds_claimable");
        _;
    }

}

File 6 of 16 : 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 7 of 16 : 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 8 of 16 : 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 9 of 16 : 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 10 of 16 : 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 11 of 16 : 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 12 of 16 : 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 13 of 16 : 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 16 : 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 16 : 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);
}

File 16 of 16 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"oldStatus","type":"bool"},{"indexed":false,"internalType":"bool","name":"newStatus","type":"bool"}],"name":"PublicSaleStatusChanged","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":"claimee","type":"address"},{"indexed":false,"internalType":"uint8","name":"amount","type":"uint8"}],"name":"WhitelistClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum TeiredWhitelist.WhitelistTeir","name":"teir","type":"uint8"},{"indexed":false,"internalType":"bytes32","name":"oldMerkleRoot","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"WhitelistMerkleRootUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum TeiredWhitelist.WhitelistTeir","name":"oldTeir","type":"uint8"},{"indexed":false,"internalType":"enum TeiredWhitelist.WhitelistTeir","name":"newTeir","type":"uint8"}],"name":"WhitelistSaleChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint8","name":"amount","type":"uint8"}],"name":"ZombieMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint8","name":"amount","type":"uint8"}],"name":"ZombieReservedFor","type":"event"},{"inputs":[],"name":"MAXIMUM_RESERVE","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ZOMBIES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PER_WALLET_MINT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"claimWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedWhitelistMints","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentWhitelistSale","outputs":[{"internalType":"enum TeiredWhitelist.WhitelistTeir","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum TeiredWhitelist.WhitelistTeir","name":"teir","type":"uint8"}],"name":"getClaimableAmount","outputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserveCount","outputs":[{"internalType":"uint8","name":"_reserveCount","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum TeiredWhitelist.WhitelistTeir","name":"","type":"uint8"}],"name":"merkleRoots","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mint","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":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveCount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"reserveFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reserveList","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vestmentPool","type":"address"}],"name":"setVestmentPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum TeiredWhitelist.WhitelistTeir","name":"teir","type":"uint8"}],"name":"setWhitelistSale","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":"enum TeiredWhitelist.WhitelistTeir","name":"","type":"uint8"}],"name":"teiredWhitelistMintAmount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum TeiredWhitelist.WhitelistTeir","name":"teir","type":"uint8"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"updateWhitelistMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vestmentPool","outputs":[{"internalType":"contract IYieldVestment","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020016a5a6f6d6269654672656e7360a81b815250604051806040016040528060058152602001642d232922a760d91b8152506200006e620000686200010660201b60201c565b6200010a565b8151620000839060019060208501906200015a565b508051620000999060029060208401906200015a565b5050600e602052507fa7c5ba7114a813b50159add3a36832908dc83db71d0b9a24c2ad0f83be9582078054600360ff199182161790915560026000527f9adb202b1492743bc00c81d33cdc6423fa8c79109027eb6a845391e8fc1f0481805490911660051790556200023d565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001689062000200565b90600052602060002090601f0160209004810192826200018c5760008555620001d7565b82601f10620001a757805160ff1916838001178555620001d7565b82800160010185558215620001d7579182015b82811115620001d7578251825591602001919060010190620001ba565b50620001e5929150620001e9565b5090565b5b80821115620001e55760008155600101620001ea565b600181811c908216806200021557607f821691505b602082108114156200023757634e487b7160e01b600052602260045260246000fd5b50919050565b613250806200024d6000396000f3fe608060405234801561001057600080fd5b50600436106102e95760003560e01c80637da29baf11610191578063b9d7e762116100e3578063e5d383bd11610097578063ed5ecbd711610071578063ed5ecbd714610643578063f2fde38b14610656578063f43a22dc1461066957600080fd5b8063e5d383bd146105d1578063e985e9c5146105f4578063ec724e231461063057600080fd5b8063c87b56dd116100c8578063c87b56dd146105a3578063c9ddd90f146105b6578063e53eaacc146105c957600080fd5b8063b9d7e7621461057c578063bc8893b41461058f57600080fd5b806391a1f7fb11610145578063a22cb4651161011f578063a22cb46514610533578063ab3810e314610546578063b88d4fde1461056957600080fd5b806391a1f7fb146104f957806395d89b4114610513578063998065461461051b57600080fd5b8063834bbbb511610176578063834bbbb5146104cd57806388084605146104e05780638da5cb5b146104e857600080fd5b80637da29baf146104b15780637ed27bcf146104ba57600080fd5b80632f745c591161024a57806355f804b3116101fe5780636ecd2306116101d85780636ecd23061461048357806370a0823114610496578063715018a6146104a957600080fd5b806355f804b31461044a5780636352211e1461045d5780636742bf481461047057600080fd5b806341e5fb401161022f57806341e5fb401461040457806342842e0e146104245780634f6ccce71461043757600080fd5b80632f745c59146103e95780633ccfd60b146103fc57600080fd5b8063095ea7b3116102a157806316317c211161028657806316317c21146103b057806318160ddd146103c457806323b872dd146103d657600080fd5b8063095ea7b3146103955780630c5776de146103a857600080fd5b8063036a7a19116102d2578063036a7a191461034b57806306fdde0314610355578063081812fc1461036a57600080fd5b806301ffc9a7146102ee57806302bc5d0214610316575b600080fd5b6103016102fc366004612ea3565b610671565b60405190151581526020015b60405180910390f35b610339610324366004612edb565b600e6020526000908152604090205460ff1681565b60405160ff909116815260200161030d565b6103536106b5565b005b61035d610760565b60405161030d9190613089565b61037d610378366004612f56565b6107f2565b6040516001600160a01b03909116815260200161030d565b6103536103a3366004612db6565b610887565b610339600a81565b600f5461033990600160a01b900460ff1681565b6009545b60405190815260200161030d565b6103536103e4366004612ccc565b6109b9565b6103c86103f7366004612db6565b610a40565b610353610ae8565b6103c8610412366004612edb565b600d6020526000908152604090205481565b610353610432366004612ccc565b610b75565b6103c8610445366004612f56565b610b90565b610353610458366004612f10565b610c42565b61037d61046b366004612f56565b610caf565b600f5461037d906001600160a01b031681565b610353610491366004612f6e565b610d3a565b6103c86104a4366004612c80565b610f58565b610353610ff2565b6103c861270f81565b6103536104c8366004612ddf565b611058565b6103536104db366004612ef5565b611227565b6103536113fb565b6000546001600160a01b031661037d565b600b546105069060ff1681565b60405161030d9190613041565b61035d6114e1565b3360009081526011602052604090205460ff16610339565b610353610541366004612d80565b6114f0565b610339610554366004612c80565b600c6020526000908152604090205460ff1681565b610353610577366004612d07565b6114fb565b61035361058a366004612e08565b611589565b600f5461030190600160a81b900460ff1681565b61035d6105b1366004612f56565b6115d6565b6103536105c4366004612edb565b6116bf565b610339606481565b6103396105df366004612c80565b60116020526000908152604090205460ff1681565b610301610602366004612c9a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61033961063e366004612edb565b61187f565b610353610651366004612c80565b61190d565b610353610664366004612c80565b611989565b610339600281565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806106af57506106af82611a68565b92915050565b3360009081526011602052604090205460ff166107195760405162461bcd60e51b815260206004820152600b60248201527f6e6f5f726573657276657300000000000000000000000000000000000000000060448201526064015b60405180910390fd5b336000908152601160205260408120805460ff169182919061073b8380613104565b92506101000a81548160ff021916908360ff16021790555061075d3382611b03565b50565b60606001805461076f90613153565b80601f016020809104026020016040519081016040528092919081815260200182805461079b90613153565b80156107e85780601f106107bd576101008083540402835291602001916107e8565b820191906000526020600020905b8154815290600101906020018083116107cb57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661086b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610710565b506000908152600560205260409020546001600160a01b031690565b600061089282610caf565b9050806001600160a01b0316836001600160a01b0316141561091c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610710565b336001600160a01b038216148061093857506109388133610602565b6109aa5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610710565b6109b48383611b82565b505050565b6109c33382611bf0565b610a355760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610710565b6109b4838383611ce3565b6000610a4b83610f58565b8210610abf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610710565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610b425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b6040514790339082156108fc029083906000818181858888f19350505050158015610b71573d6000803e3d6000fd5b5050565b6109b4838383604051806020016040528060008152506114fb565b6000610b9b60095490565b8210610c0f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610710565b60098281548110610c3057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000546001600160a01b03163314610c9c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b8051610b71906010906020840190612b35565b6000818152600360205260408120546001600160a01b0316806106af5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610710565b80600260ff82161115610d8f5760405162461bcd60e51b815260206004820152601060248201527f657863656564735f74785f6c696d6974000000000000000000000000000000006044820152606401610710565b600a60ff8216610d9e33610f58565b610da8919061309c565b1115610df65760405162461bcd60e51b815260206004820152601460248201527f657863656564735f77616c6c65745f6c696d69740000000000000000000000006044820152606401610710565b6000600b5460ff166003811115610e1d57634e487b7160e01b600052602160045260246000fd5b148015610e345750600f54600160a81b900460ff16155b15610e815760405162461bcd60e51b815260206004820152600e60248201527f6e6f5f6163746976655f73616c650000000000000000000000000000000000006044820152606401610710565b6003600b5460ff166003811115610ea857634e487b7160e01b600052602160045260246000fd5b14610ef55760405162461bcd60e51b815260206004820152601560248201527f77686974656c6973745f73616c655f61637469766500000000000000000000006044820152606401610710565b600f54600160a81b900460ff16610f4e5760405162461bcd60e51b815260206004820152601460248201527f7075626c69635f73616c655f696e6163746976650000000000000000000000006044820152606401610710565b610b713383611b03565b60006001600160a01b038216610fd65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610710565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461104c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b6110566000611ebb565b565b6000546001600160a01b031633146110b25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b6001600160a01b0382166111085760405162461bcd60e51b815260206004820152600c60248201527f7a65726f5f6164647265737300000000000000000000000000000000000000006044820152606401610710565b60008160ff161161115b5760405162461bcd60e51b815260206004820152600b60248201527f616d6f756e745f7a65726f0000000000000000000000000000000000000000006044820152606401610710565b600f546064600160a01b90910460ff161080156111945750600f5460649061118e908390600160a01b900460ff166130b4565b60ff1611155b6111e05760405162461bcd60e51b815260206004820152601260248201527f6e6f745f656e6f7567685f7265736572766500000000000000000000000000006044820152606401610710565b6001600160a01b0382166000908152601160205260408120805483929061120b90849060ff166130b4565b92506101000a81548160ff021916908360ff1602179055505050565b600082600381111561124957634e487b7160e01b600052602160045260246000fd5b1180156112765750600282600381111561127357634e487b7160e01b600052602160045260246000fd5b11155b6112c25760405162461bcd60e51b815260206004820152601660248201527f696e76616c69645f77686974656c6973745f74656972000000000000000000006044820152606401610710565b8061130f5760405162461bcd60e51b815260206004820152601360248201527f696e76616c69645f6d65726b6c655f726f6f74000000000000000000000000006044820152606401610710565b6000600d600084600381111561133557634e487b7160e01b600052602160045260246000fd5b600381111561135457634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002054905081600d600085600381111561138a57634e487b7160e01b600052602160045260246000fd5b60038111156113a957634e487b7160e01b600052602160045260246000fd5b8152602001908152602001600020819055507ffda8d8105bd26b48c1313b83b5465649e369e57fff9890a2d23fae1c213ca3ab8382846040516113ee9392919061304f565b60405180910390a1505050565b6000546001600160a01b031633146114555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b600b805460ff19166003179055600f805460ff600160a81b80830482161581027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9093169290921792839055604080519290930416158082521560208201527f16686ab7ce3a91c78693d9747c5b3dd57fee7486489d72469662ca848d032364910160405180910390a1565b60606002805461076f90613153565b610b71338383611f0b565b6115053383611bf0565b6115775760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610710565b61158384848484611fda565b50505050565b611594838383612058565b61159e3382611b03565b6040805133815260ff831660208201527fa21f6e2f5b64c40c59427532385070f6cd9cd29222427e63860e3fb6c1bc226291016113ee565b6000818152600360205260409020546060906001600160a01b03166116635760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610710565b600061166d612170565b9050600081511161168d57604051806020016040528060008152506116b8565b806116978461217f565b6040516020016116a8929190612fd6565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146117195760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b80600381111561173957634e487b7160e01b600052602160045260246000fd5b600b5460ff16600381111561175e57634e487b7160e01b600052602160045260246000fd5b14156117ac5760405162461bcd60e51b815260206004820152601360248201527f73616c655f616c72656164795f616374697665000000000000000000000000006044820152606401610710565b600f54600160a81b900460ff16156118065760405162461bcd60e51b815260206004820152601260248201527f7075626c69635f73616c655f61637469766500000000000000000000000000006044820152606401610710565b600b805460ff811691839160ff1916600183600381111561183757634e487b7160e01b600052602160045260246000fd5b0217905550600b546040517f1c948aa6e9a41d047ecda0618280927e7da4060d6c1682be2ef68fc7f31338089161187391849160ff169061306e565b60405180910390a15050565b600080600e60008460038111156118a657634e487b7160e01b600052602160045260246000fd5b60038111156118c557634e487b7160e01b600052602160045260246000fd5b81526020808201929092526040908101600090812054338252600c909352205460ff9182169250168082116118fb576000611905565b6119058183613104565b949350505050565b6000546001600160a01b031633146119675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146119e35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b6001600160a01b038116611a5f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610710565b61075d81611ebb565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611acb57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106af57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146106af565b6000611b0e60095490565b905060005b8260ff168160ff161015611b4957611b3784611b3260ff84168561309c565b6122cd565b80611b41816131a9565b915050611b13565b506040805133815260ff841660208201527f17ae6f752053114b04748a7f33c7a7be70c39a0d763875071357dbb092d500a291016113ee565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bb782610caf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611c695760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610710565b6000611c7483610caf565b9050806001600160a01b0316846001600160a01b03161480611caf5750836001600160a01b0316611ca4846107f2565b6001600160a01b0316145b8061190557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16611905565b826001600160a01b0316611cf682610caf565b6001600160a01b031614611d725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610710565b6001600160a01b038216611ded5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610710565b611df88383836122e7565b611e03600082611b82565b6001600160a01b0383166000908152600460205260408120805460019290611e2c9084906130ed565b90915550506001600160a01b0382166000908152600460205260408120805460019290611e5a90849061309c565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03161415611f6d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610710565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611fe5848484611ce3565b611ff1848484846123ed565b6115835760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610710565b8282826000806120688585612545565b91509150806120b95760405162461bcd60e51b815260206004820152600f60248201527f6e6f745f77686974656c697374656400000000000000000000000000000000006044820152606401610710565b60006120c48361187f565b905060008460ff161180156120df57508060ff168460ff1611155b61212b5760405162461bcd60e51b815260206004820152601860248201527f616d6f756e745f657863656564735f636c61696d61626c6500000000000000006044820152606401610710565b336000908152600c60205260408120805489929061214d90849060ff166130b4565b92506101000a81548160ff021916908360ff160217905550505050505050505050565b60606010805461076f90613153565b6060816121bf57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156121e957806121d38161318e565b91506121e29050600a836130d9565b91506121c3565b60008167ffffffffffffffff81111561221257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561223c576020820181803683370190505b5090505b8415611905576122516001836130ed565b915061225e600a866131c9565b61226990603061309c565b60f81b81838151811061228c57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506122c6600a866130d9565b9450612240565b610b71828260405180602001604052806000815250612627565b600f5481906001600160a01b0316156123e257600f546040517f2cd6f789000000000000000000000000000000000000000000000000000000008152600481018390526000916001600160a01b031690632cd6f7899060240160206040518083038186803b15801561235857600080fd5b505afa15801561236c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123909190612e87565b905080156123e05760405162461bcd60e51b815260206004820152601c60248201527f63616e6e6f745f7472616e736665725f7665737465645f746f6b656e000000006044820152606401610710565b505b6115838484846126a5565b60006001600160a01b0384163b1561253a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612431903390899088908890600401613005565b602060405180830381600087803b15801561244b57600080fd5b505af192505050801561247b575060408051601f3d908101601f1916820190925261247891810190612ebf565b60015b612520573d8080156124a9576040519150601f19603f3d011682016040523d82523d6000602084013e6124ae565b606091505b5080516125185760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610710565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611905565b506001949350505050565b6040516bffffffffffffffffffffffff193360601b166020820152600090819081906034016040516020818303038152906040528051906020012090506126168585808060200260200160405190810160405280939291908181526020018383602002808284376000920182905250600b54600d945090925060ff16905060038111156125e257634e487b7160e01b600052602160045260246000fd5b600381111561260157634e487b7160e01b600052602160045260246000fd5b8152602001908152602001600020548361275d565b600b5460ff16969095509350505050565b6126318383612773565b61263e60008484846123ed565b6109b45760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610710565b6001600160a01b038316612700576126fb81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612723565b816001600160a01b0316836001600160a01b0316146127235761272383826128c1565b6001600160a01b03821661273a576109b48161295e565b826001600160a01b0316826001600160a01b0316146109b4576109b48282612a37565b60008261276a8584612a7b565b14949350505050565b6001600160a01b0382166127c95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610710565b6000818152600360205260409020546001600160a01b03161561282e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610710565b61283a600083836122e7565b6001600160a01b038216600090815260046020526040812080546001929061286390849061309c565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016128ce84610f58565b6128d891906130ed565b60008381526008602052604090205490915080821461292b576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612970906001906130ed565b6000838152600a6020526040812054600980549394509092849081106129a657634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600983815481106129d557634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612a1b57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612a4283610f58565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b600081815b8451811015612b2d576000858281518110612aab57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311612aed576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612b1a565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612b258161318e565b915050612a80565b509392505050565b828054612b4190613153565b90600052602060002090601f016020900481019282612b635760008555612ba9565b82601f10612b7c57805160ff1916838001178555612ba9565b82800160010185558215612ba9579182015b82811115612ba9578251825591602001919060010190612b8e565b50612bb5929150612bb9565b5090565b5b80821115612bb55760008155600101612bba565b600067ffffffffffffffff80841115612be957612be9613209565b604051601f8501601f19908116603f01168101908282118183101715612c1157612c11613209565b81604052809350858152868686011115612c2a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612c5b57600080fd5b919050565b803560048110612c5b57600080fd5b803560ff81168114612c5b57600080fd5b600060208284031215612c91578081fd5b6116b882612c44565b60008060408385031215612cac578081fd5b612cb583612c44565b9150612cc360208401612c44565b90509250929050565b600080600060608486031215612ce0578081fd5b612ce984612c44565b9250612cf760208501612c44565b9150604084013590509250925092565b60008060008060808587031215612d1c578081fd5b612d2585612c44565b9350612d3360208601612c44565b925060408501359150606085013567ffffffffffffffff811115612d55578182fd5b8501601f81018713612d65578182fd5b612d7487823560208401612bce565b91505092959194509250565b60008060408385031215612d92578182fd5b612d9b83612c44565b91506020830135612dab8161321f565b809150509250929050565b60008060408385031215612dc8578182fd5b612dd183612c44565b946020939093013593505050565b60008060408385031215612df1578182fd5b612dfa83612c44565b9150612cc360208401612c6f565b600080600060408486031215612e1c578283fd5b833567ffffffffffffffff80821115612e33578485fd5b818601915086601f830112612e46578485fd5b813581811115612e54578586fd5b8760208260051b8501011115612e68578586fd5b602092830195509350612e7e9186019050612c6f565b90509250925092565b600060208284031215612e98578081fd5b81516116b88161321f565b600060208284031215612eb4578081fd5b81356116b88161322d565b600060208284031215612ed0578081fd5b81516116b88161322d565b600060208284031215612eec578081fd5b6116b882612c60565b60008060408385031215612f07578182fd5b612dd183612c60565b600060208284031215612f21578081fd5b813567ffffffffffffffff811115612f37578182fd5b8201601f81018413612f47578182fd5b61190584823560208401612bce565b600060208284031215612f67578081fd5b5035919050565b600060208284031215612f7f578081fd5b6116b882612c6f565b60008151808452612fa0816020860160208601613127565b601f01601f19169290920160200192915050565b60048110612fd257634e487b7160e01b600052602160045260246000fd5b9052565b60008351612fe8818460208801613127565b835190830190612ffc818360208801613127565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526130376080830184612f88565b9695505050505050565b602081016106af8284612fb4565b6060810161305d8286612fb4565b602082019390935260400152919050565b6040810161307c8285612fb4565b6116b86020830184612fb4565b6020815260006116b86020830184612f88565b600082198211156130af576130af6131dd565b500190565b600060ff821660ff84168060ff038211156130d1576130d16131dd565b019392505050565b6000826130e8576130e86131f3565b500490565b6000828210156130ff576130ff6131dd565b500390565b600060ff821660ff84168082101561311e5761311e6131dd565b90039392505050565b60005b8381101561314257818101518382015260200161312a565b838111156115835750506000910152565b600181811c9082168061316757607f821691505b6020821081141561318857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131a2576131a26131dd565b5060010190565b600060ff821660ff8114156131c0576131c06131dd565b60010192915050565b6000826131d8576131d86131f3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461075d57600080fd5b6001600160e01b03198116811461075d57600080fdfea164736f6c6343000804000a

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102e95760003560e01c80637da29baf11610191578063b9d7e762116100e3578063e5d383bd11610097578063ed5ecbd711610071578063ed5ecbd714610643578063f2fde38b14610656578063f43a22dc1461066957600080fd5b8063e5d383bd146105d1578063e985e9c5146105f4578063ec724e231461063057600080fd5b8063c87b56dd116100c8578063c87b56dd146105a3578063c9ddd90f146105b6578063e53eaacc146105c957600080fd5b8063b9d7e7621461057c578063bc8893b41461058f57600080fd5b806391a1f7fb11610145578063a22cb4651161011f578063a22cb46514610533578063ab3810e314610546578063b88d4fde1461056957600080fd5b806391a1f7fb146104f957806395d89b4114610513578063998065461461051b57600080fd5b8063834bbbb511610176578063834bbbb5146104cd57806388084605146104e05780638da5cb5b146104e857600080fd5b80637da29baf146104b15780637ed27bcf146104ba57600080fd5b80632f745c591161024a57806355f804b3116101fe5780636ecd2306116101d85780636ecd23061461048357806370a0823114610496578063715018a6146104a957600080fd5b806355f804b31461044a5780636352211e1461045d5780636742bf481461047057600080fd5b806341e5fb401161022f57806341e5fb401461040457806342842e0e146104245780634f6ccce71461043757600080fd5b80632f745c59146103e95780633ccfd60b146103fc57600080fd5b8063095ea7b3116102a157806316317c211161028657806316317c21146103b057806318160ddd146103c457806323b872dd146103d657600080fd5b8063095ea7b3146103955780630c5776de146103a857600080fd5b8063036a7a19116102d2578063036a7a191461034b57806306fdde0314610355578063081812fc1461036a57600080fd5b806301ffc9a7146102ee57806302bc5d0214610316575b600080fd5b6103016102fc366004612ea3565b610671565b60405190151581526020015b60405180910390f35b610339610324366004612edb565b600e6020526000908152604090205460ff1681565b60405160ff909116815260200161030d565b6103536106b5565b005b61035d610760565b60405161030d9190613089565b61037d610378366004612f56565b6107f2565b6040516001600160a01b03909116815260200161030d565b6103536103a3366004612db6565b610887565b610339600a81565b600f5461033990600160a01b900460ff1681565b6009545b60405190815260200161030d565b6103536103e4366004612ccc565b6109b9565b6103c86103f7366004612db6565b610a40565b610353610ae8565b6103c8610412366004612edb565b600d6020526000908152604090205481565b610353610432366004612ccc565b610b75565b6103c8610445366004612f56565b610b90565b610353610458366004612f10565b610c42565b61037d61046b366004612f56565b610caf565b600f5461037d906001600160a01b031681565b610353610491366004612f6e565b610d3a565b6103c86104a4366004612c80565b610f58565b610353610ff2565b6103c861270f81565b6103536104c8366004612ddf565b611058565b6103536104db366004612ef5565b611227565b6103536113fb565b6000546001600160a01b031661037d565b600b546105069060ff1681565b60405161030d9190613041565b61035d6114e1565b3360009081526011602052604090205460ff16610339565b610353610541366004612d80565b6114f0565b610339610554366004612c80565b600c6020526000908152604090205460ff1681565b610353610577366004612d07565b6114fb565b61035361058a366004612e08565b611589565b600f5461030190600160a81b900460ff1681565b61035d6105b1366004612f56565b6115d6565b6103536105c4366004612edb565b6116bf565b610339606481565b6103396105df366004612c80565b60116020526000908152604090205460ff1681565b610301610602366004612c9a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61033961063e366004612edb565b61187f565b610353610651366004612c80565b61190d565b610353610664366004612c80565b611989565b610339600281565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806106af57506106af82611a68565b92915050565b3360009081526011602052604090205460ff166107195760405162461bcd60e51b815260206004820152600b60248201527f6e6f5f726573657276657300000000000000000000000000000000000000000060448201526064015b60405180910390fd5b336000908152601160205260408120805460ff169182919061073b8380613104565b92506101000a81548160ff021916908360ff16021790555061075d3382611b03565b50565b60606001805461076f90613153565b80601f016020809104026020016040519081016040528092919081815260200182805461079b90613153565b80156107e85780601f106107bd576101008083540402835291602001916107e8565b820191906000526020600020905b8154815290600101906020018083116107cb57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661086b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610710565b506000908152600560205260409020546001600160a01b031690565b600061089282610caf565b9050806001600160a01b0316836001600160a01b0316141561091c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610710565b336001600160a01b038216148061093857506109388133610602565b6109aa5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610710565b6109b48383611b82565b505050565b6109c33382611bf0565b610a355760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610710565b6109b4838383611ce3565b6000610a4b83610f58565b8210610abf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610710565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610b425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b6040514790339082156108fc029083906000818181858888f19350505050158015610b71573d6000803e3d6000fd5b5050565b6109b4838383604051806020016040528060008152506114fb565b6000610b9b60095490565b8210610c0f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610710565b60098281548110610c3057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000546001600160a01b03163314610c9c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b8051610b71906010906020840190612b35565b6000818152600360205260408120546001600160a01b0316806106af5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610710565b80600260ff82161115610d8f5760405162461bcd60e51b815260206004820152601060248201527f657863656564735f74785f6c696d6974000000000000000000000000000000006044820152606401610710565b600a60ff8216610d9e33610f58565b610da8919061309c565b1115610df65760405162461bcd60e51b815260206004820152601460248201527f657863656564735f77616c6c65745f6c696d69740000000000000000000000006044820152606401610710565b6000600b5460ff166003811115610e1d57634e487b7160e01b600052602160045260246000fd5b148015610e345750600f54600160a81b900460ff16155b15610e815760405162461bcd60e51b815260206004820152600e60248201527f6e6f5f6163746976655f73616c650000000000000000000000000000000000006044820152606401610710565b6003600b5460ff166003811115610ea857634e487b7160e01b600052602160045260246000fd5b14610ef55760405162461bcd60e51b815260206004820152601560248201527f77686974656c6973745f73616c655f61637469766500000000000000000000006044820152606401610710565b600f54600160a81b900460ff16610f4e5760405162461bcd60e51b815260206004820152601460248201527f7075626c69635f73616c655f696e6163746976650000000000000000000000006044820152606401610710565b610b713383611b03565b60006001600160a01b038216610fd65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610710565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461104c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b6110566000611ebb565b565b6000546001600160a01b031633146110b25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b6001600160a01b0382166111085760405162461bcd60e51b815260206004820152600c60248201527f7a65726f5f6164647265737300000000000000000000000000000000000000006044820152606401610710565b60008160ff161161115b5760405162461bcd60e51b815260206004820152600b60248201527f616d6f756e745f7a65726f0000000000000000000000000000000000000000006044820152606401610710565b600f546064600160a01b90910460ff161080156111945750600f5460649061118e908390600160a01b900460ff166130b4565b60ff1611155b6111e05760405162461bcd60e51b815260206004820152601260248201527f6e6f745f656e6f7567685f7265736572766500000000000000000000000000006044820152606401610710565b6001600160a01b0382166000908152601160205260408120805483929061120b90849060ff166130b4565b92506101000a81548160ff021916908360ff1602179055505050565b600082600381111561124957634e487b7160e01b600052602160045260246000fd5b1180156112765750600282600381111561127357634e487b7160e01b600052602160045260246000fd5b11155b6112c25760405162461bcd60e51b815260206004820152601660248201527f696e76616c69645f77686974656c6973745f74656972000000000000000000006044820152606401610710565b8061130f5760405162461bcd60e51b815260206004820152601360248201527f696e76616c69645f6d65726b6c655f726f6f74000000000000000000000000006044820152606401610710565b6000600d600084600381111561133557634e487b7160e01b600052602160045260246000fd5b600381111561135457634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002054905081600d600085600381111561138a57634e487b7160e01b600052602160045260246000fd5b60038111156113a957634e487b7160e01b600052602160045260246000fd5b8152602001908152602001600020819055507ffda8d8105bd26b48c1313b83b5465649e369e57fff9890a2d23fae1c213ca3ab8382846040516113ee9392919061304f565b60405180910390a1505050565b6000546001600160a01b031633146114555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b600b805460ff19166003179055600f805460ff600160a81b80830482161581027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9093169290921792839055604080519290930416158082521560208201527f16686ab7ce3a91c78693d9747c5b3dd57fee7486489d72469662ca848d032364910160405180910390a1565b60606002805461076f90613153565b610b71338383611f0b565b6115053383611bf0565b6115775760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610710565b61158384848484611fda565b50505050565b611594838383612058565b61159e3382611b03565b6040805133815260ff831660208201527fa21f6e2f5b64c40c59427532385070f6cd9cd29222427e63860e3fb6c1bc226291016113ee565b6000818152600360205260409020546060906001600160a01b03166116635760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610710565b600061166d612170565b9050600081511161168d57604051806020016040528060008152506116b8565b806116978461217f565b6040516020016116a8929190612fd6565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146117195760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b80600381111561173957634e487b7160e01b600052602160045260246000fd5b600b5460ff16600381111561175e57634e487b7160e01b600052602160045260246000fd5b14156117ac5760405162461bcd60e51b815260206004820152601360248201527f73616c655f616c72656164795f616374697665000000000000000000000000006044820152606401610710565b600f54600160a81b900460ff16156118065760405162461bcd60e51b815260206004820152601260248201527f7075626c69635f73616c655f61637469766500000000000000000000000000006044820152606401610710565b600b805460ff811691839160ff1916600183600381111561183757634e487b7160e01b600052602160045260246000fd5b0217905550600b546040517f1c948aa6e9a41d047ecda0618280927e7da4060d6c1682be2ef68fc7f31338089161187391849160ff169061306e565b60405180910390a15050565b600080600e60008460038111156118a657634e487b7160e01b600052602160045260246000fd5b60038111156118c557634e487b7160e01b600052602160045260246000fd5b81526020808201929092526040908101600090812054338252600c909352205460ff9182169250168082116118fb576000611905565b6119058183613104565b949350505050565b6000546001600160a01b031633146119675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146119e35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b6001600160a01b038116611a5f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610710565b61075d81611ebb565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611acb57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106af57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146106af565b6000611b0e60095490565b905060005b8260ff168160ff161015611b4957611b3784611b3260ff84168561309c565b6122cd565b80611b41816131a9565b915050611b13565b506040805133815260ff841660208201527f17ae6f752053114b04748a7f33c7a7be70c39a0d763875071357dbb092d500a291016113ee565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bb782610caf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611c695760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610710565b6000611c7483610caf565b9050806001600160a01b0316846001600160a01b03161480611caf5750836001600160a01b0316611ca4846107f2565b6001600160a01b0316145b8061190557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16611905565b826001600160a01b0316611cf682610caf565b6001600160a01b031614611d725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610710565b6001600160a01b038216611ded5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610710565b611df88383836122e7565b611e03600082611b82565b6001600160a01b0383166000908152600460205260408120805460019290611e2c9084906130ed565b90915550506001600160a01b0382166000908152600460205260408120805460019290611e5a90849061309c565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03161415611f6d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610710565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611fe5848484611ce3565b611ff1848484846123ed565b6115835760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610710565b8282826000806120688585612545565b91509150806120b95760405162461bcd60e51b815260206004820152600f60248201527f6e6f745f77686974656c697374656400000000000000000000000000000000006044820152606401610710565b60006120c48361187f565b905060008460ff161180156120df57508060ff168460ff1611155b61212b5760405162461bcd60e51b815260206004820152601860248201527f616d6f756e745f657863656564735f636c61696d61626c6500000000000000006044820152606401610710565b336000908152600c60205260408120805489929061214d90849060ff166130b4565b92506101000a81548160ff021916908360ff160217905550505050505050505050565b60606010805461076f90613153565b6060816121bf57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156121e957806121d38161318e565b91506121e29050600a836130d9565b91506121c3565b60008167ffffffffffffffff81111561221257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561223c576020820181803683370190505b5090505b8415611905576122516001836130ed565b915061225e600a866131c9565b61226990603061309c565b60f81b81838151811061228c57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506122c6600a866130d9565b9450612240565b610b71828260405180602001604052806000815250612627565b600f5481906001600160a01b0316156123e257600f546040517f2cd6f789000000000000000000000000000000000000000000000000000000008152600481018390526000916001600160a01b031690632cd6f7899060240160206040518083038186803b15801561235857600080fd5b505afa15801561236c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123909190612e87565b905080156123e05760405162461bcd60e51b815260206004820152601c60248201527f63616e6e6f745f7472616e736665725f7665737465645f746f6b656e000000006044820152606401610710565b505b6115838484846126a5565b60006001600160a01b0384163b1561253a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612431903390899088908890600401613005565b602060405180830381600087803b15801561244b57600080fd5b505af192505050801561247b575060408051601f3d908101601f1916820190925261247891810190612ebf565b60015b612520573d8080156124a9576040519150601f19603f3d011682016040523d82523d6000602084013e6124ae565b606091505b5080516125185760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610710565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611905565b506001949350505050565b6040516bffffffffffffffffffffffff193360601b166020820152600090819081906034016040516020818303038152906040528051906020012090506126168585808060200260200160405190810160405280939291908181526020018383602002808284376000920182905250600b54600d945090925060ff16905060038111156125e257634e487b7160e01b600052602160045260246000fd5b600381111561260157634e487b7160e01b600052602160045260246000fd5b8152602001908152602001600020548361275d565b600b5460ff16969095509350505050565b6126318383612773565b61263e60008484846123ed565b6109b45760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610710565b6001600160a01b038316612700576126fb81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612723565b816001600160a01b0316836001600160a01b0316146127235761272383826128c1565b6001600160a01b03821661273a576109b48161295e565b826001600160a01b0316826001600160a01b0316146109b4576109b48282612a37565b60008261276a8584612a7b565b14949350505050565b6001600160a01b0382166127c95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610710565b6000818152600360205260409020546001600160a01b03161561282e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610710565b61283a600083836122e7565b6001600160a01b038216600090815260046020526040812080546001929061286390849061309c565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016128ce84610f58565b6128d891906130ed565b60008381526008602052604090205490915080821461292b576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612970906001906130ed565b6000838152600a6020526040812054600980549394509092849081106129a657634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600983815481106129d557634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612a1b57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612a4283610f58565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b600081815b8451811015612b2d576000858281518110612aab57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311612aed576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612b1a565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612b258161318e565b915050612a80565b509392505050565b828054612b4190613153565b90600052602060002090601f016020900481019282612b635760008555612ba9565b82601f10612b7c57805160ff1916838001178555612ba9565b82800160010185558215612ba9579182015b82811115612ba9578251825591602001919060010190612b8e565b50612bb5929150612bb9565b5090565b5b80821115612bb55760008155600101612bba565b600067ffffffffffffffff80841115612be957612be9613209565b604051601f8501601f19908116603f01168101908282118183101715612c1157612c11613209565b81604052809350858152868686011115612c2a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612c5b57600080fd5b919050565b803560048110612c5b57600080fd5b803560ff81168114612c5b57600080fd5b600060208284031215612c91578081fd5b6116b882612c44565b60008060408385031215612cac578081fd5b612cb583612c44565b9150612cc360208401612c44565b90509250929050565b600080600060608486031215612ce0578081fd5b612ce984612c44565b9250612cf760208501612c44565b9150604084013590509250925092565b60008060008060808587031215612d1c578081fd5b612d2585612c44565b9350612d3360208601612c44565b925060408501359150606085013567ffffffffffffffff811115612d55578182fd5b8501601f81018713612d65578182fd5b612d7487823560208401612bce565b91505092959194509250565b60008060408385031215612d92578182fd5b612d9b83612c44565b91506020830135612dab8161321f565b809150509250929050565b60008060408385031215612dc8578182fd5b612dd183612c44565b946020939093013593505050565b60008060408385031215612df1578182fd5b612dfa83612c44565b9150612cc360208401612c6f565b600080600060408486031215612e1c578283fd5b833567ffffffffffffffff80821115612e33578485fd5b818601915086601f830112612e46578485fd5b813581811115612e54578586fd5b8760208260051b8501011115612e68578586fd5b602092830195509350612e7e9186019050612c6f565b90509250925092565b600060208284031215612e98578081fd5b81516116b88161321f565b600060208284031215612eb4578081fd5b81356116b88161322d565b600060208284031215612ed0578081fd5b81516116b88161322d565b600060208284031215612eec578081fd5b6116b882612c60565b60008060408385031215612f07578182fd5b612dd183612c60565b600060208284031215612f21578081fd5b813567ffffffffffffffff811115612f37578182fd5b8201601f81018413612f47578182fd5b61190584823560208401612bce565b600060208284031215612f67578081fd5b5035919050565b600060208284031215612f7f578081fd5b6116b882612c6f565b60008151808452612fa0816020860160208601613127565b601f01601f19169290920160200192915050565b60048110612fd257634e487b7160e01b600052602160045260246000fd5b9052565b60008351612fe8818460208801613127565b835190830190612ffc818360208801613127565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526130376080830184612f88565b9695505050505050565b602081016106af8284612fb4565b6060810161305d8286612fb4565b602082019390935260400152919050565b6040810161307c8285612fb4565b6116b86020830184612fb4565b6020815260006116b86020830184612f88565b600082198211156130af576130af6131dd565b500190565b600060ff821660ff84168060ff038211156130d1576130d16131dd565b019392505050565b6000826130e8576130e86131f3565b500490565b6000828210156130ff576130ff6131dd565b500390565b600060ff821660ff84168082101561311e5761311e6131dd565b90039392505050565b60005b8381101561314257818101518382015260200161312a565b838111156115835750506000910152565b600181811c9082168061316757607f821691505b6020821081141561318857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131a2576131a26131dd565b5060010190565b600060ff821660ff8114156131c0576131c06131dd565b60010192915050565b6000826131d8576131d86131f3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461075d57600080fd5b6001600160e01b03198116811461075d57600080fdfea164736f6c6343000804000a

Deployed Bytecode Sourcemap

392:4186:15:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;990:222:4;;;;;;:::i;:::-;;:::i;:::-;;;9243:14:16;;9236:22;9218:41;;9206:2;9191:18;990:222:4;;;;;;;;509:64:14;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24231:4:16;24219:17;;;24201:36;;24189:2;24174:18;509:64:14;24156:87:16;2403:190:15;;;:::i;:::-;;2473:98:1;;;:::i;:::-;;;;;;;:::i;3984:217::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8186:55:16;;;8168:74;;8156:2;8141:18;3984:217:1;8123:125:16;3522:401:1;;;;;;:::i;:::-;;:::i;562:42:15:-;;602:2;562:42;;704:25;;;;;-1:-1:-1;;;704:25:15;;;;;;1615:111:4;1702:10;:17;1615:111;;;9689:25:16;;;9677:2;9662:18;1615:111:4;9644:76:16;4711:330:1;;;;;;:::i;:::-;;:::i;1291:253:4:-;;;;;;:::i;:::-;;:::i;3541:142:15:-;;;:::i;448:52:14:-;;;;;;:::i;:::-;;;;;;;;;;;;;;5107:179:1;;;;;;:::i;:::-;;:::i;1798:230:4:-;;;;;;:::i;:::-;;:::i;1248:90:15:-;;;;;;:::i;:::-;;:::i;2176:235:1:-;;;;;;:::i;:::-;;:::i;468:34:15:-;;;;;-1:-1:-1;;;;;468:34:15;;;2601:116;;;;;;:::i;:::-;;:::i;1914:205:1:-;;;;;;:::i;:::-;;:::i;1668:101:0:-;;;:::i;511:42:15:-;;549:4;511:42;;1454:326;;;;;;:::i;:::-;;:::i;1459:423:14:-;;;;;;:::i;:::-;;:::i;2982:233:15:-;;;:::i;1036:85:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;1036:85;;335:41:14;;;;;;;;;;;;;;;;:::i;2635:102:1:-;;;:::i;3406:127:15:-;3514:10;3454:19;3502:23;;;:11;:23;;;;;;;;3406:127;;4268:153:1;;;;;;:::i;:::-;;:::i;385:54:14:-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;5352:320:1;;;;;;:::i;:::-;;:::i;2161:234:15:-;;;;;;:::i;:::-;;:::i;738:28::-;;;;;-1:-1:-1;;;738:28:15;;;;;;2803:329:1;;;;;;:::i;:::-;;:::i;1788:365:15:-;;;;;;:::i;:::-;;:::i;654:43::-;;694:3;654:43;;810:44;;;;;;:::i;:::-;;;;;;;;;;;;;;;;4487:162:1;;;;;;:::i;:::-;-1:-1:-1;;;;;4607:25:1;;;4584:4;4607:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4487:162;981:273:14;;;;;;:::i;:::-;;:::i;1110:130:15:-;;;;;;:::i;:::-;;:::i;1918:198:0:-;;;;;;:::i;:::-;;:::i;611:36:15:-;;646:1;611:36;;990:222:4;1092:4;-1:-1:-1;;;;;;1115:50:4;;1130:35;1115:50;;:90;;;1169:36;1193:11;1169:23;:36::i;:::-;1108:97;990:222;-1:-1:-1;;990:222:4:o;2403:190:15:-;3959:10;3973:1;3947:23;;;:11;:23;;;;;;;;3939:51;;;;-1:-1:-1;;;3939:51:15;;22211:2:16;3939:51:15;;;22193:21:16;22250:2;22230:18;;;22223:30;22289:13;22269:18;;;22262:41;22320:18;;3939:51:15;;;;;;;;;3514:10;2461:14:::1;3502:23:::0;;;:11;:23;;;;;;;;;;;;;2506:35:::1;3502:23:::0;;2506:35:::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;2552:33;2564:10;2576:8;2552:11;:33::i;:::-;4001:1;2403:190::o:0;2473:98:1:-;2527:13;2559:5;2552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2473:98;:::o;3984:217::-;4060:7;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:1;4079:73;;;;-1:-1:-1;;;4079:73:1;;18116:2:16;4079:73:1;;;18098:21:16;18155:2;18135:18;;;18128:30;18194:34;18174:18;;;18167:62;-1:-1:-1;;;18245:18:16;;;18238:42;18297:19;;4079:73:1;18088:234:16;4079:73:1;-1:-1:-1;4170:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;4170:24:1;;3984:217::o;3522:401::-;3602:13;3618:23;3633:7;3618:14;:23::i;:::-;3602:39;;3665:5;-1:-1:-1;;;;;3659:11:1;:2;-1:-1:-1;;;;;3659:11:1;;;3651:57;;;;-1:-1:-1;;;3651:57:1;;21461:2:16;3651:57:1;;;21443:21:16;21500:2;21480:18;;;21473:30;21539:34;21519:18;;;21512:62;21610:3;21590:18;;;21583:31;21631:19;;3651:57:1;21433:223:16;3651:57:1;719:10:8;-1:-1:-1;;;;;3740:21:1;;;;:62;;-1:-1:-1;3765:37:1;3782:5;719:10:8;4487:162:1;:::i;3765:37::-;3719:165;;;;-1:-1:-1;;;3719:165:1;;15121:2:16;3719:165:1;;;15103:21:16;15160:2;15140:18;;;15133:30;15199:34;15179:18;;;15172:62;15270:26;15250:18;;;15243:54;15314:19;;3719:165:1;15093:246:16;3719:165:1;3895:21;3904:2;3908:7;3895:8;:21::i;:::-;3522:401;;;:::o;4711:330::-;4900:41;719:10:8;4933:7:1;4900:18;:41::i;:::-;4892:103;;;;-1:-1:-1;;;4892:103:1;;22551:2:16;4892:103:1;;;22533:21:16;22590:2;22570:18;;;22563:30;22629:34;22609:18;;;22602:62;22700:19;22680:18;;;22673:47;22737:19;;4892:103:1;22523:239:16;4892:103:1;5006:28;5016:4;5022:2;5026:7;5006:9;:28::i;1291:253:4:-;1388:7;1423:23;1440:5;1423:16;:23::i;:::-;1415:5;:31;1407:87;;;;-1:-1:-1;;;1407:87:4;;11673:2:16;1407:87:4;;;11655:21:16;11712:2;11692:18;;;11685:30;11751:34;11731:18;;;11724:62;11822:13;11802:18;;;11795:41;11853:19;;1407:87:4;11645:233:16;1407:87:4;-1:-1:-1;;;;;;1511:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1291:253::o;3541:142:15:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;18529:2:16;1240:68:0;;;18511:21:16;;;18548:18;;;18541:30;18607:34;18587:18;;;18580:62;18659:18;;1240:68:0;18501:182:16;1240:68:0;3638:37:15::1;::::0;3606:21:::1;::::0;3646:10:::1;::::0;3638:37;::::1;;;::::0;3606:21;;3591:12:::1;3638:37:::0;3591:12;3638:37;3606:21;3646:10;3638:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1318:1:0;3541:142:15:o:0;5107:179:1:-;5240:39;5257:4;5263:2;5267:7;5240:39;;;;;;;;;;;;:16;:39::i;1798:230:4:-;1873:7;1908:30;1702:10;:17;;1615:111;1908:30;1900:5;:38;1892:95;;;;-1:-1:-1;;;1892:95:4;;23319:2:16;1892:95:4;;;23301:21:16;23358:2;23338:18;;;23331:30;23397:34;23377:18;;;23370:62;23468:14;23448:18;;;23441:42;23500:19;;1892:95:4;23291:234:16;1892:95:4;2004:10;2015:5;2004:17;;;;;;-1:-1:-1;;;2004:17:4;;;;;;;;;;;;;;;;;1997:24;;1798:230;;;:::o;1248:90:15:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;18529:2:16;1240:68:0;;;18511:21:16;;;18548:18;;;18541:30;18607:34;18587:18;;;18580:62;18659:18;;1240:68:0;18501:182:16;1240:68:0;1317:13:15;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;2176:235:1:-:0;2248:7;2283:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2283:16:1;2317:19;2309:73;;;;-1:-1:-1;;;2309:73:1;;16301:2:16;2309:73:1;;;16283:21:16;16340:2;16320:18;;;16313:30;16379:34;16359:18;;;16352:62;16450:11;16430:18;;;16423:39;16479:19;;2309:73:1;16273:231:16;2601:116:15;2647:6;646:1;3742:20;;;;;3734:49;;;;-1:-1:-1;;;3734:49:15;;17062:2:16;3734:49:15;;;17044:21:16;17101:2;17081:18;;;17074:30;17140:18;17120;;;17113:46;17176:18;;3734:49:15;17034:166:16;3734:49:15;602:2;3802:49;:30;;:21;3812:10;3802:9;:21::i;:::-;:30;;;;:::i;:::-;:49;;3794:82;;;;-1:-1:-1;;;3794:82:15;;20765:2:16;3794:82:15;;;20747:21:16;20804:2;20784:18;;;20777:30;20843:22;20823:18;;;20816:50;20883:18;;3794:82:15;20737:170:16;3794:82:15;4334:22:::1;4310:20;::::0;::::1;;:46;::::0;::::1;;;;-1:-1:-1::0;;;4310:46:15::1;;;;;;;;;;:67;;;;-1:-1:-1::0;4361:16:15::1;::::0;-1:-1:-1;;;4361:16:15;::::1;;;4360:17;4310:67;4307:96;;;4379:24;::::0;-1:-1:-1;;;4379:24:15;;20065:2:16;4379:24:15::1;::::0;::::1;20047:21:16::0;20104:2;20084:18;;;20077:30;20143:16;20123:18;;;20116:44;20177:18;;4379:24:15::1;20037:164:16::0;4307:96:15::1;4446:23;4422:20;::::0;::::1;;:47;::::0;::::1;;;;-1:-1:-1::0;;;4422:47:15::1;;;;;;;;;;4414:81;;;::::0;-1:-1:-1;;;4414:81:15;;22969:2:16;4414:81:15::1;::::0;::::1;22951:21:16::0;23008:2;22988:18;;;22981:30;23047:23;23027:18;;;23020:51;23088:18;;4414:81:15::1;22941:171:16::0;4414:81:15::1;4514:16;::::0;-1:-1:-1;;;4514:16:15;::::1;;;4506:49;;;::::0;-1:-1:-1;;;4506:49:15;;18890:2:16;4506:49:15::1;::::0;::::1;18872:21:16::0;18929:2;18909:18;;;18902:30;18968:22;18948:18;;;18941:50;19008:18;;4506:49:15::1;18862:170:16::0;4506:49:15::1;2678:31:::2;2690:10;2702:6;2678:11;:31::i;1914:205:1:-:0;1986:7;-1:-1:-1;;;;;2013:19:1;;2005:74;;;;-1:-1:-1;;;2005:74:1;;15890:2:16;2005:74:1;;;15872:21:16;15929:2;15909:18;;;15902:30;15968:34;15948:18;;;15941:62;16039:12;16019:18;;;16012:40;16069:19;;2005:74:1;15862:232:16;2005:74:1;-1:-1:-1;;;;;;2096:16:1;;;;;:9;:16;;;;;;;1914:205::o;1668:101:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;18529:2:16;1240:68:0;;;18511:21:16;;;18548:18;;;18541:30;18607:34;18587:18;;;18580:62;18659:18;;1240:68:0;18501:182:16;1240:68:0;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;1454:326:15:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;18529:2:16;1240:68:0;;;18511:21:16;;;18548:18;;;18541:30;18607:34;18587:18;;;18580:62;18659:18;;1240:68:0;18501:182:16;1240:68:0;-1:-1:-1;;;;;1538:18:15;::::1;1530:43;;;::::0;-1:-1:-1;;;1530:43:15;;14780:2:16;1530:43:15::1;::::0;::::1;14762:21:16::0;14819:2;14799:18;;;14792:30;14858:14;14838:18;;;14831:42;14890:18;;1530:43:15::1;14752:162:16::0;1530:43:15::1;1601:1;1592:6;:10;;;1584:34;;;::::0;-1:-1:-1;;;1584:34:15;;14027:2:16;1584:34:15::1;::::0;::::1;14009:21:16::0;14066:2;14046:18;;;14039:30;14105:13;14085:18;;;14078:41;14136:18;;1584:34:15::1;13999:161:16::0;1584:34:15::1;1637:12;::::0;694:3:::1;-1:-1:-1::0;;;1637:12:15;;::::1;:30;:12;:30;:74:::0;::::1;;;-1:-1:-1::0;1671:12:15::1;::::0;694:3:::1;::::0;1671:21:::1;::::0;1686:6;;-1:-1:-1;;;1671:12:15;::::1;:40;:12;:21;:::i;:::-;:40;;;;1637:74;1629:105;;;::::0;-1:-1:-1;;;1629:105:15;;23732:2:16;1629:105:15::1;::::0;::::1;23714:21:16::0;23771:2;23751:18;;;23744:30;23810:20;23790:18;;;23783:48;23848:18;;1629:105:15::1;23704:168:16::0;1629:105:15::1;-1:-1:-1::0;;;;;1747:15:15;::::1;;::::0;;;:11:::1;:15;::::0;;;;:25;;1766:6;;1747:15;:25:::1;::::0;1766:6;;1747:25:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;1454:326:::0;;:::o;1459:423:14:-;1566:22;1559:4;:29;;;;;;-1:-1:-1;;;1559:29:14;;;;;;;;;;:60;;;;-1:-1:-1;1600:19:14;1592:4;:27;;;;;;-1:-1:-1;;;1592:27:14;;;;;;;;;;;1559:60;1551:95;;;;-1:-1:-1;;;1551:95:14;;16711:2:16;1551:95:14;;;16693:21:16;16750:2;16730:18;;;16723:30;16789:24;16769:18;;;16762:52;16831:18;;1551:95:14;16683:172:16;1551:95:14;1665:18;1657:50;;;;-1:-1:-1;;;1657:50:14;;17768:2:16;1657:50:14;;;17750:21:16;17807:2;17787:18;;;17780:30;17846:21;17826:18;;;17819:49;17885:18;;1657:50:14;17740:169:16;1657:50:14;1718:19;1740:11;:17;1752:4;1740:17;;;;;;-1:-1:-1;;;1740:17:14;;;;;;;;;;;;;;;-1:-1:-1;;;1740:17:14;;;;;;;;;;;;;;;;;;;;;1718:39;;1787:11;1768;:17;1780:4;1768:17;;;;;;-1:-1:-1;;;1768:17:14;;;;;;;;;;;;;;;-1:-1:-1;;;1768:17:14;;;;;;;;;;;;;;;;;;;;:30;;;;1816:58;1843:4;1849:11;1862;1816:58;;;;;;;;:::i;:::-;;;;;;;;1459:423;;;:::o;2982:233:15:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;18529:2:16;1240:68:0;;;18511:21:16;;;18548:18;;;18541:30;18607:34;18587:18;;;18580:62;18659:18;;1240:68:0;18501:182:16;1240:68:0;3038:20:15::1;:46:::0;;-1:-1:-1;;3038:46:15::1;3061:23;3038:46;::::0;;3115:16:::1;::::0;;::::1;-1:-1:-1::0;;;3115:16:15;;::::1;::::0;::::1;3114:17;3095:36:::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;;3147:60:::1;::::0;;3172:16;;;::::1;;3171:17;9432:41:16::0;;;9457:14;9504:2;9489:18;;9482:50;3147:60:15::1;::::0;9405:18:16;3147:60:15::1;;;;;;;2982:233::o:0;2635:102:1:-;2691:13;2723:7;2716:14;;;;;:::i;4268:153::-;4362:52;719:10:8;4395:8:1;4405;4362:18;:52::i;5352:320::-;5521:41;719:10:8;5554:7:1;5521:18;:41::i;:::-;5513:103;;;;-1:-1:-1;;;5513:103:1;;22551:2:16;5513:103:1;;;22533:21:16;22590:2;22570:18;;;22563:30;22629:34;22609:18;;;22602:62;22700:19;22680:18;;;22673:47;22737:19;;5513:103:1;22523:239:16;5513:103:1;5626:39;5640:4;5646:2;5650:7;5659:5;5626:13;:39::i;:::-;5352:320;;;;:::o;2161:234:15:-;2251:42;2273:11;;2286:6;2251:21;:42::i;:::-;2304:31;2316:10;2328:6;2304:11;:31::i;:::-;2351:36;;;2368:10;8939:74:16;;9061:4;9049:17;;9044:2;9029:18;;9022:45;2351:36:15;;8912:18:16;2351:36:15;8894:179:16;2803:329:1;7209:4;7232:16;;;:7;:16;;;;;;2876:13;;-1:-1:-1;;;;;7232:16:1;2901:76;;;;-1:-1:-1;;;2901:76:1;;19649:2:16;2901:76:1;;;19631:21:16;19688:2;19668:18;;;19661:30;19727:34;19707:18;;;19700:62;19798:17;19778:18;;;19771:45;19833:19;;2901:76:1;19621:237:16;2901:76:1;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:1:o;1788:365:15:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;18529:2:16;1240:68:0;;;18511:21:16;;;18548:18;;;18541:30;18607:34;18587:18;;;18580:62;18659:18;;1240:68:0;18501:182:16;1240:68:0;1896:4:15::1;1872:28;;;;;;-1:-1:-1::0;;;1872:28:15::1;;;;;;;;;:20;::::0;::::1;;:28;::::0;::::1;;;;-1:-1:-1::0;;;1872:28:15::1;;;;;;;;;;;1864:60;;;::::0;-1:-1:-1;;;1864:60:15;;21863:2:16;1864:60:15::1;::::0;::::1;21845:21:16::0;21902:2;21882:18;;;21875:30;21941:21;21921:18;;;21914:49;21980:18;;1864:60:15::1;21835:169:16::0;1864:60:15::1;1944:16;::::0;-1:-1:-1;;;1944:16:15;::::1;;;1943:17;1935:48;;;::::0;-1:-1:-1;;;1935:48:15;;21114:2:16;1935:48:15::1;::::0;::::1;21096:21:16::0;21153:2;21133:18;;;21126:30;21192:20;21172:18;;;21165:48;21230:18;;1935:48:15::1;21086:168:16::0;1935:48:15::1;2018:20;::::0;;::::1;::::0;::::1;::::0;2072:4;;-1:-1:-1;;2049:27:15::1;2018:20:::0;2072:4;2049:27:::1;::::0;::::1;;;;-1:-1:-1::0;;;2049:27:15::1;;;;;;;;;;;::::0;;-1:-1:-1;2124:20:15::1;::::0;2094:51:::1;::::0;::::1;::::0;::::1;::::0;2115:7;;2124:20:::1;;::::0;2094:51:::1;:::i;:::-;;;;;;;;1318:1:0;1788:365:15::0;:::o;981:273:14:-;1050:12;1075:14;1092:25;:31;1118:4;1092:31;;;;;;-1:-1:-1;;;1092:31:14;;;;;;;;;;;;;;;-1:-1:-1;;;1092:31:14;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1092:31:14;;;;1172:10;1150:33;;:21;:33;;;;;1092:31;;;;;-1:-1:-1;1150:33:14;1203:18;;;:43;;1245:1;1203:43;;;1224:18;1235:7;1224:8;:18;:::i;:::-;1194:52;981:273;-1:-1:-1;;;;981:273:14:o;1110:130:15:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;18529:2:16;1240:68:0;;;18511:21:16;;;18548:18;;;18541:30;18607:34;18587:18;;;18580:62;18659:18;;1240:68:0;18501:182:16;1240:68:0;1188:12:15::1;:44:::0;;-1:-1:-1;;;;;;1188:44:15::1;-1:-1:-1::0;;;;;1188:44:15;;;::::1;::::0;;;::::1;::::0;;1110:130::o;1918:198:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;18529:2:16;1240:68:0;;;18511:21:16;;;18548:18;;;18541:30;18607:34;18587:18;;;18580:62;18659:18;;1240:68:0;18501:182:16;1240:68:0;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;12504:2:16;1998:73:0::1;::::0;::::1;12486:21:16::0;12543:2;12523:18;;;12516:30;12582:34;12562:18;;;12555:62;12653:8;12633:18;;;12626:36;12679:19;;1998:73:0::1;12476:228:16::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;1555:300:1:-:0;1657:4;-1:-1:-1;;;;;;1692:40:1;;1707:25;1692:40;;:104;;-1:-1:-1;;;;;;;1748:48:1;;1763:33;1748:48;1692:104;:156;;;-1:-1:-1;952:25:11;-1:-1:-1;;;;;;937:40:11;;;1812:36:1;829:155:11;2725:249:15;2792:15;2810:13;1702:10:4;:17;;1615:111;2810:13:15;2792:31;;2838:7;2834:85;2853:6;2851:8;;:1;:8;;;2834:85;;;2881:26;2891:2;2895:11;;;;:7;:11;:::i;:::-;2881:9;:26::i;:::-;2861:3;;;;:::i;:::-;;;;2834:85;;;-1:-1:-1;2934:32:15;;;2947:10;8939:74:16;;9061:4;9049:17;;9044:2;9029:18;;9022:45;2934:32:15;;8912:18:16;2934:32:15;8894:179:16;10995:171:1;11069:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11069:29:1;-1:-1:-1;;;;;11069:29:1;;;;;;;;:24;;11122:23;11069:24;11122:14;:23::i;:::-;-1:-1:-1;;;;;11113:46:1;;;;;;;;;;;10995:171;;:::o;7427:344::-;7520:4;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:1;7536:73;;;;-1:-1:-1;;;7536:73:1;;14367:2:16;7536:73:1;;;14349:21:16;14406:2;14386:18;;;14379:30;14445:34;14425:18;;;14418:62;-1:-1:-1;;;14496:18:16;;;14489:42;14548:19;;7536:73:1;14339:234:16;7536:73:1;7619:13;7635:23;7650:7;7635:14;:23::i;:::-;7619:39;;7687:5;-1:-1:-1;;;;;7676:16:1;:7;-1:-1:-1;;;;;7676:16:1;;:51;;;;7720:7;-1:-1:-1;;;;;7696:31:1;:20;7708:7;7696:11;:20::i;:::-;-1:-1:-1;;;;;7696:31:1;;7676:51;:87;;;-1:-1:-1;;;;;;4607:25:1;;;4584:4;4607:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7731:32;4487:162;10324:560;10478:4;-1:-1:-1;;;;;10451:31:1;:23;10466:7;10451:14;:23::i;:::-;-1:-1:-1;;;;;10451:31:1;;10443:85;;;;-1:-1:-1;;;10443:85:1;;19239:2:16;10443:85:1;;;19221:21:16;19278:2;19258:18;;;19251:30;19317:34;19297:18;;;19290:62;19388:11;19368:18;;;19361:39;19417:19;;10443:85:1;19211:231:16;10443:85:1;-1:-1:-1;;;;;10546:16:1;;10538:65;;;;-1:-1:-1;;;10538:65:1;;13268:2:16;10538:65:1;;;13250:21:16;13307:2;13287:18;;;13280:30;13346:34;13326:18;;;13319:62;13417:6;13397:18;;;13390:34;13441:19;;10538:65:1;13240:226:16;10538:65:1;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:1;;;;;;:9;:15;;;;;:20;;10774:1;;10755:15;:20;;10774:1;;10755:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10785:13:1;;;;;;:9;:13;;;;;:18;;10802:1;;10785:13;:18;;10802:1;;10785:18;:::i;:::-;;;;-1:-1:-1;;10813:16:1;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10813:21:1;-1:-1:-1;;;;;10813:21:1;;;;;;;;;10850:27;;10813:16;;10850:27;;;;;;;10324:560;;;:::o;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;2270:187;;:::o;11301:307:1:-;11451:8;-1:-1:-1;;;;;11442:17:1;:5;-1:-1:-1;;;;;11442:17:1;;;11434:55;;;;-1:-1:-1;;;11434:55:1;;13673:2:16;11434:55:1;;;13655:21:16;13712:2;13692:18;;;13685:30;13751:27;13731:18;;;13724:55;13796:18;;11434:55:1;13645:175:16;11434:55:1;-1:-1:-1;;;;;11499:25:1;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11499:46:1;;;;;;;;;;11560:41;;9218::16;;;11560::1;;9191:18:16;11560:41:1;;;;;;;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:1;;12085:2:16;6723:111:1;;;12067:21:16;12124:2;12104:18;;;12097:30;12163:34;12143:18;;;12136:62;-1:-1:-1;;;12214:18:16;;;12207:48;12272:19;;6723:111:1;12057:240:16;1262:189:14;1368:11;;1381:6;2296:18;2316:12;2332:26;2346:11;;2332:13;:26::i;:::-;2295:63;;;;2377:7;2369:35;;;;-1:-1:-1;;;2369:35:14;;15546:2:16;2369:35:14;;;15528:21:16;15585:2;15565:18;;;15558:30;15624:17;15604:18;;;15597:45;15659:18;;2369:35:14;15518:165:16;2369:35:14;2415:15;2433:24;2452:4;2433:18;:24::i;:::-;2415:42;;2485:1;2476:6;:10;;;:33;;;;;2500:9;2490:19;;:6;:19;;;;2476:33;2468:70;;;;-1:-1:-1;;;2468:70:14;;11320:2:16;2468:70:14;;;11302:21:16;11359:2;11339:18;;;11332:30;11398:26;11378:18;;;11371:54;11442:18;;2468:70:14;11292:174:16;2468:70:14;1422:10:::1;1400:33;::::0;;;:21:::1;:33;::::0;;;;:43;;1437:6;;1400:33;:43:::1;::::0;1437:6;;1400:43:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;1262:189:::0;;;;;;;;;:::o;1346:100:15:-;1398:13;1431:7;1424:14;;;;;:::i;328:703:9:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:9;;;;;;;;;;;;;;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:9;;-1:-1:-1;773:2:9;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;-1:-1:-1;;;817:17:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:9;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:9;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;-1:-1:-1;;;902:14:9;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;972:11:9;981:2;972:11;;:::i;:::-;;;844:150;;8101:108:1;8176:26;8186:2;8190:7;8176:26;;;;;;;;;;;;:9;:26::i;3223:175:15:-;4077:12;;3325:7;;-1:-1:-1;;;;;4077:12:15;4069:37;4066:180;;4139:12;;:30;;;;;;;;9689:25:16;;;4123:13:15;;-1:-1:-1;;;;;4139:12:15;;:21;;9662:18:16;;4139:30:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4123:46;;4193:8;4192:9;4184:50;;;;-1:-1:-1;;;4184:50:15;;20408:2:16;4184:50:15;;;20390:21:16;20447:2;20427:18;;;20420:30;20486;20466:18;;;20459:58;20534:18;;4184:50:15;20380:178:16;4184:50:15;4066:180;;3345:45:::1;3372:4;3378:2;3382:7;3345:26;:45::i;12161:778:1:-:0;12311:4;-1:-1:-1;;;;;12331:13:1;;1087:20:7;1133:8;12327:606:1;;12366:72;;-1:-1:-1;;;12366:72:1;;-1:-1:-1;;;;;12366:36:1;;;;;:72;;719:10:8;;12417:4:1;;12423:7;;12432:5;;12366:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12366:72:1;;;;;;;;-1:-1:-1;;12366:72:1;;;;;;;;;;;;:::i;:::-;;;12362:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12605:13:1;;12601:266;;12647:60;;-1:-1:-1;;;12647:60:1;;12085:2:16;12647:60:1;;;12067:21:16;12124:2;12104:18;;;12097:30;12163:34;12143:18;;;12136:62;-1:-1:-1;;;12214:18:16;;;12207:48;12272:19;;12647:60:1;12057:240:16;12601:266:1;12819:6;12813:13;12804:6;12800:2;12796:15;12789:38;12362:519;-1:-1:-1;;;;;;12488:51:1;-1:-1:-1;;;12488:51:1;;-1:-1:-1;12481:58:1;;12327:606;-1:-1:-1;12918:4:1;12161:778;;;;;;:::o;1890:313:14:-;2036:28;;-1:-1:-1;;2053:10:14;7210:2:16;7206:15;7202:53;2036:28:14;;;7190:66:16;1968:18:14;;;;;;7272:12:16;;2036:28:14;;;;;;;;;;;;2026:39;;;;;;2011:54;;2084:73;2103:12;;2084:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2129:20:14;;2117:11;;-1:-1:-1;2084:73:14;;-1:-1:-1;2129:20:14;;;-1:-1:-1;2117:33:14;;;;;;-1:-1:-1;;;2117:33:14;;;;;;;;;;;;;;;-1:-1:-1;;;2117:33:14;;;;;;;;;;;;;;;;;;;;;2152:4;2084:18;:73::i;:::-;2175:20;;;;;2076:81;;-1:-1:-1;1890:313:14;-1:-1:-1;;;;1890:313:14:o;8430:311:1:-;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:1;;12085:2:16;8583:151:1;;;12067:21:16;12124:2;12104:18;;;12097:30;12163:34;12143:18;;;12136:62;-1:-1:-1;;;12214:18:16;;;12207:48;12272:19;;8583:151:1;12057:240:16;2624:572:4;-1:-1:-1;;;;;2823:18:4;;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:4;:4;-1:-1:-1;;;;;2918:10:4;;2914:88;;2944:47;2977:4;2983:7;2944:32;:47::i;:::-;-1:-1:-1;;;;;3015:16:4;;3011:179;;3047:45;3084:7;3047:36;:45::i;3011:179::-;3119:4;-1:-1:-1;;;;;3113:10:4;:2;-1:-1:-1;;;;;3113:10:4;;3109:81;;3139:40;3167:2;3171:7;3139:27;:40::i;847:184:10:-;968:4;1020;991:25;1004:5;1011:4;991:12;:25::i;:::-;:33;;847:184;-1:-1:-1;;;;847:184:10:o;9063:372:1:-;-1:-1:-1;;;;;9142:16:1;;9134:61;;;;-1:-1:-1;;;9134:61:1;;17407:2:16;9134:61:1;;;17389:21:16;;;17426:18;;;17419:30;17485:34;17465:18;;;17458:62;17537:18;;9134:61:1;17379:182:16;9134:61:1;7209:4;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:1;:30;9205:58;;;;-1:-1:-1;;;9205:58:1;;12911:2:16;9205:58:1;;;12893:21:16;12950:2;12930:18;;;12923:30;12989;12969:18;;;12962:58;13037:18;;9205:58:1;12883:178:16;9205:58:1;9274:45;9303:1;9307:2;9311:7;9274:20;:45::i;:::-;-1:-1:-1;;;;;9330:13:1;;;;;;:9;:13;;;;;:18;;9347:1;;9330:13;:18;;9347:1;;9330:18;:::i;:::-;;;;-1:-1:-1;;9358:16:1;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9358:21:1;-1:-1:-1;;;;;9358:21:1;;;;;;;;9395:33;;9358:16;;;9395:33;;9358:16;;9395:33;9063:372;;:::o;4680:970:4:-;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:4;;;5150:323;;-1:-1:-1;;;;;5220:18:4;;5198:19;5220:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5269:30;;;;;;:44;;;5385:30;;:17;:30;;;;;:43;;;5150:323;-1:-1:-1;5566:26:4;;;;:17;:26;;;;;;;;5559:33;;;-1:-1:-1;;;;;5609:18:4;;;;;: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:4;;6187:46;;6632:26;;;;-1:-1:-1;;;6632:26:4;;;;;;;;;;;;;;;;;6610:48;;6694:11;6669:10;6680;6669:22;;;;;;-1:-1:-1;;;6669:22:4;;;;;;;;;;;;;;;;;;;;:36;;;;6773:28;;;:15;:28;;;;;;;:41;;;6942:24;;;;;6935:31;6976:10;:16;;;;;-1:-1:-1;;;6976:16:4;;;;;;;;;;;;;;;;;;;;;;;;;;5938:1061;;;;:::o;3490:217::-;3574:14;3591:20;3608:2;3591:16;:20::i;:::-;-1:-1:-1;;;;;3621:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3665:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3490:217:4:o;1383:688:10:-;1466:7;1508:4;1466:7;1522:514;1546:5;:12;1542:1;:16;1522:514;;;1579:20;1602:5;1608:1;1602:8;;;;;;-1:-1:-1;;;1602:8:10;;;;;;;;;;;;;;;1579:31;;1644:12;1628;:28;1624:402;;1779:44;;;;;;7452:19:16;;;7487:12;;;7480:28;;;7524:12;;1779:44:10;;;;;;;;;;;;1769:55;;;;;;1754:70;;1624:402;;;1966:44;;;;;;7452:19:16;;;7487:12;;;7480:28;;;7524:12;;1966:44:10;;;;;;;;;;;;1956:55;;;;;;1941:70;;1624:402;-1:-1:-1;1560:3:10;;;;:::i;:::-;;;;1522:514;;;-1:-1:-1;2052:12:10;1383:688;-1:-1:-1;;;1383:688:10:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:16;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:16;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:16;;757:65;;747:2;;836:1;833;826:12;747:2;699:147;;;:::o;851:154::-;930:20;;979:1;969:12;;959:2;;995:1;992;985:12;1010:156;1076:20;;1136:4;1125:16;;1115:27;;1105:2;;1156:1;1153;1146:12;1171:196;1230:6;1283:2;1271:9;1262:7;1258:23;1254:32;1251:2;;;1304:6;1296;1289:22;1251:2;1332:29;1351:9;1332:29;:::i;1372:270::-;1440:6;1448;1501:2;1489:9;1480:7;1476:23;1472:32;1469:2;;;1522:6;1514;1507:22;1469:2;1550:29;1569:9;1550:29;:::i;:::-;1540:39;;1598:38;1632:2;1621:9;1617:18;1598:38;:::i;:::-;1588:48;;1459:183;;;;;:::o;1647:338::-;1724:6;1732;1740;1793:2;1781:9;1772:7;1768:23;1764:32;1761:2;;;1814:6;1806;1799:22;1761:2;1842:29;1861:9;1842:29;:::i;:::-;1832:39;;1890:38;1924:2;1913:9;1909:18;1890:38;:::i;:::-;1880:48;;1975:2;1964:9;1960:18;1947:32;1937:42;;1751:234;;;;;:::o;1990:696::-;2085:6;2093;2101;2109;2162:3;2150:9;2141:7;2137:23;2133:33;2130:2;;;2184:6;2176;2169:22;2130:2;2212:29;2231:9;2212:29;:::i;:::-;2202:39;;2260:38;2294:2;2283:9;2279:18;2260:38;:::i;:::-;2250:48;;2345:2;2334:9;2330:18;2317:32;2307:42;;2400:2;2389:9;2385:18;2372:32;2427:18;2419:6;2416:30;2413:2;;;2464:6;2456;2449:22;2413:2;2492:22;;2545:4;2537:13;;2533:27;-1:-1:-1;2523:2:16;;2579:6;2571;2564:22;2523:2;2607:73;2672:7;2667:2;2654:16;2649:2;2645;2641:11;2607:73;:::i;:::-;2597:83;;;2120:566;;;;;;;:::o;2691:325::-;2756:6;2764;2817:2;2805:9;2796:7;2792:23;2788:32;2785:2;;;2838:6;2830;2823:22;2785:2;2866:29;2885:9;2866:29;:::i;:::-;2856:39;;2945:2;2934:9;2930:18;2917:32;2958:28;2980:5;2958:28;:::i;:::-;3005:5;2995:15;;;2775:241;;;;;:::o;3021:264::-;3089:6;3097;3150:2;3138:9;3129:7;3125:23;3121:32;3118:2;;;3171:6;3163;3156:22;3118:2;3199:29;3218:9;3199:29;:::i;:::-;3189:39;3275:2;3260:18;;;;3247:32;;-1:-1:-1;;;3108:177:16:o;3290:266::-;3356:6;3364;3417:2;3405:9;3396:7;3392:23;3388:32;3385:2;;;3438:6;3430;3423:22;3385:2;3466:29;3485:9;3466:29;:::i;:::-;3456:39;;3514:36;3546:2;3535:9;3531:18;3514:36;:::i;3561:741::-;3654:6;3662;3670;3723:2;3711:9;3702:7;3698:23;3694:32;3691:2;;;3744:6;3736;3729:22;3691:2;3789:9;3776:23;3818:18;3859:2;3851:6;3848:14;3845:2;;;3880:6;3872;3865:22;3845:2;3923:6;3912:9;3908:22;3898:32;;3968:7;3961:4;3957:2;3953:13;3949:27;3939:2;;3995:6;3987;3980:22;3939:2;4040;4027:16;4066:2;4058:6;4055:14;4052:2;;;4087:6;4079;4072:22;4052:2;4147:7;4140:4;4130:6;4127:1;4123:14;4119:2;4115:23;4111:34;4108:47;4105:2;;;4173:6;4165;4158:22;4105:2;4209:4;4201:13;;;;-1:-1:-1;4233:6:16;-1:-1:-1;4258:38:16;;4275:20;;;-1:-1:-1;4258:38:16;:::i;:::-;4248:48;;3681:621;;;;;:::o;4307:255::-;4374:6;4427:2;4415:9;4406:7;4402:23;4398:32;4395:2;;;4448:6;4440;4433:22;4395:2;4485:9;4479:16;4504:28;4526:5;4504:28;:::i;4567:255::-;4625:6;4678:2;4666:9;4657:7;4653:23;4649:32;4646:2;;;4699:6;4691;4684:22;4646:2;4743:9;4730:23;4762:30;4786:5;4762:30;:::i;4827:259::-;4896:6;4949:2;4937:9;4928:7;4924:23;4920:32;4917:2;;;4970:6;4962;4955:22;4917:2;5007:9;5001:16;5026:30;5050:5;5026:30;:::i;5091:225::-;5168:6;5221:2;5209:9;5200:7;5196:23;5192:32;5189:2;;;5242:6;5234;5227:22;5189:2;5270:40;5300:9;5270:40;:::i;5321:293::-;5407:6;5415;5468:2;5456:9;5447:7;5443:23;5439:32;5436:2;;;5489:6;5481;5474:22;5436:2;5517:40;5547:9;5517:40;:::i;5619:480::-;5688:6;5741:2;5729:9;5720:7;5716:23;5712:32;5709:2;;;5762:6;5754;5747:22;5709:2;5807:9;5794:23;5840:18;5832:6;5829:30;5826:2;;;5877:6;5869;5862:22;5826:2;5905:22;;5958:4;5950:13;;5946:27;-1:-1:-1;5936:2:16;;5992:6;5984;5977:22;5936:2;6020:73;6085:7;6080:2;6067:16;6062:2;6058;6054:11;6020:73;:::i;6104:190::-;6163:6;6216:2;6204:9;6195:7;6191:23;6187:32;6184:2;;;6237:6;6229;6222:22;6184:2;-1:-1:-1;6265:23:16;;6174:120;-1:-1:-1;6174:120:16:o;6299:192::-;6356:6;6409:2;6397:9;6388:7;6384:23;6380:32;6377:2;;;6430:6;6422;6415:22;6377:2;6458:27;6475:9;6458:27;:::i;6496:257::-;6537:3;6575:5;6569:12;6602:6;6597:3;6590:19;6618:63;6674:6;6667:4;6662:3;6658:14;6651:4;6644:5;6640:16;6618:63;:::i;:::-;6735:2;6714:15;-1:-1:-1;;6710:29:16;6701:39;;;;6742:4;6697:50;;6545:208;-1:-1:-1;;6545:208:16:o;6758:298::-;6843:1;6836:5;6833:12;6823:2;;-1:-1:-1;;;6876:1:16;6869:88;6980:4;6977:1;6970:15;7008:4;7005:1;6998:15;6823:2;7032:18;;6813:243::o;7547:470::-;7726:3;7764:6;7758:13;7780:53;7826:6;7821:3;7814:4;7806:6;7802:17;7780:53;:::i;:::-;7896:13;;7855:16;;;;7918:57;7896:13;7855:16;7952:4;7940:17;;7918:57;:::i;:::-;7991:20;;7734:283;-1:-1:-1;;;;7734:283:16:o;8253:511::-;8447:4;-1:-1:-1;;;;;8557:2:16;8549:6;8545:15;8534:9;8527:34;8609:2;8601:6;8597:15;8592:2;8581:9;8577:18;8570:43;;8649:6;8644:2;8633:9;8629:18;8622:34;8692:3;8687:2;8676:9;8672:18;8665:31;8713:45;8753:3;8742:9;8738:19;8730:6;8713:45;:::i;:::-;8705:53;8456:308;-1:-1:-1;;;;;;8456:308:16:o;9979:216::-;10129:2;10114:18;;10141:48;10118:9;10171:6;10141:48;:::i;10200:358::-;10406:2;10391:18;;10418:48;10395:9;10448:6;10418:48;:::i;:::-;10497:2;10482:18;;10475:34;;;;10540:2;10525:18;10518:34;10373:185;;-1:-1:-1;10373:185:16:o;10563:326::-;10757:2;10742:18;;10769:48;10746:9;10799:6;10769:48;:::i;:::-;10826:57;10879:2;10868:9;10864:18;10856:6;10826:57;:::i;10894:219::-;11043:2;11032:9;11025:21;11006:4;11063:44;11103:2;11092:9;11088:18;11080:6;11063:44;:::i;24248:128::-;24288:3;24319:1;24315:6;24312:1;24309:13;24306:2;;;24325:18;;:::i;:::-;-1:-1:-1;24361:9:16;;24296:80::o;24381:204::-;24419:3;24455:4;24452:1;24448:12;24487:4;24484:1;24480:12;24522:3;24516:4;24512:14;24507:3;24504:23;24501:2;;;24530:18;;:::i;:::-;24566:13;;24427:158;-1:-1:-1;;;24427:158:16:o;24590:120::-;24630:1;24656;24646:2;;24661:18;;:::i;:::-;-1:-1:-1;24695:9:16;;24636:74::o;24715:125::-;24755:4;24783:1;24780;24777:8;24774:2;;;24788:18;;:::i;:::-;-1:-1:-1;24825:9:16;;24764:76::o;24845:195::-;24883:4;24920;24917:1;24913:12;24952:4;24949:1;24945:12;24977:3;24972;24969:12;24966:2;;;24984:18;;:::i;:::-;25021:13;;;24892:148;-1:-1:-1;;;24892:148:16:o;25045:258::-;25117:1;25127:113;25141:6;25138:1;25135:13;25127:113;;;25217:11;;;25211:18;25198:11;;;25191:39;25163:2;25156:10;25127:113;;;25258:6;25255:1;25252:13;25249:2;;;-1:-1:-1;;25293:1:16;25275:16;;25268:27;25098:205::o;25308:437::-;25387:1;25383:12;;;;25430;;;25451:2;;25505:4;25497:6;25493:17;25483:27;;25451:2;25558;25550:6;25547:14;25527:18;25524:38;25521:2;;;-1:-1:-1;;;25592:1:16;25585:88;25696:4;25693:1;25686:15;25724:4;25721:1;25714:15;25521:2;;25363:382;;;:::o;25750:135::-;25789:3;-1:-1:-1;;25810:17:16;;25807:2;;;25830:18;;:::i;:::-;-1:-1:-1;25877:1:16;25866:13;;25797:88::o;25890:175::-;25927:3;25971:4;25964:5;25960:16;26000:4;25991:7;25988:17;25985:2;;;26008:18;;:::i;:::-;26057:1;26044:15;;25935:130;-1:-1:-1;;25935:130:16:o;26070:112::-;26102:1;26128;26118:2;;26133:18;;:::i;:::-;-1:-1:-1;26167:9:16;;26108:74::o;26187:184::-;-1:-1:-1;;;26236:1:16;26229:88;26336:4;26333:1;26326:15;26360:4;26357:1;26350:15;26376:184;-1:-1:-1;;;26425:1:16;26418:88;26525:4;26522:1;26515:15;26549:4;26546:1;26539:15;26565:184;-1:-1:-1;;;26614:1:16;26607:88;26714:4;26711:1;26704:15;26738:4;26735:1;26728:15;26754:118;26840:5;26833:13;26826:21;26819:5;26816:32;26806:2;;26862:1;26859;26852:12;26877:177;-1:-1:-1;;;;;;26955:5:16;26951:78;26944:5;26941:89;26931:2;;27044:1;27041;27034:12

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.