ETH Price: $2,539.73 (+4.69%)

Token

BeiBei Adventurers Guild (BeiBei)
 

Overview

Max Total Supply

240 BeiBei

Holders

172

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
lyluckyjj.eth
Balance
1 BeiBei
0x6f89b67052e88f60d238997909a8e22fc27f31f5
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BeiBei

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 14 : BeiBei.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

contract BeiBei is Ownable, ERC721AQueryable, ERC2981 {
    using Strings for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    uint16 public ROYALTY_BASIS_POINT = 750;
    uint16 public constant MAX_SUPPLY = 500;
    uint16 public constant MAX_GENESIS_SUPPLY = 50;
    uint16 public constant MAX_ALPHA_SUPPLY = 450;

    uint8 public constant MAX_MINT_PUBLIC_GENESIS = 2;
    uint8 public constant MAX_MINT_PUBLIC_ALPHA = 2;
    uint8 public constant MAX_MINT_PRESALE_ALPHA = 1;
    uint8 public constant MAX_MINT_PRESALE_GENESIS = 1;

    uint8 public constant TEAM_MINT_GENESIS_AMOUNT = 20;
    uint8 public constant TEAM_MINT_ALPHA_AMOUNT = 50;

    uint256 public constant PUBLIC_SALE_GENESIS_PRICE = .1 ether;
    uint256 public constant PRESALE_GENESIS_PRICE = 0 ether;

    uint256 public constant PUBLIC_SALE_ALPHA_PRICE = .025 ether;
    uint256 public constant PRESALE_ALPHA_PRICE = 0 ether;

    string private baseTokenUri;
    uint16 public TOTAL_GENESIS_MINTED;
    uint16 public TOTAL_ALPHA_MINTED;

    //deploy smart contract, toggle WL, toggle WL when done, toggle isPublicSale
    //2 days later toggle reveal
    bool public isPublicSale;
    bool public isPresale;

    bytes32 private merkleRoot;

    mapping(address => uint16) public totalGenesisPresaleMinted;
    mapping(address => uint16) public totalGenesisPublicSaleMinted;
    mapping(address => uint16) public totalAlphaPresaleMinted;
    mapping(address => uint16) public totalAlphaPublicSaleMinted;
    mapping(uint256 => bool) public isGenesisMap;

    enum TierEnum {
        Genesis,
        Alpha
    }

    constructor(address payable royaltyReceiver)
        ERC721A("BeiBei Adventurers Guild", "BeiBei")
    {
        _setDefaultRoyalty(royaltyReceiver, ROYALTY_BASIS_POINT);
        _teamMint();
    }

    modifier callerIsUser() {
        require(
            tx.origin == msg.sender,
            "Bei Bei :: Cannot be called by a contract"
        );
        _;
    }

    function setIsGenesis(uint16 _quantity, bool isGenesis) internal {
        for (uint256 i = 0; i < _quantity; i++) {
            isGenesisMap[_tokenIds.current()] = isGenesis;
            _tokenIds.increment();
        }
    }

    function mintGenesisPublic(uint16 _quantity) external payable callerIsUser {
        require(isPublicSale, "Bei Bei :: Public Sale Not Yet Active.");
        require(
            (totalSupply() + _quantity) <= MAX_SUPPLY,
            "Bei Bei :: Cannot mint beyond max supply"
        );
        require(
            (TOTAL_GENESIS_MINTED + _quantity) <= MAX_GENESIS_SUPPLY,
            "Bei Bei :: Beyond Max Supply for Minting Genesis"
        );
        require(
            (totalGenesisPublicSaleMinted[msg.sender] + _quantity) <=
                MAX_MINT_PUBLIC_GENESIS,
            "Bei Bei :: Already minted max allowed amount!"
        );
        require(
            msg.value >= (PUBLIC_SALE_GENESIS_PRICE * _quantity),
            "Bei Bei :: Payment is below the price"
        );

        TOTAL_GENESIS_MINTED += _quantity;
        totalGenesisPublicSaleMinted[msg.sender] += _quantity;
        setIsGenesis(_quantity, true);
        _safeMint(msg.sender, _quantity);
        refundIfOver(PUBLIC_SALE_GENESIS_PRICE * _quantity);
    }

    function mintAlphaPublic(uint16 _quantity) external payable callerIsUser {
        require(isPublicSale, "Bei Bei :: Public Sale Not Yet Active.");
        require(
            (totalSupply() + _quantity) <= MAX_SUPPLY,
            "Bei Bei :: Cannot mint beyond max supply"
        );
        require(
            (TOTAL_ALPHA_MINTED + _quantity) <= MAX_ALPHA_SUPPLY,
            "Bei Bei :: Beyond Max Supply for Minting Alpha"
        );
        require(
            (totalAlphaPublicSaleMinted[msg.sender] + _quantity) <=
                MAX_MINT_PUBLIC_ALPHA,
            "Bei Bei :: Already minted max allowed amount!"
        );
        require(
            msg.value >= (PUBLIC_SALE_ALPHA_PRICE * _quantity),
            "Bei Bei :: Payment is below the price"
        );

        TOTAL_ALPHA_MINTED += _quantity;
        totalAlphaPublicSaleMinted[msg.sender] += _quantity;
        setIsGenesis(_quantity, false);
        _safeMint(msg.sender, _quantity);
        refundIfOver(PUBLIC_SALE_ALPHA_PRICE * _quantity);
    }

    function mintGenesisPresale(bytes32[] memory _merkleProof, uint16 _quantity)
        external
        payable
        callerIsUser
    {
        require(isPresale, "Bei Bei :: Presale Not Yet Active");
        require(
            (totalSupply() + _quantity) <= MAX_SUPPLY,
            "Bei Bei :: Cannot mint beyond max supply"
        );
        require(
            (TOTAL_GENESIS_MINTED + _quantity) <= MAX_GENESIS_SUPPLY,
            "Bei Bei :: Beyond Max Supply for Minting Genesis"
        );
        require(
            (totalGenesisPresaleMinted[msg.sender] + _quantity) <=
                MAX_MINT_PRESALE_GENESIS,
            "Bei Bei :: Cannot mint beyond presale max mint!"
        );
        require(
            msg.value >= (PRESALE_GENESIS_PRICE * _quantity),
            "Bei Bei :: Payment is below the price"
        );
        //create leaf node
        bytes32 sender = keccak256(abi.encode(TierEnum.Genesis, msg.sender));
        require(
            MerkleProof.verify(_merkleProof, merkleRoot, sender),
            "Bei Bei :: You are not in whitelist"
        );

        TOTAL_GENESIS_MINTED += _quantity;
        totalGenesisPresaleMinted[msg.sender] += _quantity;
        setIsGenesis(_quantity, true);
        _safeMint(msg.sender, _quantity);
        refundIfOver(PRESALE_GENESIS_PRICE * _quantity);
    }

    function mintAlphaPresale(bytes32[] memory _merkleProof, uint16 _quantity)
        external
        payable
        callerIsUser
    {
        require(isPresale, "Bei Bei :: Presale Not Yet Active");
        require(
            (totalSupply() + _quantity) <= MAX_SUPPLY,
            "Bei Bei :: Cannot mint beyond max supply"
        );
        require(
            (TOTAL_ALPHA_MINTED + _quantity) <= MAX_ALPHA_SUPPLY,
            "Bei Bei :: Beyond Max Supply for Minting Alpha"
        );
        require(
            (totalAlphaPresaleMinted[msg.sender] + _quantity) <=
                MAX_MINT_PRESALE_ALPHA,
            "Bei Bei :: Cannot mint beyond presale max mint!"
        );
        require(
            msg.value >= (PRESALE_ALPHA_PRICE * _quantity),
            "Bei Bei :: Payment is below the price"
        );
        //create leaf node
        bytes32 sender = keccak256(abi.encode(TierEnum.Alpha, msg.sender));
        require(
            MerkleProof.verify(_merkleProof, merkleRoot, sender),
            "Bei Bei :: You are not in whitelist"
        );

        TOTAL_ALPHA_MINTED += _quantity;
        totalAlphaPresaleMinted[msg.sender] += _quantity;
        setIsGenesis(_quantity, false);
        _safeMint(msg.sender, _quantity);
        refundIfOver(PRESALE_ALPHA_PRICE * _quantity);
    }

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    function _teamMint() internal onlyOwner {
        TOTAL_GENESIS_MINTED += TEAM_MINT_GENESIS_AMOUNT;
        TOTAL_ALPHA_MINTED += TEAM_MINT_ALPHA_AMOUNT;
        setIsGenesis(TEAM_MINT_GENESIS_AMOUNT, true);
        setIsGenesis(TEAM_MINT_ALPHA_AMOUNT, false);
        _safeMint(msg.sender, TEAM_MINT_GENESIS_AMOUNT);
        _safeMint(msg.sender, TEAM_MINT_ALPHA_AMOUNT);
    }

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

    //return uri for certain token
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return
            string(
                abi.encodePacked(
                    isGenesisMap[tokenId]
                        ? "ipfs://Qmc9hcDdBMRCNDJYEJbWkFWLmw3prDMjP3yZnQCjUTQdwm"
                        : "ipfs://QmfVg8CpgYS7aGGbLQP6yJX8ERu8gUnMnpYMirNuT5v6AZ"
                )
            );
    }

    function setRoyaltyInfo(address receiver, uint96 feeBasisPoints)
        external
        onlyOwner
    {
        _setDefaultRoyalty(receiver, feeBasisPoints);
    }

    function setTokenUri(string memory _baseTokenUri) external onlyOwner {
        baseTokenUri = _baseTokenUri;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function toggleIsPresale() external onlyOwner {
        isPresale = !isPresale;
    }

    function toggleIsPublicSale() external onlyOwner {
        isPublicSale = !isPublicSale;
    }

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

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f || // ERC165 interface ID for ERC721Metadata.
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }
}

File 2 of 14 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 3 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 4 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 5 of 14 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 6 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 7 of 14 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 9 of 14 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 10 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

File 11 of 14 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @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);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"royaltyReceiver","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ALPHA_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_GENESIS_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PRESALE_ALPHA","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PRESALE_GENESIS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PUBLIC_ALPHA","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PUBLIC_GENESIS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_ALPHA_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_GENESIS_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_ALPHA_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_GENESIS_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_BASIS_POINT","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_MINT_ALPHA_AMOUNT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_MINT_GENESIS_AMOUNT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_ALPHA_MINTED","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_GENESIS_MINTED","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isGenesisMap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint16","name":"_quantity","type":"uint16"}],"name":"mintAlphaPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_quantity","type":"uint16"}],"name":"mintAlphaPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint16","name":"_quantity","type":"uint16"}],"name":"mintGenesisPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_quantity","type":"uint16"}],"name":"mintGenesisPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeBasisPoints","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleIsPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleIsPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalAlphaPresaleMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalAlphaPublicSaleMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalGenesisPresaleMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalGenesisPublicSaleMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526102ee600c60006101000a81548161ffff021916908361ffff1602179055503480156200003057600080fd5b5060405162006a3b38038062006a3b833981810160405281019062000056919062000bf9565b6040518060400160405280601881526020017f42656942656920416476656e747572657273204775696c6400000000000000008152506040518060400160405280600681526020017f4265694265690000000000000000000000000000000000000000000000000000815250620000e2620000d66200016960201b60201c565b6200017160201b60201c565b8160039080519060200190620000fa92919062000adf565b5080600490805190602001906200011392919062000adf565b50620001246200023560201b60201c565b60018190555050506200015281600c60009054906101000a900461ffff1661ffff166200023a60201b60201c565b62000162620003de60201b60201c565b50620010ae565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b6200024a620004c860201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620002ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a29062000cb2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200031e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003159062000d24565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b620003ee620004d260201b60201c565b601460ff16600e60008282829054906101000a900461ffff1662000413919062000d83565b92506101000a81548161ffff021916908361ffff160217905550603260ff16600e60028282829054906101000a900461ffff1662000452919062000d83565b92506101000a81548161ffff021916908361ffff16021790555062000483601460ff1660016200056360201b60201c565b6200049a603260ff1660006200056360201b60201c565b620004b033601460ff16620005e660201b60201c565b620004c633603260ff16620005e660201b60201c565b565b6000612710905090565b620004e26200016960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005086200060c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000561576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005589062000e12565b60405180910390fd5b565b60005b8261ffff16811015620005e15781601460006200058f600b6200063560201b620030901760201c565b815260200190815260200160002060006101000a81548160ff021916908315150217905550620005cb600b6200064360201b6200309e1760201c565b8080620005d89062000e3e565b91505062000566565b505050565b620006088282604051806020016040528060008152506200065960201b60201c565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081600001549050919050565b6001816000016000828254019250508190555050565b6200066b83836200070b60201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14620007065760006001549050600083820390505b620006b56000868380600101945086620008f560201b60201c565b620006ec576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106200069a5781600154146200070357600080fd5b50505b505050565b6000600154905060008214156200074e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b62000763600084838562000a5760201b60201c565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620007f283620007d4600086600062000a5d60201b60201c565b620007e58562000a8d60201b60201c565b1762000a9d60201b60201c565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200089557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000858565b506000821415620008d2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050620008f0600084838562000ac860201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200092362000ace60201b60201c565b8786866040518563ffffffff1660e01b815260040162000947949392919062000f66565b6020604051808303816000875af19250505080156200098657506040513d601f19601f8201168201806040525081019062000983919062001017565b60015b62000a04573d8060008114620009b9576040519150601f19603f3d011682016040523d82523d6000602084013e620009be565b606091505b50600081511415620009fc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e862000a7c86868462000ad660201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b82805462000aed9062001078565b90600052602060002090601f01602090048101928262000b11576000855562000b5d565b82601f1062000b2c57805160ff191683800117855562000b5d565b8280016001018555821562000b5d579182015b8281111562000b5c57825182559160200191906001019062000b3f565b5b50905062000b6c919062000b70565b5090565b5b8082111562000b8b57600081600090555060010162000b71565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bc18262000b94565b9050919050565b62000bd38162000bb4565b811462000bdf57600080fd5b50565b60008151905062000bf38162000bc8565b92915050565b60006020828403121562000c125762000c1162000b8f565b5b600062000c228482850162000be2565b91505092915050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000c9a602a8362000c2b565b915062000ca78262000c3c565b604082019050919050565b6000602082019050818103600083015262000ccd8162000c8b565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000d0c60198362000c2b565b915062000d198262000cd4565b602082019050919050565b6000602082019050818103600083015262000d3f8162000cfd565b9050919050565b600061ffff82169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d908262000d46565b915062000d9d8362000d46565b92508261ffff0382111562000db75762000db662000d54565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000dfa60208362000c2b565b915062000e078262000dc2565b602082019050919050565b6000602082019050818103600083015262000e2d8162000deb565b9050919050565b6000819050919050565b600062000e4b8262000e34565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000e815762000e8062000d54565b5b600182019050919050565b600062000e998262000b94565b9050919050565b62000eab8162000e8c565b82525050565b62000ebc8162000e34565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000efe57808201518184015260208101905062000ee1565b8381111562000f0e576000848401525b50505050565b6000601f19601f8301169050919050565b600062000f328262000ec2565b62000f3e818562000ecd565b935062000f5081856020860162000ede565b62000f5b8162000f14565b840191505092915050565b600060808201905062000f7d600083018762000ea0565b62000f8c602083018662000ea0565b62000f9b604083018562000eb1565b818103606083015262000faf818462000f25565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000ff18162000fba565b811462000ffd57600080fd5b50565b600081519050620010118162000fe6565b92915050565b60006020828403121562001030576200102f62000b8f565b5b6000620010408482850162001000565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200109157607f821691505b60208210811415620010a857620010a762001049565b5b50919050565b61597d80620010be6000396000f3fe6080604052600436106103505760003560e01c8063715018a6116101c6578063add883d1116100f7578063d281eb6e11610095578063ee07951d1161006f578063ee07951d14610c59578063f2fde38b14610c84578063f77220ab14610cad578063fb13d48214610cd857610350565b8063d281eb6e14610bc3578063e4d98fa114610bdf578063e985e9c514610c1c57610350565b8063b7877eef116100d1578063b7877eef14610ae3578063b88d4fde14610b20578063c23dc68f14610b49578063c87b56dd14610b8657610350565b8063add883d114610a76578063b01e066a14610aa1578063b7574fda14610ab857610350565b80638da5cb5b1161016457806395d89b411161013e57806395d89b41146109ba57806399a2557a146109e5578063a22cb46514610a22578063a5a865dc14610a4b57610350565b80638da5cb5b146109395780638e824bdf1461096457806395364a841461098f57610350565b80637cb64759116101a05780637cb647591461089b5780638462151c146108c4578063877e1dfd14610901578063891f144b1461091d57610350565b8063715018a61461082e578063738e7218146108455780637574e9ed1461087057610350565b80632a55205a116102a0578063590363af1161023e5780635bbb2177116102185780635bbb2177146107605780636352211e1461079d57806363f6a97d146107da57806370a08231146107f157610350565b8063590363af146106df5780635947f5c41461070a5780635b85e6861461073557610350565b806342842e0e1161027a57806342842e0e1461064457806345fb64701461066d5780634dcd026d146106985780634e472dd3146106b457610350565b80632a55205a146105c457806332cb6b0c146106025780633ccfd60b1461062d57610350565b8063095ea7b31161030d57806318160ddd116102e757806318160ddd1461051a5780631a5100171461054557806323b872dd1461057057806324f7f5eb1461059957610350565b8063095ea7b3146104895780630b1acce3146104b257806310680f84146104dd57610350565b806301ffc9a71461035557806302fa7c47146103925780630675b7c6146103bb57806306fdde03146103e457806307d854381461040f578063081812fc1461044c575b600080fd5b34801561036157600080fd5b5061037c60048036038101906103779190613e88565b610d15565b6040516103899190613ed0565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613f8d565b610e1f565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190614113565b610e35565b005b3480156103f057600080fd5b506103f9610e57565b60405161040691906141e4565b60405180910390f35b34801561041b57600080fd5b506104366004803603810190610431919061423c565b610ee9565b6040516104439190613ed0565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e919061423c565b610f09565b6040516104809190614278565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190614293565b610f88565b005b3480156104be57600080fd5b506104c76110cc565b6040516104d491906142ef565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff919061430a565b6110d1565b6040516105119190614354565b60405180910390f35b34801561052657600080fd5b5061052f6110f2565b60405161053c919061437e565b60405180910390f35b34801561055157600080fd5b5061055a611109565b60405161056791906142ef565b60405180910390f35b34801561057c57600080fd5b5061059760048036038101906105929190614399565b61110e565b005b3480156105a557600080fd5b506105ae611433565b6040516105bb919061437e565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e691906143ec565b611438565b6040516105f992919061442c565b60405180910390f35b34801561060e57600080fd5b50610617611623565b6040516106249190614354565b60405180910390f35b34801561063957600080fd5b50610642611629565b005b34801561065057600080fd5b5061066b60048036038101906106669190614399565b61167a565b005b34801561067957600080fd5b5061068261169a565b60405161068f91906142ef565b60405180910390f35b6106b260048036038101906106ad919061457f565b61169f565b005b3480156106c057600080fd5b506106c9611a79565b6040516106d69190614354565b60405180910390f35b3480156106eb57600080fd5b506106f4611a7f565b60405161070191906142ef565b60405180910390f35b34801561071657600080fd5b5061071f611a84565b60405161072c919061437e565b60405180910390f35b34801561074157600080fd5b5061074a611a8f565b604051610757919061437e565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190614636565b611a9b565b60405161079491906147e6565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf919061423c565b611b5e565b6040516107d19190614278565b60405180910390f35b3480156107e657600080fd5b506107ef611b70565b005b3480156107fd57600080fd5b506108186004803603810190610813919061430a565b611ba4565b604051610825919061437e565b60405180910390f35b34801561083a57600080fd5b50610843611c5d565b005b34801561085157600080fd5b5061085a611c71565b6040516108679190614354565b60405180910390f35b34801561087c57600080fd5b50610885611c76565b6040516108929190614354565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190614808565b611c8a565b005b3480156108d057600080fd5b506108eb60048036038101906108e6919061430a565b611c9c565b6040516108f891906148f3565b60405180910390f35b61091b6004803603810190610916919061457f565b611de6565b005b61093760048036038101906109329190614915565b6121be565b005b34801561094557600080fd5b5061094e612528565b60405161095b9190614278565b60405180910390f35b34801561097057600080fd5b50610979612551565b6040516109869190614354565b60405180910390f35b34801561099b57600080fd5b506109a4612565565b6040516109b19190613ed0565b60405180910390f35b3480156109c657600080fd5b506109cf612578565b6040516109dc91906141e4565b60405180910390f35b3480156109f157600080fd5b50610a0c6004803603810190610a079190614942565b61260a565b604051610a1991906148f3565b60405180910390f35b348015610a2e57600080fd5b50610a496004803603810190610a4491906149c1565b61281e565b005b348015610a5757600080fd5b50610a60612996565b604051610a6d9190613ed0565b60405180910390f35b348015610a8257600080fd5b50610a8b6129a9565b604051610a9891906142ef565b60405180910390f35b348015610aad57600080fd5b50610ab66129ae565b005b348015610ac457600080fd5b50610acd6129e2565b604051610ada919061437e565b60405180910390f35b348015610aef57600080fd5b50610b0a6004803603810190610b05919061430a565b6129e7565b604051610b179190614354565b60405180910390f35b348015610b2c57600080fd5b50610b476004803603810190610b429190614aa2565b612a08565b005b348015610b5557600080fd5b50610b706004803603810190610b6b919061423c565b612a7b565b604051610b7d9190614b7a565b60405180910390f35b348015610b9257600080fd5b50610bad6004803603810190610ba8919061423c565b612ae5565b604051610bba91906141e4565b60405180910390f35b610bdd6004803603810190610bd89190614915565b612bb2565b005b348015610beb57600080fd5b50610c066004803603810190610c01919061430a565b612f1d565b604051610c139190614354565b60405180910390f35b348015610c2857600080fd5b50610c436004803603810190610c3e9190614b95565b612f3e565b604051610c509190613ed0565b60405180910390f35b348015610c6557600080fd5b50610c6e612fd2565b604051610c7b9190614354565b60405180910390f35b348015610c9057600080fd5b50610cab6004803603810190610ca6919061430a565b612fe6565b005b348015610cb957600080fd5b50610cc261306a565b604051610ccf91906142ef565b60405180910390f35b348015610ce457600080fd5b50610cff6004803603810190610cfa919061430a565b61306f565b604051610d0c9190614354565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d7057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610da05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e0857507f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e185750610e17826130b4565b5b9050919050565b610e2761312e565b610e3182826131ac565b5050565b610e3d61312e565b80600d9080519060200190610e53929190613d2a565b5050565b606060038054610e6690614c04565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9290614c04565b8015610edf5780601f10610eb457610100808354040283529160200191610edf565b820191906000526020600020905b815481529060010190602001808311610ec257829003601f168201915b5050505050905090565b60146020528060005260406000206000915054906101000a900460ff1681565b6000610f1482613342565b610f4a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f9382611b5e565b90508073ffffffffffffffffffffffffffffffffffffffff16610fb46133a1565b73ffffffffffffffffffffffffffffffffffffffff161461101757610fe081610fdb6133a1565b612f3e565b611016576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600181565b60126020528060005260406000206000915054906101000a900461ffff1681565b60006110fc6133a9565b6002546001540303905090565b600281565b6000611119826133ae565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611180576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061118c8461347c565b915091506111a2818761119d6133a1565b6134a3565b6111ee576111b7866111b26133a1565b612f3e565b6111ed576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611255576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61126286868660016134e7565b801561126d57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061133b856113178888876134ed565b7c020000000000000000000000000000000000000000000000000000000017613515565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156113c35760006001850190506000600560008381526020019081526020016000205414156113c15760015481146113c0578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461142b8686866001613540565b505050505050565b600081565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156115ce5760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006115d8613546565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866116049190614c65565b61160e9190614cee565b90508160000151819350935050509250929050565b6101f481565b61163161312e565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611677573d6000803e3d6000fd5b50565b61169583838360405180602001604052806000815250612a08565b505050565b600281565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461170d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170490614d91565b60405180910390fd5b600e60059054906101000a900460ff1661175c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175390614e23565b60405180910390fd5b6101f461ffff168161ffff166117706110f2565b61177a9190614e43565b11156117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b290614f0b565b60405180910390fd5b6101c261ffff1681600e60029054906101000a900461ffff166117de9190614f2b565b61ffff161115611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a90614fd5565b60405180910390fd5b600160ff1681601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166118819190614f2b565b61ffff1611156118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90615067565b60405180910390fd5b8061ffff1660006118d79190614c65565b341015611919576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611910906150f9565b60405180910390fd5b600060013360405160200161192f929190615190565b60405160208183030381529060405280519060200120905061195483600f5483613550565b611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a9061522b565b60405180910390fd5b81600e60028282829054906101000a900461ffff166119b29190614f2b565b92506101000a81548161ffff021916908361ffff16021790555081601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff16611a289190614f2b565b92506101000a81548161ffff021916908361ffff160217905550611a4d826000613567565b611a5b338361ffff166135cc565b611a748261ffff166000611a6f9190614c65565b6135ea565b505050565b6101c281565b601481565b6658d15e1762800081565b67016345785d8a000081565b6060600083839050905060008167ffffffffffffffff811115611ac157611ac0613fe8565b5b604051908082528060200260200182016040528015611afa57816020015b611ae7613db0565b815260200190600190039081611adf5790505b50905060005b828114611b5257611b29868683818110611b1d57611b1c61524b565b5b90506020020135612a7b565b828281518110611b3c57611b3b61524b565b5b6020026020010181905250806001019050611b00565b50809250505092915050565b6000611b69826133ae565b9050919050565b611b7861312e565b600e60059054906101000a900460ff1615600e60056101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c0c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611c6561312e565b611c6f600061368b565b565b603281565b600e60029054906101000a900461ffff1681565b611c9261312e565b80600f8190555050565b60606000806000611cac85611ba4565b905060008167ffffffffffffffff811115611cca57611cc9613fe8565b5b604051908082528060200260200182016040528015611cf85781602001602082028036833780820191505090505b509050611d03613db0565b6000611d0d6133a9565b90505b838614611dd857611d208161374f565b9150816040015115611d3157611dcd565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d7157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611dcc5780838780600101985081518110611dbf57611dbe61524b565b5b6020026020010181815250505b5b806001019050611d10565b508195505050505050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b90614d91565b60405180910390fd5b600e60059054906101000a900460ff16611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a90614e23565b60405180910390fd5b6101f461ffff168161ffff16611eb76110f2565b611ec19190614e43565b1115611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990614f0b565b60405180910390fd5b603261ffff1681600e60009054906101000a900461ffff16611f249190614f2b565b61ffff161115611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f60906152ec565b60405180910390fd5b600160ff1681601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff16611fc79190614f2b565b61ffff16111561200c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200390615067565b60405180910390fd5b8061ffff16600061201d9190614c65565b34101561205f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612056906150f9565b60405180910390fd5b60008033604051602001612074929190615190565b60405160208183030381529060405280519060200120905061209983600f5483613550565b6120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf9061522b565b60405180910390fd5b81600e60008282829054906101000a900461ffff166120f79190614f2b565b92506101000a81548161ffff021916908361ffff16021790555081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff1661216d9190614f2b565b92506101000a81548161ffff021916908361ffff160217905550612192826001613567565b6121a0338361ffff166135cc565b6121b98261ffff1660006121b49190614c65565b6135ea565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222390614d91565b60405180910390fd5b600e60049054906101000a900460ff1661227b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122729061537e565b60405180910390fd5b6101f461ffff168161ffff1661228f6110f2565b6122999190614e43565b11156122da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d190614f0b565b60405180910390fd5b6101c261ffff1681600e60029054906101000a900461ffff166122fd9190614f2b565b61ffff161115612342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233990614fd5565b60405180910390fd5b600260ff1681601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166123a09190614f2b565b61ffff1611156123e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dc90615410565b60405180910390fd5b8061ffff166658d15e176280006123fc9190614c65565b34101561243e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612435906150f9565b60405180910390fd5b80600e60028282829054906101000a900461ffff1661245d9190614f2b565b92506101000a81548161ffff021916908361ffff16021790555080601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166124d39190614f2b565b92506101000a81548161ffff021916908361ffff1602179055506124f8816000613567565b612506338261ffff166135cc565b6125258161ffff166658d15e176280006125209190614c65565b6135ea565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900461ffff1681565b600e60059054906101000a900460ff1681565b60606004805461258790614c04565b80601f01602080910402602001604051908101604052809291908181526020018280546125b390614c04565b80156126005780601f106125d557610100808354040283529160200191612600565b820191906000526020600020905b8154815290600101906020018083116125e357829003601f168201915b5050505050905090565b6060818310612645576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061265061377a565b905061265a6133a9565b85101561266c576126696133a9565b94505b80841115612678578093505b600061268387611ba4565b9050848610156126a65760008686039050818110156126a0578091505b506126ab565b600090505b60008167ffffffffffffffff8111156126c7576126c6613fe8565b5b6040519080825280602002602001820160405280156126f55781602001602082028036833780820191505090505b509050600082141561270d5780945050505050612817565b600061271888612a7b565b90506000816040015161272d57816000015190505b60008990505b8881141580156127435750848714155b15612809576127518161374f565b9250826040015115612762576127fe565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146127a257826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127fd57808488806001019950815181106127f0576127ef61524b565b5b6020026020010181815250505b5b806001019050612733565b508583528296505050505050505b9392505050565b6128266133a1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561288b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006128986133a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166129456133a1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161298a9190613ed0565b60405180910390a35050565b600e60049054906101000a900460ff1681565b603281565b6129b661312e565b600e60049054906101000a900460ff1615600e60046101000a81548160ff021916908315150217905550565b600081565b60136020528060005260406000206000915054906101000a900461ffff1681565b612a1384848461110e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a7557612a3e84848484613784565b612a74576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612a83613db0565b612a8b613db0565b612a936133a9565b831080612aa75750612aa361377a565b8310155b15612ab55780915050612ae0565b612abe8361374f565b9050806040015115612ad35780915050612ae0565b612adc836138d5565b9150505b919050565b6060612af082613342565b612b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b26906154a2565b60405180910390fd5b6014600083815260200190815260200160002060009054906101000a900460ff16612b725760405180606001604052806035815260200161591360359139612b8c565b6040518060600160405280603581526020016158de603591395b604051602001612b9c91906154fe565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1790614d91565b60405180910390fd5b600e60049054906101000a900460ff16612c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c669061537e565b60405180910390fd5b6101f461ffff168161ffff16612c836110f2565b612c8d9190614e43565b1115612cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc590614f0b565b60405180910390fd5b603261ffff1681600e60009054906101000a900461ffff16612cf09190614f2b565b61ffff161115612d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2c906152ec565b60405180910390fd5b600260ff1681601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff16612d939190614f2b565b61ffff161115612dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcf90615410565b60405180910390fd5b8061ffff1667016345785d8a0000612df09190614c65565b341015612e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e29906150f9565b60405180910390fd5b80600e60008282829054906101000a900461ffff16612e519190614f2b565b92506101000a81548161ffff021916908361ffff16021790555080601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff16612ec79190614f2b565b92506101000a81548161ffff021916908361ffff160217905550612eec816001613567565b612efa338261ffff166135cc565b612f1a8161ffff1667016345785d8a0000612f159190614c65565b6135ea565b50565b60106020528060005260406000206000915054906101000a900461ffff1681565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900461ffff1681565b612fee61312e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561305e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305590615587565b60405180910390fd5b6130678161368b565b50565b600181565b60116020528060005260406000206000915054906101000a900461ffff1681565b600081600001549050919050565b6001816000016000828254019250508190555050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806131275750613126826138f5565b5b9050919050565b61313661395f565b73ffffffffffffffffffffffffffffffffffffffff16613154612528565b73ffffffffffffffffffffffffffffffffffffffff16146131aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a1906155f3565b60405180910390fd5b565b6131b4613546565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115613212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320990615685565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613282576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613279906156f1565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008161334d6133a9565b1115801561335c575060015482105b801561339a575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806133bd6133a9565b11613445576001548110156134445760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415613442575b600081141561343857600560008360019003935083815260200190815260200160002054905061340d565b8092505050613477565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613504868684613967565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612710905090565b60008261355d8584613970565b1490509392505050565b60005b8261ffff168110156135c7578160146000613585600b613090565b815260200190815260200160002060006101000a81548160ff0219169083151502179055506135b4600b61309e565b80806135bf90615711565b91505061356a565b505050565b6135e68282604051806020016040528060008152506139c6565b5050565b8034101561362d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613624906157a6565b60405180910390fd5b80341115613688573373ffffffffffffffffffffffffffffffffffffffff166108fc823461365b91906157c6565b9081150290604051600060405180830381858888f19350505050158015613686573d6000803e3d6000fd5b505b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613757613db0565b6137736005600084815260200190815260200160002054613a64565b9050919050565b6000600154905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137aa6133a1565b8786866040518563ffffffff1660e01b81526004016137cc949392919061584f565b6020604051808303816000875af192505050801561380857506040513d601f19601f8201168201806040525081019061380591906158b0565b60015b613882573d8060008114613838576040519150601f19603f3d011682016040523d82523d6000602084013e61383d565b606091505b5060008151141561387a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6138dd613db0565b6138ee6138e9836133ae565b613a64565b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60009392505050565b60008082905060005b84518110156139bb576139a6828683815181106139995761399861524b565b5b6020026020010151613b1a565b915080806139b390615711565b915050613979565b508091505092915050565b6139d08383613b45565b60008373ffffffffffffffffffffffffffffffffffffffff163b14613a5f5760006001549050600083820390505b613a116000868380600101945086613784565b613a47576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106139fe578160015414613a5c57600080fd5b50505b505050565b613a6c613db0565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000818310613b3257613b2d8284613d03565b613b3d565b613b3c8383613d03565b5b905092915050565b600060015490506000821415613b87576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613b9460008483856134e7565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613c0b83613bfc60008660006134ed565b613c0585613d1a565b17613515565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613cac57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613c71565b506000821415613ce8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050613cfe6000848385613540565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b828054613d3690614c04565b90600052602060002090601f016020900481019282613d585760008555613d9f565b82601f10613d7157805160ff1916838001178555613d9f565b82800160010185558215613d9f579182015b82811115613d9e578251825591602001919060010190613d83565b5b509050613dac9190613dff565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115613e18576000816000905550600101613e00565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e6581613e30565b8114613e7057600080fd5b50565b600081359050613e8281613e5c565b92915050565b600060208284031215613e9e57613e9d613e26565b5b6000613eac84828501613e73565b91505092915050565b60008115159050919050565b613eca81613eb5565b82525050565b6000602082019050613ee56000830184613ec1565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613f1682613eeb565b9050919050565b613f2681613f0b565b8114613f3157600080fd5b50565b600081359050613f4381613f1d565b92915050565b60006bffffffffffffffffffffffff82169050919050565b613f6a81613f49565b8114613f7557600080fd5b50565b600081359050613f8781613f61565b92915050565b60008060408385031215613fa457613fa3613e26565b5b6000613fb285828601613f34565b9250506020613fc385828601613f78565b9150509250929050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61402082613fd7565b810181811067ffffffffffffffff8211171561403f5761403e613fe8565b5b80604052505050565b6000614052613e1c565b905061405e8282614017565b919050565b600067ffffffffffffffff82111561407e5761407d613fe8565b5b61408782613fd7565b9050602081019050919050565b82818337600083830152505050565b60006140b66140b184614063565b614048565b9050828152602081018484840111156140d2576140d1613fd2565b5b6140dd848285614094565b509392505050565b600082601f8301126140fa576140f9613fcd565b5b813561410a8482602086016140a3565b91505092915050565b60006020828403121561412957614128613e26565b5b600082013567ffffffffffffffff81111561414757614146613e2b565b5b614153848285016140e5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561419657808201518184015260208101905061417b565b838111156141a5576000848401525b50505050565b60006141b68261415c565b6141c08185614167565b93506141d0818560208601614178565b6141d981613fd7565b840191505092915050565b600060208201905081810360008301526141fe81846141ab565b905092915050565b6000819050919050565b61421981614206565b811461422457600080fd5b50565b60008135905061423681614210565b92915050565b60006020828403121561425257614251613e26565b5b600061426084828501614227565b91505092915050565b61427281613f0b565b82525050565b600060208201905061428d6000830184614269565b92915050565b600080604083850312156142aa576142a9613e26565b5b60006142b885828601613f34565b92505060206142c985828601614227565b9150509250929050565b600060ff82169050919050565b6142e9816142d3565b82525050565b600060208201905061430460008301846142e0565b92915050565b6000602082840312156143205761431f613e26565b5b600061432e84828501613f34565b91505092915050565b600061ffff82169050919050565b61434e81614337565b82525050565b60006020820190506143696000830184614345565b92915050565b61437881614206565b82525050565b6000602082019050614393600083018461436f565b92915050565b6000806000606084860312156143b2576143b1613e26565b5b60006143c086828701613f34565b93505060206143d186828701613f34565b92505060406143e286828701614227565b9150509250925092565b6000806040838503121561440357614402613e26565b5b600061441185828601614227565b925050602061442285828601614227565b9150509250929050565b60006040820190506144416000830185614269565b61444e602083018461436f565b9392505050565b600067ffffffffffffffff8211156144705761446f613fe8565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b61449981614486565b81146144a457600080fd5b50565b6000813590506144b681614490565b92915050565b60006144cf6144ca84614455565b614048565b905080838252602082019050602084028301858111156144f2576144f1614481565b5b835b8181101561451b578061450788826144a7565b8452602084019350506020810190506144f4565b5050509392505050565b600082601f83011261453a57614539613fcd565b5b813561454a8482602086016144bc565b91505092915050565b61455c81614337565b811461456757600080fd5b50565b60008135905061457981614553565b92915050565b6000806040838503121561459657614595613e26565b5b600083013567ffffffffffffffff8111156145b4576145b3613e2b565b5b6145c085828601614525565b92505060206145d18582860161456a565b9150509250929050565b600080fd5b60008083601f8401126145f6576145f5613fcd565b5b8235905067ffffffffffffffff811115614613576146126145db565b5b60208301915083602082028301111561462f5761462e614481565b5b9250929050565b6000806020838503121561464d5761464c613e26565b5b600083013567ffffffffffffffff81111561466b5761466a613e2b565b5b614677858286016145e0565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146b881613f0b565b82525050565b600067ffffffffffffffff82169050919050565b6146db816146be565b82525050565b6146ea81613eb5565b82525050565b600062ffffff82169050919050565b614708816146f0565b82525050565b60808201600082015161472460008501826146af565b50602082015161473760208501826146d2565b50604082015161474a60408501826146e1565b50606082015161475d60608501826146ff565b50505050565b600061476f838361470e565b60808301905092915050565b6000602082019050919050565b600061479382614683565b61479d818561468e565b93506147a88361469f565b8060005b838110156147d95781516147c08882614763565b97506147cb8361477b565b9250506001810190506147ac565b5085935050505092915050565b600060208201905081810360008301526148008184614788565b905092915050565b60006020828403121561481e5761481d613e26565b5b600061482c848285016144a7565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61486a81614206565b82525050565b600061487c8383614861565b60208301905092915050565b6000602082019050919050565b60006148a082614835565b6148aa8185614840565b93506148b583614851565b8060005b838110156148e65781516148cd8882614870565b97506148d883614888565b9250506001810190506148b9565b5085935050505092915050565b6000602082019050818103600083015261490d8184614895565b905092915050565b60006020828403121561492b5761492a613e26565b5b60006149398482850161456a565b91505092915050565b60008060006060848603121561495b5761495a613e26565b5b600061496986828701613f34565b935050602061497a86828701614227565b925050604061498b86828701614227565b9150509250925092565b61499e81613eb5565b81146149a957600080fd5b50565b6000813590506149bb81614995565b92915050565b600080604083850312156149d8576149d7613e26565b5b60006149e685828601613f34565b92505060206149f7858286016149ac565b9150509250929050565b600067ffffffffffffffff821115614a1c57614a1b613fe8565b5b614a2582613fd7565b9050602081019050919050565b6000614a45614a4084614a01565b614048565b905082815260208101848484011115614a6157614a60613fd2565b5b614a6c848285614094565b509392505050565b600082601f830112614a8957614a88613fcd565b5b8135614a99848260208601614a32565b91505092915050565b60008060008060808587031215614abc57614abb613e26565b5b6000614aca87828801613f34565b9450506020614adb87828801613f34565b9350506040614aec87828801614227565b925050606085013567ffffffffffffffff811115614b0d57614b0c613e2b565b5b614b1987828801614a74565b91505092959194509250565b608082016000820151614b3b60008501826146af565b506020820151614b4e60208501826146d2565b506040820151614b6160408501826146e1565b506060820151614b7460608501826146ff565b50505050565b6000608082019050614b8f6000830184614b25565b92915050565b60008060408385031215614bac57614bab613e26565b5b6000614bba85828601613f34565b9250506020614bcb85828601613f34565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614c1c57607f821691505b60208210811415614c3057614c2f614bd5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c7082614206565b9150614c7b83614206565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cb457614cb3614c36565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614cf982614206565b9150614d0483614206565b925082614d1457614d13614cbf565b5b828204905092915050565b7f42656920426569203a3a2043616e6e6f742062652063616c6c6564206279206160008201527f20636f6e74726163740000000000000000000000000000000000000000000000602082015250565b6000614d7b602983614167565b9150614d8682614d1f565b604082019050919050565b60006020820190508181036000830152614daa81614d6e565b9050919050565b7f42656920426569203a3a2050726573616c65204e6f742059657420416374697660008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e0d602183614167565b9150614e1882614db1565b604082019050919050565b60006020820190508181036000830152614e3c81614e00565b9050919050565b6000614e4e82614206565b9150614e5983614206565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e8e57614e8d614c36565b5b828201905092915050565b7f42656920426569203a3a2043616e6e6f74206d696e74206265796f6e64206d6160008201527f7820737570706c79000000000000000000000000000000000000000000000000602082015250565b6000614ef5602883614167565b9150614f0082614e99565b604082019050919050565b60006020820190508181036000830152614f2481614ee8565b9050919050565b6000614f3682614337565b9150614f4183614337565b92508261ffff03821115614f5857614f57614c36565b5b828201905092915050565b7f42656920426569203a3a204265796f6e64204d617820537570706c7920666f7260008201527f204d696e74696e6720416c706861000000000000000000000000000000000000602082015250565b6000614fbf602e83614167565b9150614fca82614f63565b604082019050919050565b60006020820190508181036000830152614fee81614fb2565b9050919050565b7f42656920426569203a3a2043616e6e6f74206d696e74206265796f6e6420707260008201527f6573616c65206d6178206d696e74210000000000000000000000000000000000602082015250565b6000615051602f83614167565b915061505c82614ff5565b604082019050919050565b6000602082019050818103600083015261508081615044565b9050919050565b7f42656920426569203a3a205061796d656e742069732062656c6f77207468652060008201527f7072696365000000000000000000000000000000000000000000000000000000602082015250565b60006150e3602583614167565b91506150ee82615087565b604082019050919050565b60006020820190508181036000830152615112816150d6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6002811061515957615158615119565b5b50565b600081905061516a82615148565b919050565b600061517a8261515c565b9050919050565b61518a8161516f565b82525050565b60006040820190506151a56000830185615181565b6151b26020830184614269565b9392505050565b7f42656920426569203a3a20596f7520617265206e6f7420696e2077686974656c60008201527f6973740000000000000000000000000000000000000000000000000000000000602082015250565b6000615215602383614167565b9150615220826151b9565b604082019050919050565b6000602082019050818103600083015261524481615208565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f42656920426569203a3a204265796f6e64204d617820537570706c7920666f7260008201527f204d696e74696e672047656e6573697300000000000000000000000000000000602082015250565b60006152d6603083614167565b91506152e18261527a565b604082019050919050565b60006020820190508181036000830152615305816152c9565b9050919050565b7f42656920426569203a3a205075626c69632053616c65204e6f7420596574204160008201527f63746976652e0000000000000000000000000000000000000000000000000000602082015250565b6000615368602683614167565b91506153738261530c565b604082019050919050565b600060208201905081810360008301526153978161535b565b9050919050565b7f42656920426569203a3a20416c7265616479206d696e746564206d617820616c60008201527f6c6f77656420616d6f756e742100000000000000000000000000000000000000602082015250565b60006153fa602d83614167565b91506154058261539e565b604082019050919050565b60006020820190508181036000830152615429816153ed565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061548c602f83614167565b915061549782615430565b604082019050919050565b600060208201905081810360008301526154bb8161547f565b9050919050565b600081905092915050565b60006154d88261415c565b6154e281856154c2565b93506154f2818560208601614178565b80840191505092915050565b600061550a82846154cd565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615571602683614167565b915061557c82615515565b604082019050919050565b600060208201905081810360008301526155a081615564565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006155dd602083614167565b91506155e8826155a7565b602082019050919050565b6000602082019050818103600083015261560c816155d0565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061566f602a83614167565b915061567a82615613565b604082019050919050565b6000602082019050818103600083015261569e81615662565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006156db601983614167565b91506156e6826156a5565b602082019050919050565b6000602082019050818103600083015261570a816156ce565b9050919050565b600061571c82614206565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561574f5761574e614c36565b5b600182019050919050565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b6000615790601683614167565b915061579b8261575a565b602082019050919050565b600060208201905081810360008301526157bf81615783565b9050919050565b60006157d182614206565b91506157dc83614206565b9250828210156157ef576157ee614c36565b5b828203905092915050565b600081519050919050565b600082825260208201905092915050565b6000615821826157fa565b61582b8185615805565b935061583b818560208601614178565b61584481613fd7565b840191505092915050565b60006080820190506158646000830187614269565b6158716020830186614269565b61587e604083018561436f565b81810360608301526158908184615816565b905095945050505050565b6000815190506158aa81613e5c565b92915050565b6000602082840312156158c6576158c5613e26565b5b60006158d48482850161589b565b9150509291505056fe697066733a2f2f516d633968634464424d52434e444a59454a62576b46574c6d77337072444d6a5033795a6e51436a55545164776d697066733a2f2f516d66566738437067595337614747624c515036794a58384552753867556e4d6e70594d69724e7554357636415aa26469706673582212201ae72a5ec5a511fb4dfa26c5b361196dc1887be8d4b5aa74c73b76935fdcd86a64736f6c634300080b0033000000000000000000000000f313e6c1d64f8cc830137f48b6885d90fdeb3218

Deployed Bytecode

0x6080604052600436106103505760003560e01c8063715018a6116101c6578063add883d1116100f7578063d281eb6e11610095578063ee07951d1161006f578063ee07951d14610c59578063f2fde38b14610c84578063f77220ab14610cad578063fb13d48214610cd857610350565b8063d281eb6e14610bc3578063e4d98fa114610bdf578063e985e9c514610c1c57610350565b8063b7877eef116100d1578063b7877eef14610ae3578063b88d4fde14610b20578063c23dc68f14610b49578063c87b56dd14610b8657610350565b8063add883d114610a76578063b01e066a14610aa1578063b7574fda14610ab857610350565b80638da5cb5b1161016457806395d89b411161013e57806395d89b41146109ba57806399a2557a146109e5578063a22cb46514610a22578063a5a865dc14610a4b57610350565b80638da5cb5b146109395780638e824bdf1461096457806395364a841461098f57610350565b80637cb64759116101a05780637cb647591461089b5780638462151c146108c4578063877e1dfd14610901578063891f144b1461091d57610350565b8063715018a61461082e578063738e7218146108455780637574e9ed1461087057610350565b80632a55205a116102a0578063590363af1161023e5780635bbb2177116102185780635bbb2177146107605780636352211e1461079d57806363f6a97d146107da57806370a08231146107f157610350565b8063590363af146106df5780635947f5c41461070a5780635b85e6861461073557610350565b806342842e0e1161027a57806342842e0e1461064457806345fb64701461066d5780634dcd026d146106985780634e472dd3146106b457610350565b80632a55205a146105c457806332cb6b0c146106025780633ccfd60b1461062d57610350565b8063095ea7b31161030d57806318160ddd116102e757806318160ddd1461051a5780631a5100171461054557806323b872dd1461057057806324f7f5eb1461059957610350565b8063095ea7b3146104895780630b1acce3146104b257806310680f84146104dd57610350565b806301ffc9a71461035557806302fa7c47146103925780630675b7c6146103bb57806306fdde03146103e457806307d854381461040f578063081812fc1461044c575b600080fd5b34801561036157600080fd5b5061037c60048036038101906103779190613e88565b610d15565b6040516103899190613ed0565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613f8d565b610e1f565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190614113565b610e35565b005b3480156103f057600080fd5b506103f9610e57565b60405161040691906141e4565b60405180910390f35b34801561041b57600080fd5b506104366004803603810190610431919061423c565b610ee9565b6040516104439190613ed0565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e919061423c565b610f09565b6040516104809190614278565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190614293565b610f88565b005b3480156104be57600080fd5b506104c76110cc565b6040516104d491906142ef565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff919061430a565b6110d1565b6040516105119190614354565b60405180910390f35b34801561052657600080fd5b5061052f6110f2565b60405161053c919061437e565b60405180910390f35b34801561055157600080fd5b5061055a611109565b60405161056791906142ef565b60405180910390f35b34801561057c57600080fd5b5061059760048036038101906105929190614399565b61110e565b005b3480156105a557600080fd5b506105ae611433565b6040516105bb919061437e565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e691906143ec565b611438565b6040516105f992919061442c565b60405180910390f35b34801561060e57600080fd5b50610617611623565b6040516106249190614354565b60405180910390f35b34801561063957600080fd5b50610642611629565b005b34801561065057600080fd5b5061066b60048036038101906106669190614399565b61167a565b005b34801561067957600080fd5b5061068261169a565b60405161068f91906142ef565b60405180910390f35b6106b260048036038101906106ad919061457f565b61169f565b005b3480156106c057600080fd5b506106c9611a79565b6040516106d69190614354565b60405180910390f35b3480156106eb57600080fd5b506106f4611a7f565b60405161070191906142ef565b60405180910390f35b34801561071657600080fd5b5061071f611a84565b60405161072c919061437e565b60405180910390f35b34801561074157600080fd5b5061074a611a8f565b604051610757919061437e565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190614636565b611a9b565b60405161079491906147e6565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf919061423c565b611b5e565b6040516107d19190614278565b60405180910390f35b3480156107e657600080fd5b506107ef611b70565b005b3480156107fd57600080fd5b506108186004803603810190610813919061430a565b611ba4565b604051610825919061437e565b60405180910390f35b34801561083a57600080fd5b50610843611c5d565b005b34801561085157600080fd5b5061085a611c71565b6040516108679190614354565b60405180910390f35b34801561087c57600080fd5b50610885611c76565b6040516108929190614354565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190614808565b611c8a565b005b3480156108d057600080fd5b506108eb60048036038101906108e6919061430a565b611c9c565b6040516108f891906148f3565b60405180910390f35b61091b6004803603810190610916919061457f565b611de6565b005b61093760048036038101906109329190614915565b6121be565b005b34801561094557600080fd5b5061094e612528565b60405161095b9190614278565b60405180910390f35b34801561097057600080fd5b50610979612551565b6040516109869190614354565b60405180910390f35b34801561099b57600080fd5b506109a4612565565b6040516109b19190613ed0565b60405180910390f35b3480156109c657600080fd5b506109cf612578565b6040516109dc91906141e4565b60405180910390f35b3480156109f157600080fd5b50610a0c6004803603810190610a079190614942565b61260a565b604051610a1991906148f3565b60405180910390f35b348015610a2e57600080fd5b50610a496004803603810190610a4491906149c1565b61281e565b005b348015610a5757600080fd5b50610a60612996565b604051610a6d9190613ed0565b60405180910390f35b348015610a8257600080fd5b50610a8b6129a9565b604051610a9891906142ef565b60405180910390f35b348015610aad57600080fd5b50610ab66129ae565b005b348015610ac457600080fd5b50610acd6129e2565b604051610ada919061437e565b60405180910390f35b348015610aef57600080fd5b50610b0a6004803603810190610b05919061430a565b6129e7565b604051610b179190614354565b60405180910390f35b348015610b2c57600080fd5b50610b476004803603810190610b429190614aa2565b612a08565b005b348015610b5557600080fd5b50610b706004803603810190610b6b919061423c565b612a7b565b604051610b7d9190614b7a565b60405180910390f35b348015610b9257600080fd5b50610bad6004803603810190610ba8919061423c565b612ae5565b604051610bba91906141e4565b60405180910390f35b610bdd6004803603810190610bd89190614915565b612bb2565b005b348015610beb57600080fd5b50610c066004803603810190610c01919061430a565b612f1d565b604051610c139190614354565b60405180910390f35b348015610c2857600080fd5b50610c436004803603810190610c3e9190614b95565b612f3e565b604051610c509190613ed0565b60405180910390f35b348015610c6557600080fd5b50610c6e612fd2565b604051610c7b9190614354565b60405180910390f35b348015610c9057600080fd5b50610cab6004803603810190610ca6919061430a565b612fe6565b005b348015610cb957600080fd5b50610cc261306a565b604051610ccf91906142ef565b60405180910390f35b348015610ce457600080fd5b50610cff6004803603810190610cfa919061430a565b61306f565b604051610d0c9190614354565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d7057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610da05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e0857507f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e185750610e17826130b4565b5b9050919050565b610e2761312e565b610e3182826131ac565b5050565b610e3d61312e565b80600d9080519060200190610e53929190613d2a565b5050565b606060038054610e6690614c04565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9290614c04565b8015610edf5780601f10610eb457610100808354040283529160200191610edf565b820191906000526020600020905b815481529060010190602001808311610ec257829003601f168201915b5050505050905090565b60146020528060005260406000206000915054906101000a900460ff1681565b6000610f1482613342565b610f4a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f9382611b5e565b90508073ffffffffffffffffffffffffffffffffffffffff16610fb46133a1565b73ffffffffffffffffffffffffffffffffffffffff161461101757610fe081610fdb6133a1565b612f3e565b611016576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600181565b60126020528060005260406000206000915054906101000a900461ffff1681565b60006110fc6133a9565b6002546001540303905090565b600281565b6000611119826133ae565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611180576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061118c8461347c565b915091506111a2818761119d6133a1565b6134a3565b6111ee576111b7866111b26133a1565b612f3e565b6111ed576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611255576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61126286868660016134e7565b801561126d57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061133b856113178888876134ed565b7c020000000000000000000000000000000000000000000000000000000017613515565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156113c35760006001850190506000600560008381526020019081526020016000205414156113c15760015481146113c0578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461142b8686866001613540565b505050505050565b600081565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156115ce5760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006115d8613546565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866116049190614c65565b61160e9190614cee565b90508160000151819350935050509250929050565b6101f481565b61163161312e565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611677573d6000803e3d6000fd5b50565b61169583838360405180602001604052806000815250612a08565b505050565b600281565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461170d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170490614d91565b60405180910390fd5b600e60059054906101000a900460ff1661175c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175390614e23565b60405180910390fd5b6101f461ffff168161ffff166117706110f2565b61177a9190614e43565b11156117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b290614f0b565b60405180910390fd5b6101c261ffff1681600e60029054906101000a900461ffff166117de9190614f2b565b61ffff161115611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a90614fd5565b60405180910390fd5b600160ff1681601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166118819190614f2b565b61ffff1611156118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90615067565b60405180910390fd5b8061ffff1660006118d79190614c65565b341015611919576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611910906150f9565b60405180910390fd5b600060013360405160200161192f929190615190565b60405160208183030381529060405280519060200120905061195483600f5483613550565b611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a9061522b565b60405180910390fd5b81600e60028282829054906101000a900461ffff166119b29190614f2b565b92506101000a81548161ffff021916908361ffff16021790555081601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff16611a289190614f2b565b92506101000a81548161ffff021916908361ffff160217905550611a4d826000613567565b611a5b338361ffff166135cc565b611a748261ffff166000611a6f9190614c65565b6135ea565b505050565b6101c281565b601481565b6658d15e1762800081565b67016345785d8a000081565b6060600083839050905060008167ffffffffffffffff811115611ac157611ac0613fe8565b5b604051908082528060200260200182016040528015611afa57816020015b611ae7613db0565b815260200190600190039081611adf5790505b50905060005b828114611b5257611b29868683818110611b1d57611b1c61524b565b5b90506020020135612a7b565b828281518110611b3c57611b3b61524b565b5b6020026020010181905250806001019050611b00565b50809250505092915050565b6000611b69826133ae565b9050919050565b611b7861312e565b600e60059054906101000a900460ff1615600e60056101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c0c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611c6561312e565b611c6f600061368b565b565b603281565b600e60029054906101000a900461ffff1681565b611c9261312e565b80600f8190555050565b60606000806000611cac85611ba4565b905060008167ffffffffffffffff811115611cca57611cc9613fe8565b5b604051908082528060200260200182016040528015611cf85781602001602082028036833780820191505090505b509050611d03613db0565b6000611d0d6133a9565b90505b838614611dd857611d208161374f565b9150816040015115611d3157611dcd565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d7157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611dcc5780838780600101985081518110611dbf57611dbe61524b565b5b6020026020010181815250505b5b806001019050611d10565b508195505050505050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b90614d91565b60405180910390fd5b600e60059054906101000a900460ff16611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a90614e23565b60405180910390fd5b6101f461ffff168161ffff16611eb76110f2565b611ec19190614e43565b1115611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990614f0b565b60405180910390fd5b603261ffff1681600e60009054906101000a900461ffff16611f249190614f2b565b61ffff161115611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f60906152ec565b60405180910390fd5b600160ff1681601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff16611fc79190614f2b565b61ffff16111561200c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200390615067565b60405180910390fd5b8061ffff16600061201d9190614c65565b34101561205f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612056906150f9565b60405180910390fd5b60008033604051602001612074929190615190565b60405160208183030381529060405280519060200120905061209983600f5483613550565b6120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf9061522b565b60405180910390fd5b81600e60008282829054906101000a900461ffff166120f79190614f2b565b92506101000a81548161ffff021916908361ffff16021790555081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff1661216d9190614f2b565b92506101000a81548161ffff021916908361ffff160217905550612192826001613567565b6121a0338361ffff166135cc565b6121b98261ffff1660006121b49190614c65565b6135ea565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222390614d91565b60405180910390fd5b600e60049054906101000a900460ff1661227b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122729061537e565b60405180910390fd5b6101f461ffff168161ffff1661228f6110f2565b6122999190614e43565b11156122da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d190614f0b565b60405180910390fd5b6101c261ffff1681600e60029054906101000a900461ffff166122fd9190614f2b565b61ffff161115612342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233990614fd5565b60405180910390fd5b600260ff1681601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166123a09190614f2b565b61ffff1611156123e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dc90615410565b60405180910390fd5b8061ffff166658d15e176280006123fc9190614c65565b34101561243e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612435906150f9565b60405180910390fd5b80600e60028282829054906101000a900461ffff1661245d9190614f2b565b92506101000a81548161ffff021916908361ffff16021790555080601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166124d39190614f2b565b92506101000a81548161ffff021916908361ffff1602179055506124f8816000613567565b612506338261ffff166135cc565b6125258161ffff166658d15e176280006125209190614c65565b6135ea565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900461ffff1681565b600e60059054906101000a900460ff1681565b60606004805461258790614c04565b80601f01602080910402602001604051908101604052809291908181526020018280546125b390614c04565b80156126005780601f106125d557610100808354040283529160200191612600565b820191906000526020600020905b8154815290600101906020018083116125e357829003601f168201915b5050505050905090565b6060818310612645576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061265061377a565b905061265a6133a9565b85101561266c576126696133a9565b94505b80841115612678578093505b600061268387611ba4565b9050848610156126a65760008686039050818110156126a0578091505b506126ab565b600090505b60008167ffffffffffffffff8111156126c7576126c6613fe8565b5b6040519080825280602002602001820160405280156126f55781602001602082028036833780820191505090505b509050600082141561270d5780945050505050612817565b600061271888612a7b565b90506000816040015161272d57816000015190505b60008990505b8881141580156127435750848714155b15612809576127518161374f565b9250826040015115612762576127fe565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146127a257826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127fd57808488806001019950815181106127f0576127ef61524b565b5b6020026020010181815250505b5b806001019050612733565b508583528296505050505050505b9392505050565b6128266133a1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561288b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006128986133a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166129456133a1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161298a9190613ed0565b60405180910390a35050565b600e60049054906101000a900460ff1681565b603281565b6129b661312e565b600e60049054906101000a900460ff1615600e60046101000a81548160ff021916908315150217905550565b600081565b60136020528060005260406000206000915054906101000a900461ffff1681565b612a1384848461110e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a7557612a3e84848484613784565b612a74576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612a83613db0565b612a8b613db0565b612a936133a9565b831080612aa75750612aa361377a565b8310155b15612ab55780915050612ae0565b612abe8361374f565b9050806040015115612ad35780915050612ae0565b612adc836138d5565b9150505b919050565b6060612af082613342565b612b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b26906154a2565b60405180910390fd5b6014600083815260200190815260200160002060009054906101000a900460ff16612b725760405180606001604052806035815260200161591360359139612b8c565b6040518060600160405280603581526020016158de603591395b604051602001612b9c91906154fe565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1790614d91565b60405180910390fd5b600e60049054906101000a900460ff16612c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c669061537e565b60405180910390fd5b6101f461ffff168161ffff16612c836110f2565b612c8d9190614e43565b1115612cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc590614f0b565b60405180910390fd5b603261ffff1681600e60009054906101000a900461ffff16612cf09190614f2b565b61ffff161115612d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2c906152ec565b60405180910390fd5b600260ff1681601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff16612d939190614f2b565b61ffff161115612dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcf90615410565b60405180910390fd5b8061ffff1667016345785d8a0000612df09190614c65565b341015612e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e29906150f9565b60405180910390fd5b80600e60008282829054906101000a900461ffff16612e519190614f2b565b92506101000a81548161ffff021916908361ffff16021790555080601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff16612ec79190614f2b565b92506101000a81548161ffff021916908361ffff160217905550612eec816001613567565b612efa338261ffff166135cc565b612f1a8161ffff1667016345785d8a0000612f159190614c65565b6135ea565b50565b60106020528060005260406000206000915054906101000a900461ffff1681565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900461ffff1681565b612fee61312e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561305e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305590615587565b60405180910390fd5b6130678161368b565b50565b600181565b60116020528060005260406000206000915054906101000a900461ffff1681565b600081600001549050919050565b6001816000016000828254019250508190555050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806131275750613126826138f5565b5b9050919050565b61313661395f565b73ffffffffffffffffffffffffffffffffffffffff16613154612528565b73ffffffffffffffffffffffffffffffffffffffff16146131aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a1906155f3565b60405180910390fd5b565b6131b4613546565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115613212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320990615685565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613282576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613279906156f1565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008161334d6133a9565b1115801561335c575060015482105b801561339a575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806133bd6133a9565b11613445576001548110156134445760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415613442575b600081141561343857600560008360019003935083815260200190815260200160002054905061340d565b8092505050613477565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613504868684613967565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612710905090565b60008261355d8584613970565b1490509392505050565b60005b8261ffff168110156135c7578160146000613585600b613090565b815260200190815260200160002060006101000a81548160ff0219169083151502179055506135b4600b61309e565b80806135bf90615711565b91505061356a565b505050565b6135e68282604051806020016040528060008152506139c6565b5050565b8034101561362d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613624906157a6565b60405180910390fd5b80341115613688573373ffffffffffffffffffffffffffffffffffffffff166108fc823461365b91906157c6565b9081150290604051600060405180830381858888f19350505050158015613686573d6000803e3d6000fd5b505b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613757613db0565b6137736005600084815260200190815260200160002054613a64565b9050919050565b6000600154905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137aa6133a1565b8786866040518563ffffffff1660e01b81526004016137cc949392919061584f565b6020604051808303816000875af192505050801561380857506040513d601f19601f8201168201806040525081019061380591906158b0565b60015b613882573d8060008114613838576040519150601f19603f3d011682016040523d82523d6000602084013e61383d565b606091505b5060008151141561387a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6138dd613db0565b6138ee6138e9836133ae565b613a64565b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60009392505050565b60008082905060005b84518110156139bb576139a6828683815181106139995761399861524b565b5b6020026020010151613b1a565b915080806139b390615711565b915050613979565b508091505092915050565b6139d08383613b45565b60008373ffffffffffffffffffffffffffffffffffffffff163b14613a5f5760006001549050600083820390505b613a116000868380600101945086613784565b613a47576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106139fe578160015414613a5c57600080fd5b50505b505050565b613a6c613db0565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000818310613b3257613b2d8284613d03565b613b3d565b613b3c8383613d03565b5b905092915050565b600060015490506000821415613b87576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613b9460008483856134e7565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613c0b83613bfc60008660006134ed565b613c0585613d1a565b17613515565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613cac57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613c71565b506000821415613ce8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050613cfe6000848385613540565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b828054613d3690614c04565b90600052602060002090601f016020900481019282613d585760008555613d9f565b82601f10613d7157805160ff1916838001178555613d9f565b82800160010185558215613d9f579182015b82811115613d9e578251825591602001919060010190613d83565b5b509050613dac9190613dff565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115613e18576000816000905550600101613e00565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e6581613e30565b8114613e7057600080fd5b50565b600081359050613e8281613e5c565b92915050565b600060208284031215613e9e57613e9d613e26565b5b6000613eac84828501613e73565b91505092915050565b60008115159050919050565b613eca81613eb5565b82525050565b6000602082019050613ee56000830184613ec1565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613f1682613eeb565b9050919050565b613f2681613f0b565b8114613f3157600080fd5b50565b600081359050613f4381613f1d565b92915050565b60006bffffffffffffffffffffffff82169050919050565b613f6a81613f49565b8114613f7557600080fd5b50565b600081359050613f8781613f61565b92915050565b60008060408385031215613fa457613fa3613e26565b5b6000613fb285828601613f34565b9250506020613fc385828601613f78565b9150509250929050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61402082613fd7565b810181811067ffffffffffffffff8211171561403f5761403e613fe8565b5b80604052505050565b6000614052613e1c565b905061405e8282614017565b919050565b600067ffffffffffffffff82111561407e5761407d613fe8565b5b61408782613fd7565b9050602081019050919050565b82818337600083830152505050565b60006140b66140b184614063565b614048565b9050828152602081018484840111156140d2576140d1613fd2565b5b6140dd848285614094565b509392505050565b600082601f8301126140fa576140f9613fcd565b5b813561410a8482602086016140a3565b91505092915050565b60006020828403121561412957614128613e26565b5b600082013567ffffffffffffffff81111561414757614146613e2b565b5b614153848285016140e5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561419657808201518184015260208101905061417b565b838111156141a5576000848401525b50505050565b60006141b68261415c565b6141c08185614167565b93506141d0818560208601614178565b6141d981613fd7565b840191505092915050565b600060208201905081810360008301526141fe81846141ab565b905092915050565b6000819050919050565b61421981614206565b811461422457600080fd5b50565b60008135905061423681614210565b92915050565b60006020828403121561425257614251613e26565b5b600061426084828501614227565b91505092915050565b61427281613f0b565b82525050565b600060208201905061428d6000830184614269565b92915050565b600080604083850312156142aa576142a9613e26565b5b60006142b885828601613f34565b92505060206142c985828601614227565b9150509250929050565b600060ff82169050919050565b6142e9816142d3565b82525050565b600060208201905061430460008301846142e0565b92915050565b6000602082840312156143205761431f613e26565b5b600061432e84828501613f34565b91505092915050565b600061ffff82169050919050565b61434e81614337565b82525050565b60006020820190506143696000830184614345565b92915050565b61437881614206565b82525050565b6000602082019050614393600083018461436f565b92915050565b6000806000606084860312156143b2576143b1613e26565b5b60006143c086828701613f34565b93505060206143d186828701613f34565b92505060406143e286828701614227565b9150509250925092565b6000806040838503121561440357614402613e26565b5b600061441185828601614227565b925050602061442285828601614227565b9150509250929050565b60006040820190506144416000830185614269565b61444e602083018461436f565b9392505050565b600067ffffffffffffffff8211156144705761446f613fe8565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b61449981614486565b81146144a457600080fd5b50565b6000813590506144b681614490565b92915050565b60006144cf6144ca84614455565b614048565b905080838252602082019050602084028301858111156144f2576144f1614481565b5b835b8181101561451b578061450788826144a7565b8452602084019350506020810190506144f4565b5050509392505050565b600082601f83011261453a57614539613fcd565b5b813561454a8482602086016144bc565b91505092915050565b61455c81614337565b811461456757600080fd5b50565b60008135905061457981614553565b92915050565b6000806040838503121561459657614595613e26565b5b600083013567ffffffffffffffff8111156145b4576145b3613e2b565b5b6145c085828601614525565b92505060206145d18582860161456a565b9150509250929050565b600080fd5b60008083601f8401126145f6576145f5613fcd565b5b8235905067ffffffffffffffff811115614613576146126145db565b5b60208301915083602082028301111561462f5761462e614481565b5b9250929050565b6000806020838503121561464d5761464c613e26565b5b600083013567ffffffffffffffff81111561466b5761466a613e2b565b5b614677858286016145e0565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146b881613f0b565b82525050565b600067ffffffffffffffff82169050919050565b6146db816146be565b82525050565b6146ea81613eb5565b82525050565b600062ffffff82169050919050565b614708816146f0565b82525050565b60808201600082015161472460008501826146af565b50602082015161473760208501826146d2565b50604082015161474a60408501826146e1565b50606082015161475d60608501826146ff565b50505050565b600061476f838361470e565b60808301905092915050565b6000602082019050919050565b600061479382614683565b61479d818561468e565b93506147a88361469f565b8060005b838110156147d95781516147c08882614763565b97506147cb8361477b565b9250506001810190506147ac565b5085935050505092915050565b600060208201905081810360008301526148008184614788565b905092915050565b60006020828403121561481e5761481d613e26565b5b600061482c848285016144a7565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61486a81614206565b82525050565b600061487c8383614861565b60208301905092915050565b6000602082019050919050565b60006148a082614835565b6148aa8185614840565b93506148b583614851565b8060005b838110156148e65781516148cd8882614870565b97506148d883614888565b9250506001810190506148b9565b5085935050505092915050565b6000602082019050818103600083015261490d8184614895565b905092915050565b60006020828403121561492b5761492a613e26565b5b60006149398482850161456a565b91505092915050565b60008060006060848603121561495b5761495a613e26565b5b600061496986828701613f34565b935050602061497a86828701614227565b925050604061498b86828701614227565b9150509250925092565b61499e81613eb5565b81146149a957600080fd5b50565b6000813590506149bb81614995565b92915050565b600080604083850312156149d8576149d7613e26565b5b60006149e685828601613f34565b92505060206149f7858286016149ac565b9150509250929050565b600067ffffffffffffffff821115614a1c57614a1b613fe8565b5b614a2582613fd7565b9050602081019050919050565b6000614a45614a4084614a01565b614048565b905082815260208101848484011115614a6157614a60613fd2565b5b614a6c848285614094565b509392505050565b600082601f830112614a8957614a88613fcd565b5b8135614a99848260208601614a32565b91505092915050565b60008060008060808587031215614abc57614abb613e26565b5b6000614aca87828801613f34565b9450506020614adb87828801613f34565b9350506040614aec87828801614227565b925050606085013567ffffffffffffffff811115614b0d57614b0c613e2b565b5b614b1987828801614a74565b91505092959194509250565b608082016000820151614b3b60008501826146af565b506020820151614b4e60208501826146d2565b506040820151614b6160408501826146e1565b506060820151614b7460608501826146ff565b50505050565b6000608082019050614b8f6000830184614b25565b92915050565b60008060408385031215614bac57614bab613e26565b5b6000614bba85828601613f34565b9250506020614bcb85828601613f34565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614c1c57607f821691505b60208210811415614c3057614c2f614bd5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c7082614206565b9150614c7b83614206565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cb457614cb3614c36565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614cf982614206565b9150614d0483614206565b925082614d1457614d13614cbf565b5b828204905092915050565b7f42656920426569203a3a2043616e6e6f742062652063616c6c6564206279206160008201527f20636f6e74726163740000000000000000000000000000000000000000000000602082015250565b6000614d7b602983614167565b9150614d8682614d1f565b604082019050919050565b60006020820190508181036000830152614daa81614d6e565b9050919050565b7f42656920426569203a3a2050726573616c65204e6f742059657420416374697660008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e0d602183614167565b9150614e1882614db1565b604082019050919050565b60006020820190508181036000830152614e3c81614e00565b9050919050565b6000614e4e82614206565b9150614e5983614206565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e8e57614e8d614c36565b5b828201905092915050565b7f42656920426569203a3a2043616e6e6f74206d696e74206265796f6e64206d6160008201527f7820737570706c79000000000000000000000000000000000000000000000000602082015250565b6000614ef5602883614167565b9150614f0082614e99565b604082019050919050565b60006020820190508181036000830152614f2481614ee8565b9050919050565b6000614f3682614337565b9150614f4183614337565b92508261ffff03821115614f5857614f57614c36565b5b828201905092915050565b7f42656920426569203a3a204265796f6e64204d617820537570706c7920666f7260008201527f204d696e74696e6720416c706861000000000000000000000000000000000000602082015250565b6000614fbf602e83614167565b9150614fca82614f63565b604082019050919050565b60006020820190508181036000830152614fee81614fb2565b9050919050565b7f42656920426569203a3a2043616e6e6f74206d696e74206265796f6e6420707260008201527f6573616c65206d6178206d696e74210000000000000000000000000000000000602082015250565b6000615051602f83614167565b915061505c82614ff5565b604082019050919050565b6000602082019050818103600083015261508081615044565b9050919050565b7f42656920426569203a3a205061796d656e742069732062656c6f77207468652060008201527f7072696365000000000000000000000000000000000000000000000000000000602082015250565b60006150e3602583614167565b91506150ee82615087565b604082019050919050565b60006020820190508181036000830152615112816150d6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6002811061515957615158615119565b5b50565b600081905061516a82615148565b919050565b600061517a8261515c565b9050919050565b61518a8161516f565b82525050565b60006040820190506151a56000830185615181565b6151b26020830184614269565b9392505050565b7f42656920426569203a3a20596f7520617265206e6f7420696e2077686974656c60008201527f6973740000000000000000000000000000000000000000000000000000000000602082015250565b6000615215602383614167565b9150615220826151b9565b604082019050919050565b6000602082019050818103600083015261524481615208565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f42656920426569203a3a204265796f6e64204d617820537570706c7920666f7260008201527f204d696e74696e672047656e6573697300000000000000000000000000000000602082015250565b60006152d6603083614167565b91506152e18261527a565b604082019050919050565b60006020820190508181036000830152615305816152c9565b9050919050565b7f42656920426569203a3a205075626c69632053616c65204e6f7420596574204160008201527f63746976652e0000000000000000000000000000000000000000000000000000602082015250565b6000615368602683614167565b91506153738261530c565b604082019050919050565b600060208201905081810360008301526153978161535b565b9050919050565b7f42656920426569203a3a20416c7265616479206d696e746564206d617820616c60008201527f6c6f77656420616d6f756e742100000000000000000000000000000000000000602082015250565b60006153fa602d83614167565b91506154058261539e565b604082019050919050565b60006020820190508181036000830152615429816153ed565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061548c602f83614167565b915061549782615430565b604082019050919050565b600060208201905081810360008301526154bb8161547f565b9050919050565b600081905092915050565b60006154d88261415c565b6154e281856154c2565b93506154f2818560208601614178565b80840191505092915050565b600061550a82846154cd565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615571602683614167565b915061557c82615515565b604082019050919050565b600060208201905081810360008301526155a081615564565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006155dd602083614167565b91506155e8826155a7565b602082019050919050565b6000602082019050818103600083015261560c816155d0565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061566f602a83614167565b915061567a82615613565b604082019050919050565b6000602082019050818103600083015261569e81615662565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006156db601983614167565b91506156e6826156a5565b602082019050919050565b6000602082019050818103600083015261570a816156ce565b9050919050565b600061571c82614206565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561574f5761574e614c36565b5b600182019050919050565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b6000615790601683614167565b915061579b8261575a565b602082019050919050565b600060208201905081810360008301526157bf81615783565b9050919050565b60006157d182614206565b91506157dc83614206565b9250828210156157ef576157ee614c36565b5b828203905092915050565b600081519050919050565b600082825260208201905092915050565b6000615821826157fa565b61582b8185615805565b935061583b818560208601614178565b61584481613fd7565b840191505092915050565b60006080820190506158646000830187614269565b6158716020830186614269565b61587e604083018561436f565b81810360608301526158908184615816565b905095945050505050565b6000815190506158aa81613e5c565b92915050565b6000602082840312156158c6576158c5613e26565b5b60006158d48482850161589b565b9150509291505056fe697066733a2f2f516d633968634464424d52434e444a59454a62576b46574c6d77337072444d6a5033795a6e51436a55545164776d697066733a2f2f516d66566738437067595337614747624c515036794a58384552753867556e4d6e70594d69724e7554357636415aa26469706673582212201ae72a5ec5a511fb4dfa26c5b361196dc1887be8d4b5aa74c73b76935fdcd86a64736f6c634300080b0033

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

000000000000000000000000f313e6c1d64f8cc830137f48b6885d90fdeb3218

-----Decoded View---------------
Arg [0] : royaltyReceiver (address): 0xf313E6C1d64f8cc830137F48b6885d90fdEB3218

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f313e6c1d64f8cc830137f48b6885d90fdeb3218


Deployed Bytecode Sourcemap

462:9544:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9502:502;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8797:165;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8968:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9996:98:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1994:44:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16309:214:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15769:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;991:50:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1865:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5851:317:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;829:49:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19918:2756:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1227:55:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1671:432:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;680:39:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9389:107;;;;;;;;;;;;;:::i;:::-;;22765:179:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;884:47:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6140:1317;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;777:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1048:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1289:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1161;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1641:513:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11348:150:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9198:85:9;;;;;;;;;;;;;:::i;:::-;;7002:230:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;725:46:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1488:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9088:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5417:879:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4796:1338:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3761:1029;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;635:39:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1671:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10165:102:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2528:2454:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16850:303:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1641:24:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1105:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9289:94;;;;;;;;;;;;;:::i;:::-;;1355:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1928:60;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23525:388:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1070:418:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8224:567:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2707:1048;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1732:59;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17303:162:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1448:34:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;937:48:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1797:62;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9502:502;9629:4;9683:10;9668:25;;:11;:25;;;;:101;;;;9759:10;9744:25;;:11;:25;;;;9668:101;:177;;;;9835:10;9820:25;;:11;:25;;;;9668:177;:277;;;;9919:26;9904:41;;;:11;:41;;;;9668:277;:329;;;;9961:36;9985:11;9961:23;:36::i;:::-;9668:329;9649:348;;9502:502;;;:::o;8797:165::-;1094:13:0;:11;:13::i;:::-;8911:44:9::1;8930:8;8940:14;8911:18;:44::i;:::-;8797:165:::0;;:::o;8968:114::-;1094:13:0;:11;:13::i;:::-;9062::9::1;9047:12;:28;;;;;;;;;;;;:::i;:::-;;8968:114:::0;:::o;9996:98:10:-;10050:13;10082:5;10075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9996:98;:::o;1994:44:9:-;;;;;;;;;;;;;;;;;;;;;;:::o;16309:214:10:-;16385:7;16409:16;16417:7;16409;:16::i;:::-;16404:64;;16434:34;;;;;;;;;;;;;;16404:64;16486:15;:24;16502:7;16486:24;;;;;;;;;;;:30;;;;;;;;;;;;16479:37;;16309:214;;;:::o;15769:390::-;15849:13;15865:16;15873:7;15865;:16::i;:::-;15849:32;;15919:5;15896:28;;:19;:17;:19::i;:::-;:28;;;15892:172;;15943:44;15960:5;15967:19;:17;:19::i;:::-;15943:16;:44::i;:::-;15938:126;;16014:35;;;;;;;;;;;;;;15938:126;15892:172;16107:2;16074:15;:24;16090:7;16074:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16144:7;16140:2;16124:28;;16133:5;16124:28;;;;;;;;;;;;15839:320;15769:390;;:::o;991:50:9:-;1040:1;991:50;:::o;1865:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;5851:317:10:-;5912:7;6136:15;:13;:15::i;:::-;6121:12;;6105:13;;:28;:46;6098:53;;5851:317;:::o;829:49:9:-;877:1;829:49;:::o;19918:2756:10:-;20047:27;20077;20096:7;20077:18;:27::i;:::-;20047:57;;20160:4;20119:45;;20135:19;20119:45;;;20115:86;;20173:28;;;;;;;;;;;;;;20115:86;20213:27;20242:23;20269:35;20296:7;20269:26;:35::i;:::-;20212:92;;;;20401:68;20426:15;20443:4;20449:19;:17;:19::i;:::-;20401:24;:68::i;:::-;20396:179;;20488:43;20505:4;20511:19;:17;:19::i;:::-;20488:16;:43::i;:::-;20483:92;;20540:35;;;;;;;;;;;;;;20483:92;20396:179;20604:1;20590:16;;:2;:16;;;20586:52;;;20615:23;;;;;;;;;;;;;;20586:52;20649:43;20671:4;20677:2;20681:7;20690:1;20649:21;:43::i;:::-;20781:15;20778:157;;;20919:1;20898:19;20891:30;20778:157;21307:18;:24;21326:4;21307:24;;;;;;;;;;;;;;;;21305:26;;;;;;;;;;;;21375:18;:22;21394:2;21375:22;;;;;;;;;;;;;;;;21373:24;;;;;;;;;;;21690:143;21726:2;21774:45;21789:4;21795:2;21799:19;21774:14;:45::i;:::-;2349:8;21746:73;21690:18;:143::i;:::-;21661:17;:26;21679:7;21661:26;;;;;;;;;;;:172;;;;22001:1;2349:8;21950:19;:47;:52;21946:617;;;22022:19;22054:1;22044:7;:11;22022:33;;22209:1;22175:17;:30;22193:11;22175:30;;;;;;;;;;;;:35;22171:378;;;22311:13;;22296:11;:28;22292:239;;22489:19;22456:17;:30;22474:11;22456:30;;;;;;;;;;;:52;;;;22292:239;22171:378;22004:559;21946:617;22607:7;22603:2;22588:27;;22597:4;22588:27;;;;;;;;;;;;22625:42;22646:4;22652:2;22656:7;22665:1;22625:20;:42::i;:::-;20037:2637;;;19918:2756;;;:::o;1227:55:9:-;1275:7;1227:55;:::o;1671:432:2:-;1768:7;1777;1796:26;1825:17;:27;1843:8;1825:27;;;;;;;;;;;1796:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1895:1;1867:30;;:7;:16;;;:30;;;1863:90;;;1923:19;1913:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1863:90;1963:21;2028:17;:15;:17::i;:::-;1987:58;;2001:7;:23;;;1988:36;;:10;:36;;;;:::i;:::-;1987:58;;;;:::i;:::-;1963:82;;2064:7;:16;;;2082:13;2056:40;;;;;;1671:432;;;;;:::o;680:39:9:-;716:3;680:39;:::o;9389:107::-;1094:13:0;:11;:13::i;:::-;9446:10:9::1;9438:28;;:51;9467:21;9438:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;9389:107::o:0;22765:179:10:-;22898:39;22915:4;22921:2;22925:7;22898:39;;;;;;;;;;;;:16;:39::i;:::-;22765:179;;;:::o;884:47:9:-;930:1;884:47;:::o;6140:1317::-;2374:10;2361:23;;:9;:23;;;2340:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6291:9:::1;;;;;;;;;;;6283:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;716:3;6369:41;;6386:9;6370:25;;:13;:11;:13::i;:::-;:25;;;;:::i;:::-;6369:41;;6348:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;819:3;6507:52;;6529:9;6508:18;;;;;;;;;;;:30;;;;:::i;:::-;6507:52;;;;6486:145;;;;;;;;;;;;:::i;:::-;;;;;;;;;984:1;6662:91;;6701:9;6663:23;:35;6687:10;6663:35;;;;;;;;;;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;6662:91;;;;6641:185;;;;;;;;;;;;:::i;:::-;;;;;;;;;6893:9;6871:31;;1401:7;6871:31;;;;:::i;:::-;6857:9;:46;;6836:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;7003:14;7041;7057:10;7030:38;;;;;;;;;:::i;:::-;;;;;;;;;;;;;7020:49;;;;;;7003:66;;7100:52;7119:12;7133:10;;7145:6;7100:18;:52::i;:::-;7079:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;7246:9;7224:18;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;7304:9;7265:23;:35;7289:10;7265:35;;;;;;;;;;;;;;;;:48;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;7323:30;7336:9;7347:5;7323:12;:30::i;:::-;7363:32;7373:10;7385:9;7363:32;;:9;:32::i;:::-;7405:45;7440:9;7418:31;;1401:7;7418:31;;;;:::i;:::-;7405:12;:45::i;:::-;6273:1184;6140:1317:::0;;:::o;777:45::-;819:3;777:45;:::o;1048:51::-;1097:2;1048:51;:::o;1289:60::-;1339:10;1289:60;:::o;1161:::-;1213:8;1161:60;:::o;1641:513:12:-;1780:23;1843:22;1868:8;;:15;;1843:40;;1897:34;1955:14;1934:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1897:73;;1989:9;1984:123;2005:14;2000:1;:19;1984:123;;2060:32;2080:8;;2089:1;2080:11;;;;;;;:::i;:::-;;;;;;;;2060:19;:32::i;:::-;2044:10;2055:1;2044:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;2021:3;;;;;1984:123;;;;2127:10;2120:17;;;;1641:513;;;;:::o;11348:150:10:-;11420:7;11462:27;11481:7;11462:18;:27::i;:::-;11439:52;;11348:150;;;:::o;9198:85:9:-;1094:13:0;:11;:13::i;:::-;9267:9:9::1;;;;;;;;;;;9266:10;9254:9;;:22;;;;;;;;;;;;;;;;;;9198:85::o:0;7002:230:10:-;7074:7;7114:1;7097:19;;:5;:19;;;7093:60;;;7125:28;;;;;;;;;;;;;;7093:60;1317:13;7170:18;:25;7189:5;7170:25;;;;;;;;;;;;;;;;:55;7163:62;;7002:230;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;725:46:9:-;769:2;725:46;:::o;1488:32::-;;;;;;;;;;;;;:::o;9088:104::-;1094:13:0;:11;:13::i;:::-;9174:11:9::1;9161:10;:24;;;;9088:104:::0;:::o;5417:879:12:-;5495:16;5547:19;5580:25;5619:22;5644:16;5654:5;5644:9;:16::i;:::-;5619:41;;5674:25;5716:14;5702:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5674:57;;5745:31;;:::i;:::-;5795:9;5807:15;:13;:15::i;:::-;5795:27;;5790:461;5839:14;5824:11;:29;5790:461;;5890:15;5903:1;5890:12;:15::i;:::-;5878:27;;5927:9;:16;;;5923:71;;;5967:8;;5923:71;6041:1;6015:28;;:9;:14;;;:28;;;6011:109;;6087:9;:14;;;6067:34;;6011:109;6162:5;6141:26;;:17;:26;;;6137:100;;;6217:1;6191:8;6200:13;;;;;;6191:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;6137:100;5790:461;5855:3;;;;;5790:461;;;;6271:8;6264:15;;;;;;;5417:879;;;:::o;4796:1338:9:-;2374:10;2361:23;;:9;:23;;;2340:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;4949:9:::1;;;;;;;;;;;4941:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;716:3;5027:41;;5044:9;5028:25;;:13;:11;:13::i;:::-;:25;;;;:::i;:::-;5027:41;;5006:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;769:2;5165:56;;5189:9;5166:20;;;;;;;;;;;:32;;;;:::i;:::-;5165:56;;;;5144:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;1040:1;5326:95;;5367:9;5327:25;:37;5353:10;5327:37;;;;;;;;;;;;;;;;;;;;;;;;;:49;;;;:::i;:::-;5326:95;;;;5305:189;;;;;;;;;;;;:::i;:::-;;;;;;;;;5563:9;5539:33;;1275:7;5539:33;;;;:::i;:::-;5525:9;:48;;5504:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;5673:14;5711:16:::0;5729:10:::1;5700:40;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5690:51;;;;;;5673:68;;5772:52;5791:12;5805:10;;5817:6;5772:18;:52::i;:::-;5751:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;5920:9;5896:20;;:33;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;5980:9;5939:25;:37;5965:10;5939:37;;;;;;;;;;;;;;;;:50;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;5999:29;6012:9;6023:4;5999:12;:29::i;:::-;6038:32;6048:10;6060:9;6038:32;;:9;:32::i;:::-;6080:47;6117:9;6093:33;;1275:7;6093:33;;;;:::i;:::-;6080:12;:47::i;:::-;4931:1203;4796:1338:::0;;:::o;3761:1029::-;2374:10;2361:23;;:9;:23;;;2340:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;3852:12:::1;;;;;;;;;;;3844:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;716:3;3938:41;;3955:9;3939:25;;:13;:11;:13::i;:::-;:25;;;;:::i;:::-;3938:41;;3917:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;819:3;4076:52;;4098:9;4077:18;;;;;;;;;;;:30;;;;:::i;:::-;4076:52;;;;4055:145;;;;;;;;;;;;:::i;:::-;;;;;;;;;930:1;4231:93;;4273:9;4232:26;:38;4259:10;4232:38;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;:::i;:::-;4231:93;;;;4210:185;;;;;;;;;;;;:::i;:::-;;;;;;;;;4466:9;4440:35;;1339:10;4440:35;;;;:::i;:::-;4426:9;:50;;4405:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;4572:9;4550:18;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;4633:9;4591:26;:38;4618:10;4591:38;;;;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;4652:30;4665:9;4676:5;4652:12;:30::i;:::-;4692:32;4702:10;4714:9;4692:32;;:9;:32::i;:::-;4734:49;4773:9;4747:35;;1339:10;4747:35;;;;:::i;:::-;4734:12;:49::i;:::-;3761:1029:::0;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;635:39:9:-;;;;;;;;;;;;;:::o;1671:21::-;;;;;;;;;;;;;:::o;10165:102:10:-;10221:13;10253:7;10246:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10165:102;:::o;2528:2454:12:-;2667:16;2732:4;2723:5;:13;2719:45;;2745:19;;;;;;;;;;;;;;2719:45;2778:19;2811:17;2831:14;:12;:14::i;:::-;2811:34;;2929:15;:13;:15::i;:::-;2921:5;:23;2917:85;;;2972:15;:13;:15::i;:::-;2964:23;;2917:85;3076:9;3069:4;:16;3065:71;;;3112:9;3105:16;;3065:71;3149:25;3177:16;3187:5;3177:9;:16::i;:::-;3149:44;;3368:4;3360:5;:12;3356:271;;;3392:19;3421:5;3414:4;:12;3392:34;;3462:17;3448:11;:31;3444:109;;;3523:11;3503:31;;3444:109;3374:193;3356:271;;;3611:1;3591:21;;3356:271;3640:25;3682:17;3668:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3640:60;;3739:1;3718:17;:22;3714:76;;;3767:8;3760:15;;;;;;;;3714:76;3931:31;3965:26;3985:5;3965:19;:26::i;:::-;3931:60;;4005:25;4247:9;:16;;;4242:90;;4303:9;:14;;;4283:34;;4242:90;4350:9;4362:5;4350:17;;4345:467;4374:4;4369:1;:9;;:45;;;;;4397:17;4382:11;:32;;4369:45;4345:467;;;4451:15;4464:1;4451:12;:15::i;:::-;4439:27;;4488:9;:16;;;4484:71;;;4528:8;;4484:71;4602:1;4576:28;;:9;:14;;;:28;;;4572:109;;4648:9;:14;;;4628:34;;4572:109;4723:5;4702:26;;:17;:26;;;4698:100;;;4778:1;4752:8;4761:13;;;;;;4752:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;4698:100;4345:467;4416:3;;;;;4345:467;;;;4911:11;4901:8;4894:29;4957:8;4950:15;;;;;;;;2528:2454;;;;;;:::o;16850:303:10:-;16960:19;:17;:19::i;:::-;16948:31;;:8;:31;;;16944:61;;;16988:17;;;;;;;;;;;;;;16944:61;17068:8;17016:18;:39;17035:19;:17;:19::i;:::-;17016:39;;;;;;;;;;;;;;;:49;17056:8;17016:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17127:8;17091:55;;17106:19;:17;:19::i;:::-;17091:55;;;17137:8;17091:55;;;;;;:::i;:::-;;;;;;;;16850:303;;:::o;1641:24:9:-;;;;;;;;;;;;;:::o;1105:49::-;1152:2;1105:49;:::o;9289:94::-;1094:13:0;:11;:13::i;:::-;9364:12:9::1;;;;;;;;;;;9363:13;9348:12;;:28;;;;;;;;;;;;;;;;;;9289:94::o:0;1355:53::-;1401:7;1355:53;:::o;1928:60::-;;;;;;;;;;;;;;;;;;;;;;:::o;23525:388:10:-;23686:31;23699:4;23705:2;23709:7;23686:12;:31::i;:::-;23749:1;23731:2;:14;;;:19;23727:180;;23769:56;23800:4;23806:2;23810:7;23819:5;23769:30;:56::i;:::-;23764:143;;23852:40;;;;;;;;;;;;;;23764:143;23727:180;23525:388;;;;:::o;1070:418:12:-;1154:21;;:::i;:::-;1187:31;;:::i;:::-;1242:15;:13;:15::i;:::-;1232:7;:25;:54;;;;1272:14;:12;:14::i;:::-;1261:7;:25;;1232:54;1228:101;;;1309:9;1302:16;;;;;1228:101;1350:21;1363:7;1350:12;:21::i;:::-;1338:33;;1385:9;:16;;;1381:63;;;1424:9;1417:16;;;;;1381:63;1460:21;1473:7;1460:12;:21::i;:::-;1453:28;;;1070:418;;;;:::o;8224:567:9:-;8337:13;8387:16;8395:7;8387;:16::i;:::-;8366:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;8567:12;:21;8580:7;8567:21;;;;;;;;;;;;;;;;;;;;;:185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8529:241;;;;;;;;:::i;:::-;;;;;;;;;;;;;8486:298;;8224:567;;;:::o;2707:1048::-;2374:10;2361:23;;:9;:23;;;2340:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;2800:12:::1;;;;;;;;;;;2792:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;716:3;2886:41;;2903:9;2887:25;;:13;:11;:13::i;:::-;:25;;;;:::i;:::-;2886:41;;2865:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;769:2;3024:56;;3048:9;3025:20;;;;;;;;;;;:32;;;;:::i;:::-;3024:56;;;;3003:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;877:1;3185:97;;3229:9;3186:28;:40;3215:10;3186:40;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;:::i;:::-;3185:97;;;;3164:189;;;;;;;;;;;;:::i;:::-;;;;;;;;;3426:9;3398:37;;1213:8;3398:37;;;;:::i;:::-;3384:9;:52;;3363:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;3534:9;3510:20;;:33;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;3597:9;3553:28;:40;3582:10;3553:40;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;3616:29;3629:9;3640:4;3616:12;:29::i;:::-;3655:32;3665:10;3677:9;3655:32;;:9;:32::i;:::-;3697:51;3738:9;3710:37;;1213:8;3710:37;;;;:::i;:::-;3697:12;:51::i;:::-;2707:1048:::0;:::o;1732:59::-;;;;;;;;;;;;;;;;;;;;;;:::o;17303:162:10:-;17400:4;17423:18;:25;17442:5;17423:25;;;;;;;;;;;;;;;:35;17449:8;17423:35;;;;;;;;;;;;;;;;;;;;;;;;;17416:42;;17303:162;;;;:::o;1448:34:9:-;;;;;;;;;;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;;;2161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;937:48:9:-;984:1;937:48;:::o;1797:62::-;;;;;;;;;;;;;;;;;;;;;;:::o;827:112:4:-;892:7;918;:14;;;911:21;;827:112;;;:::o;945:123::-;1050:1;1032:7;:14;;;:19;;;;;;;;;;;945:123;:::o;1408:213:2:-;1510:4;1548:26;1533:41;;;:11;:41;;;;:81;;;;1578:36;1602:11;1578:23;:36::i;:::-;1533:81;1526:88;;1408:213;;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;2734:327:2:-;2852:17;:15;:17::i;:::-;2836:33;;:12;:33;;;;2828:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;2954:1;2934:22;;:8;:22;;;;2926:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;3019:35;;;;;;;;3031:8;3019:35;;;;;;3041:12;3019:35;;;;;2997:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2734:327;;:::o;17714:277:10:-;17779:4;17833:7;17814:15;:13;:15::i;:::-;:26;;:65;;;;;17866:13;;17856:7;:23;17814:65;:151;;;;;17964:1;2075:8;17916:17;:26;17934:7;17916:26;;;;;;;;;;;;:44;:49;17814:151;17795:170;;17714:277;;;:::o;38922:103::-;38982:7;39008:10;39001:17;;38922:103;:::o;5383:90::-;5439:7;5383:90;:::o;12472:1249::-;12539:7;12558:12;12573:7;12558:22;;12638:4;12619:15;:13;:15::i;:::-;:23;12615:1042;;12671:13;;12664:4;:20;12660:997;;;12708:14;12725:17;:23;12743:4;12725:23;;;;;;;;;;;;12708:40;;12840:1;2075:8;12812:6;:24;:29;12808:831;;;13467:111;13484:1;13474:6;:11;13467:111;;;13526:17;:25;13544:6;;;;;;;13526:25;;;;;;;;;;;;13517:34;;13467:111;;;13610:6;13603:13;;;;;;12808:831;12686:971;12660:997;12615:1042;13683:31;;;;;;;;;;;;;;12472:1249;;;;:::o;18849:468::-;18948:27;18977:23;19016:38;19057:15;:24;19073:7;19057:24;;;;;;;;;;;19016:65;;19225:18;19202:41;;19281:19;19275:26;19256:45;;19188:123;18849:468;;;:::o;18095:646::-;18240:11;18402:16;18395:5;18391:28;18382:37;;18560:16;18549:9;18545:32;18532:45;;18708:15;18697:9;18694:30;18686:5;18675:9;18672:20;18669:56;18659:66;;18095:646;;;;;:::o;24557:154::-;;;;;:::o;38249:304::-;38380:7;38399:16;2470:3;38425:19;:41;;38399:68;;2470:3;38492:31;38503:4;38509:2;38513:9;38492:10;:31::i;:::-;38484:40;;:62;;38477:69;;;38249:304;;;;;:::o;14254:443::-;14334:14;14499:16;14492:5;14488:28;14479:37;;14674:5;14660:11;14635:23;14631:41;14628:52;14621:5;14618:63;14608:73;;14254:443;;;;:::o;25358:153::-;;;;;:::o;2378:95:2:-;2436:6;2461:5;2454:12;;2378:95;:::o;1153:184:6:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;1290:40;;1153:184;;;;;:::o;2475:226:9:-;2555:9;2550:145;2574:9;2570:13;;:1;:13;2550:145;;;2640:9;2604:12;:33;2617:19;:9;:17;:19::i;:::-;2604:33;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;2663:21;:9;:19;:21::i;:::-;2585:3;;;;;:::i;:::-;;;;2550:145;;;;2475:226;;:::o;32908:110:10:-;32984:27;32994:2;32998:8;32984:27;;;;;;;;;;;;:9;:27::i;:::-;32908:110;;:::o;7463:219:9:-;7539:5;7526:9;:18;;7518:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;7597:5;7585:9;:17;7581:95;;;7626:10;7618:28;;:47;7659:5;7647:9;:17;;;;:::i;:::-;7618:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7581:95;7463:219;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;11936:159:10:-;12004:21;;:::i;:::-;12044:44;12063:17;:24;12081:5;12063:24;;;;;;;;;;;;12044:18;:44::i;:::-;12037:51;;11936:159;;;:::o;5547:101::-;5602:7;5628:13;;5621:20;;5547:101;:::o;25939:697::-;26097:4;26142:2;26117:45;;;26163:19;:17;:19::i;:::-;26184:4;26190:7;26199:5;26117:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26113:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26412:1;26395:6;:13;:18;26391:229;;;26440:40;;;;;;;;;;;;;;26391:229;26580:6;26574:13;26565:6;26561:2;26557:15;26550:38;26113:517;26283:54;;;26273:64;;;:6;:64;;;;26266:71;;;25939:697;;;;;;:::o;11681:164::-;11751:21;;:::i;:::-;11791:47;11810:27;11829:7;11810:18;:27::i;:::-;11791:18;:47::i;:::-;11784:54;;11681:164;;;:::o;829:155:7:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;640:96:3:-;693:7;719:10;712:17;;640:96;:::o;37960:143:10:-;38093:6;37960:143;;;;;:::o;1991:290:6:-;2074:7;2093:20;2116:4;2093:27;;2135:9;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;;;:::i;:::-;;;;;;;;2202:9;:33::i;:::-;2187:48;;2168:3;;;;;:::i;:::-;;;;2130:116;;;;2262:12;2255:19;;;1991:290;;;;:::o;32160:669:10:-;32286:19;32292:2;32296:8;32286:5;:19::i;:::-;32362:1;32344:2;:14;;;:19;32340:473;;32383:11;32397:13;;32383:27;;32428:13;32450:8;32444:3;:14;32428:30;;32476:229;32506:62;32545:1;32549:2;32553:7;;;;;;32562:5;32506:30;:62::i;:::-;32501:165;;32603:40;;;;;;;;;;;;;;32501:165;32700:3;32692:5;:11;32476:229;;32785:3;32768:13;;:20;32764:34;;32790:8;;;32764:34;32365:448;;32340:473;32160:669;;;:::o;13815:361::-;13881:31;;:::i;:::-;13957:6;13924:9;:14;;:41;;;;;;;;;;;1961:3;14009:6;:33;;13975:9;:24;;:68;;;;;;;;;;;14100:1;2075:8;14072:6;:24;:29;;14053:9;:16;;:48;;;;;;;;;;;2470:3;14140:6;:28;;14111:9;:19;;:58;;;;;;;;;;;13815:361;;;:::o;8054:147:6:-;8117:7;8147:1;8143;:5;:51;;8174:20;8189:1;8192;8174:14;:20::i;:::-;8143:51;;;8151:20;8166:1;8169;8151:14;:20::i;:::-;8143:51;8136:58;;8054:147;;;;:::o;27082:2396:10:-;27154:20;27177:13;;27154:36;;27216:1;27204:8;:13;27200:44;;;27226:18;;;;;;;;;;;;;;27200:44;27255:61;27285:1;27289:2;27293:12;27307:8;27255:21;:61::i;:::-;27788:1;1452:2;27758:1;:26;;27757:32;27745:8;:45;27719:18;:22;27738:2;27719:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28060:136;28096:2;28149:33;28172:1;28176:2;28180:1;28149:14;:33::i;:::-;28116:30;28137:8;28116:20;:30::i;:::-;:66;28060:18;:136::i;:::-;28026:17;:31;28044:12;28026:31;;;;;;;;;;;:170;;;;28211:16;28241:11;28270:8;28255:12;:23;28241:37;;28520:16;28516:2;28512:25;28500:37;;28884:12;28845:8;28805:1;28744:25;28686:1;28626;28600:328;29005:1;28991:12;28987:20;28946:339;29045:3;29036:7;29033:16;28946:339;;29259:7;29249:8;29246:1;29219:25;29216:1;29213;29208:59;29097:1;29088:7;29084:15;29073:26;;28946:339;;;28950:75;29328:1;29316:8;:13;29312:45;;;29338:19;;;;;;;;;;;;;;29312:45;29388:3;29372:13;:19;;;;27499:1903;;29411:60;29440:1;29444:2;29448:12;29462:8;29411:20;:60::i;:::-;27144:2334;27082:2396;;:::o;8207:261:6:-;8275:13;8379:1;8373:4;8366:15;8407:1;8401:4;8394:15;8447:4;8441;8431:21;8422:30;;8207:261;;;;:::o;14794:318:10:-;14864:14;15093:1;15083:8;15080:15;15054:24;15050:46;15040:56;;14794:318;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:14:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:117::-;2996:1;2993;2986:12;3010:117;3119:1;3116;3109:12;3133:102;3174:6;3225:2;3221:7;3216:2;3209:5;3205:14;3201:28;3191:38;;3133:102;;;:::o;3241:180::-;3289:77;3286:1;3279:88;3386:4;3383:1;3376:15;3410:4;3407:1;3400:15;3427:281;3510:27;3532:4;3510:27;:::i;:::-;3502:6;3498:40;3640:6;3628:10;3625:22;3604:18;3592:10;3589:34;3586:62;3583:88;;;3651:18;;:::i;:::-;3583:88;3691:10;3687:2;3680:22;3470:238;3427:281;;:::o;3714:129::-;3748:6;3775:20;;:::i;:::-;3765:30;;3804:33;3832:4;3824:6;3804:33;:::i;:::-;3714:129;;;:::o;3849:308::-;3911:4;4001:18;3993:6;3990:30;3987:56;;;4023:18;;:::i;:::-;3987:56;4061:29;4083:6;4061:29;:::i;:::-;4053:37;;4145:4;4139;4135:15;4127:23;;3849:308;;;:::o;4163:154::-;4247:6;4242:3;4237;4224:30;4309:1;4300:6;4295:3;4291:16;4284:27;4163:154;;;:::o;4323:412::-;4401:5;4426:66;4442:49;4484:6;4442:49;:::i;:::-;4426:66;:::i;:::-;4417:75;;4515:6;4508:5;4501:21;4553:4;4546:5;4542:16;4591:3;4582:6;4577:3;4573:16;4570:25;4567:112;;;4598:79;;:::i;:::-;4567:112;4688:41;4722:6;4717:3;4712;4688:41;:::i;:::-;4407:328;4323:412;;;;;:::o;4755:340::-;4811:5;4860:3;4853:4;4845:6;4841:17;4837:27;4827:122;;4868:79;;:::i;:::-;4827:122;4985:6;4972:20;5010:79;5085:3;5077:6;5070:4;5062:6;5058:17;5010:79;:::i;:::-;5001:88;;4817:278;4755:340;;;;:::o;5101:509::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5373:1;5362:9;5358:17;5345:31;5403:18;5395:6;5392:30;5389:117;;;5425:79;;:::i;:::-;5389:117;5530:63;5585:7;5576:6;5565:9;5561:22;5530:63;:::i;:::-;5520:73;;5316:287;5101:509;;;;:::o;5616:99::-;5668:6;5702:5;5696:12;5686:22;;5616:99;;;:::o;5721:169::-;5805:11;5839:6;5834:3;5827:19;5879:4;5874:3;5870:14;5855:29;;5721:169;;;;:::o;5896:307::-;5964:1;5974:113;5988:6;5985:1;5982:13;5974:113;;;6073:1;6068:3;6064:11;6058:18;6054:1;6049:3;6045:11;6038:39;6010:2;6007:1;6003:10;5998:15;;5974:113;;;6105:6;6102:1;6099:13;6096:101;;;6185:1;6176:6;6171:3;6167:16;6160:27;6096:101;5945:258;5896:307;;;:::o;6209:364::-;6297:3;6325:39;6358:5;6325:39;:::i;:::-;6380:71;6444:6;6439:3;6380:71;:::i;:::-;6373:78;;6460:52;6505:6;6500:3;6493:4;6486:5;6482:16;6460:52;:::i;:::-;6537:29;6559:6;6537:29;:::i;:::-;6532:3;6528:39;6521:46;;6301:272;6209:364;;;;:::o;6579:313::-;6692:4;6730:2;6719:9;6715:18;6707:26;;6779:9;6773:4;6769:20;6765:1;6754:9;6750:17;6743:47;6807:78;6880:4;6871:6;6807:78;:::i;:::-;6799:86;;6579:313;;;;:::o;6898:77::-;6935:7;6964:5;6953:16;;6898:77;;;:::o;6981:122::-;7054:24;7072:5;7054:24;:::i;:::-;7047:5;7044:35;7034:63;;7093:1;7090;7083:12;7034:63;6981:122;:::o;7109:139::-;7155:5;7193:6;7180:20;7171:29;;7209:33;7236:5;7209:33;:::i;:::-;7109:139;;;;:::o;7254:329::-;7313:6;7362:2;7350:9;7341:7;7337:23;7333:32;7330:119;;;7368:79;;:::i;:::-;7330:119;7488:1;7513:53;7558:7;7549:6;7538:9;7534:22;7513:53;:::i;:::-;7503:63;;7459:117;7254:329;;;;:::o;7589:118::-;7676:24;7694:5;7676:24;:::i;:::-;7671:3;7664:37;7589:118;;:::o;7713:222::-;7806:4;7844:2;7833:9;7829:18;7821:26;;7857:71;7925:1;7914:9;7910:17;7901:6;7857:71;:::i;:::-;7713:222;;;;:::o;7941:474::-;8009:6;8017;8066:2;8054:9;8045:7;8041:23;8037:32;8034:119;;;8072:79;;:::i;:::-;8034:119;8192:1;8217:53;8262:7;8253:6;8242:9;8238:22;8217:53;:::i;:::-;8207:63;;8163:117;8319:2;8345:53;8390:7;8381:6;8370:9;8366:22;8345:53;:::i;:::-;8335:63;;8290:118;7941:474;;;;;:::o;8421:86::-;8456:7;8496:4;8489:5;8485:16;8474:27;;8421:86;;;:::o;8513:112::-;8596:22;8612:5;8596:22;:::i;:::-;8591:3;8584:35;8513:112;;:::o;8631:214::-;8720:4;8758:2;8747:9;8743:18;8735:26;;8771:67;8835:1;8824:9;8820:17;8811:6;8771:67;:::i;:::-;8631:214;;;;:::o;8851:329::-;8910:6;8959:2;8947:9;8938:7;8934:23;8930:32;8927:119;;;8965:79;;:::i;:::-;8927:119;9085:1;9110:53;9155:7;9146:6;9135:9;9131:22;9110:53;:::i;:::-;9100:63;;9056:117;8851:329;;;;:::o;9186:89::-;9222:7;9262:6;9255:5;9251:18;9240:29;;9186:89;;;:::o;9281:115::-;9366:23;9383:5;9366:23;:::i;:::-;9361:3;9354:36;9281:115;;:::o;9402:218::-;9493:4;9531:2;9520:9;9516:18;9508:26;;9544:69;9610:1;9599:9;9595:17;9586:6;9544:69;:::i;:::-;9402:218;;;;:::o;9626:118::-;9713:24;9731:5;9713:24;:::i;:::-;9708:3;9701:37;9626:118;;:::o;9750:222::-;9843:4;9881:2;9870:9;9866:18;9858:26;;9894:71;9962:1;9951:9;9947:17;9938:6;9894:71;:::i;:::-;9750:222;;;;:::o;9978:619::-;10055:6;10063;10071;10120:2;10108:9;10099:7;10095:23;10091:32;10088:119;;;10126:79;;:::i;:::-;10088:119;10246:1;10271:53;10316:7;10307:6;10296:9;10292:22;10271:53;:::i;:::-;10261:63;;10217:117;10373:2;10399:53;10444:7;10435:6;10424:9;10420:22;10399:53;:::i;:::-;10389:63;;10344:118;10501:2;10527:53;10572:7;10563:6;10552:9;10548:22;10527:53;:::i;:::-;10517:63;;10472:118;9978:619;;;;;:::o;10603:474::-;10671:6;10679;10728:2;10716:9;10707:7;10703:23;10699:32;10696:119;;;10734:79;;:::i;:::-;10696:119;10854:1;10879:53;10924:7;10915:6;10904:9;10900:22;10879:53;:::i;:::-;10869:63;;10825:117;10981:2;11007:53;11052:7;11043:6;11032:9;11028:22;11007:53;:::i;:::-;10997:63;;10952:118;10603:474;;;;;:::o;11083:332::-;11204:4;11242:2;11231:9;11227:18;11219:26;;11255:71;11323:1;11312:9;11308:17;11299:6;11255:71;:::i;:::-;11336:72;11404:2;11393:9;11389:18;11380:6;11336:72;:::i;:::-;11083:332;;;;;:::o;11421:311::-;11498:4;11588:18;11580:6;11577:30;11574:56;;;11610:18;;:::i;:::-;11574:56;11660:4;11652:6;11648:17;11640:25;;11720:4;11714;11710:15;11702:23;;11421:311;;;:::o;11738:117::-;11847:1;11844;11837:12;11861:77;11898:7;11927:5;11916:16;;11861:77;;;:::o;11944:122::-;12017:24;12035:5;12017:24;:::i;:::-;12010:5;12007:35;11997:63;;12056:1;12053;12046:12;11997:63;11944:122;:::o;12072:139::-;12118:5;12156:6;12143:20;12134:29;;12172:33;12199:5;12172:33;:::i;:::-;12072:139;;;;:::o;12234:710::-;12330:5;12355:81;12371:64;12428:6;12371:64;:::i;:::-;12355:81;:::i;:::-;12346:90;;12456:5;12485:6;12478:5;12471:21;12519:4;12512:5;12508:16;12501:23;;12572:4;12564:6;12560:17;12552:6;12548:30;12601:3;12593:6;12590:15;12587:122;;;12620:79;;:::i;:::-;12587:122;12735:6;12718:220;12752:6;12747:3;12744:15;12718:220;;;12827:3;12856:37;12889:3;12877:10;12856:37;:::i;:::-;12851:3;12844:50;12923:4;12918:3;12914:14;12907:21;;12794:144;12778:4;12773:3;12769:14;12762:21;;12718:220;;;12722:21;12336:608;;12234:710;;;;;:::o;12967:370::-;13038:5;13087:3;13080:4;13072:6;13068:17;13064:27;13054:122;;13095:79;;:::i;:::-;13054:122;13212:6;13199:20;13237:94;13327:3;13319:6;13312:4;13304:6;13300:17;13237:94;:::i;:::-;13228:103;;13044:293;12967:370;;;;:::o;13343:120::-;13415:23;13432:5;13415:23;:::i;:::-;13408:5;13405:34;13395:62;;13453:1;13450;13443:12;13395:62;13343:120;:::o;13469:137::-;13514:5;13552:6;13539:20;13530:29;;13568:32;13594:5;13568:32;:::i;:::-;13469:137;;;;:::o;13612:682::-;13704:6;13712;13761:2;13749:9;13740:7;13736:23;13732:32;13729:119;;;13767:79;;:::i;:::-;13729:119;13915:1;13904:9;13900:17;13887:31;13945:18;13937:6;13934:30;13931:117;;;13967:79;;:::i;:::-;13931:117;14072:78;14142:7;14133:6;14122:9;14118:22;14072:78;:::i;:::-;14062:88;;13858:302;14199:2;14225:52;14269:7;14260:6;14249:9;14245:22;14225:52;:::i;:::-;14215:62;;14170:117;13612:682;;;;;:::o;14300:117::-;14409:1;14406;14399:12;14440:568;14513:8;14523:6;14573:3;14566:4;14558:6;14554:17;14550:27;14540:122;;14581:79;;:::i;:::-;14540:122;14694:6;14681:20;14671:30;;14724:18;14716:6;14713:30;14710:117;;;14746:79;;:::i;:::-;14710:117;14860:4;14852:6;14848:17;14836:29;;14914:3;14906:4;14898:6;14894:17;14884:8;14880:32;14877:41;14874:128;;;14921:79;;:::i;:::-;14874:128;14440:568;;;;;:::o;15014:559::-;15100:6;15108;15157:2;15145:9;15136:7;15132:23;15128:32;15125:119;;;15163:79;;:::i;:::-;15125:119;15311:1;15300:9;15296:17;15283:31;15341:18;15333:6;15330:30;15327:117;;;15363:79;;:::i;:::-;15327:117;15476:80;15548:7;15539:6;15528:9;15524:22;15476:80;:::i;:::-;15458:98;;;;15254:312;15014:559;;;;;:::o;15579:146::-;15678:6;15712:5;15706:12;15696:22;;15579:146;;;:::o;15731:216::-;15862:11;15896:6;15891:3;15884:19;15936:4;15931:3;15927:14;15912:29;;15731:216;;;;:::o;15953:164::-;16052:4;16075:3;16067:11;;16105:4;16100:3;16096:14;16088:22;;15953:164;;;:::o;16123:108::-;16200:24;16218:5;16200:24;:::i;:::-;16195:3;16188:37;16123:108;;:::o;16237:101::-;16273:7;16313:18;16306:5;16302:30;16291:41;;16237:101;;;:::o;16344:105::-;16419:23;16436:5;16419:23;:::i;:::-;16414:3;16407:36;16344:105;;:::o;16455:99::-;16526:21;16541:5;16526:21;:::i;:::-;16521:3;16514:34;16455:99;;:::o;16560:91::-;16596:7;16636:8;16629:5;16625:20;16614:31;;16560:91;;;:::o;16657:105::-;16732:23;16749:5;16732:23;:::i;:::-;16727:3;16720:36;16657:105;;:::o;16840:866::-;16991:4;16986:3;16982:14;17078:4;17071:5;17067:16;17061:23;17097:63;17154:4;17149:3;17145:14;17131:12;17097:63;:::i;:::-;17006:164;17262:4;17255:5;17251:16;17245:23;17281:61;17336:4;17331:3;17327:14;17313:12;17281:61;:::i;:::-;17180:172;17436:4;17429:5;17425:16;17419:23;17455:57;17506:4;17501:3;17497:14;17483:12;17455:57;:::i;:::-;17362:160;17609:4;17602:5;17598:16;17592:23;17628:61;17683:4;17678:3;17674:14;17660:12;17628:61;:::i;:::-;17532:167;16960:746;16840:866;;:::o;17712:307::-;17845:10;17866:110;17972:3;17964:6;17866:110;:::i;:::-;18008:4;18003:3;17999:14;17985:28;;17712:307;;;;:::o;18025:145::-;18127:4;18159;18154:3;18150:14;18142:22;;18025:145;;;:::o;18252:988::-;18435:3;18464:86;18544:5;18464:86;:::i;:::-;18566:118;18677:6;18672:3;18566:118;:::i;:::-;18559:125;;18708:88;18790:5;18708:88;:::i;:::-;18819:7;18850:1;18835:380;18860:6;18857:1;18854:13;18835:380;;;18936:6;18930:13;18963:127;19086:3;19071:13;18963:127;:::i;:::-;18956:134;;19113:92;19198:6;19113:92;:::i;:::-;19103:102;;18895:320;18882:1;18879;18875:9;18870:14;;18835:380;;;18839:14;19231:3;19224:10;;18440:800;;;18252:988;;;;:::o;19246:501::-;19453:4;19491:2;19480:9;19476:18;19468:26;;19540:9;19534:4;19530:20;19526:1;19515:9;19511:17;19504:47;19568:172;19735:4;19726:6;19568:172;:::i;:::-;19560:180;;19246:501;;;;:::o;19753:329::-;19812:6;19861:2;19849:9;19840:7;19836:23;19832:32;19829:119;;;19867:79;;:::i;:::-;19829:119;19987:1;20012:53;20057:7;20048:6;20037:9;20033:22;20012:53;:::i;:::-;20002:63;;19958:117;19753:329;;;;:::o;20088:114::-;20155:6;20189:5;20183:12;20173:22;;20088:114;;;:::o;20208:184::-;20307:11;20341:6;20336:3;20329:19;20381:4;20376:3;20372:14;20357:29;;20208:184;;;;:::o;20398:132::-;20465:4;20488:3;20480:11;;20518:4;20513:3;20509:14;20501:22;;20398:132;;;:::o;20536:108::-;20613:24;20631:5;20613:24;:::i;:::-;20608:3;20601:37;20536:108;;:::o;20650:179::-;20719:10;20740:46;20782:3;20774:6;20740:46;:::i;:::-;20818:4;20813:3;20809:14;20795:28;;20650:179;;;;:::o;20835:113::-;20905:4;20937;20932:3;20928:14;20920:22;;20835:113;;;:::o;20984:732::-;21103:3;21132:54;21180:5;21132:54;:::i;:::-;21202:86;21281:6;21276:3;21202:86;:::i;:::-;21195:93;;21312:56;21362:5;21312:56;:::i;:::-;21391:7;21422:1;21407:284;21432:6;21429:1;21426:13;21407:284;;;21508:6;21502:13;21535:63;21594:3;21579:13;21535:63;:::i;:::-;21528:70;;21621:60;21674:6;21621:60;:::i;:::-;21611:70;;21467:224;21454:1;21451;21447:9;21442:14;;21407:284;;;21411:14;21707:3;21700:10;;21108:608;;;20984:732;;;;:::o;21722:373::-;21865:4;21903:2;21892:9;21888:18;21880:26;;21952:9;21946:4;21942:20;21938:1;21927:9;21923:17;21916:47;21980:108;22083:4;22074:6;21980:108;:::i;:::-;21972:116;;21722:373;;;;:::o;22101:327::-;22159:6;22208:2;22196:9;22187:7;22183:23;22179:32;22176:119;;;22214:79;;:::i;:::-;22176:119;22334:1;22359:52;22403:7;22394:6;22383:9;22379:22;22359:52;:::i;:::-;22349:62;;22305:116;22101:327;;;;:::o;22434:619::-;22511:6;22519;22527;22576:2;22564:9;22555:7;22551:23;22547:32;22544:119;;;22582:79;;:::i;:::-;22544:119;22702:1;22727:53;22772:7;22763:6;22752:9;22748:22;22727:53;:::i;:::-;22717:63;;22673:117;22829:2;22855:53;22900:7;22891:6;22880:9;22876:22;22855:53;:::i;:::-;22845:63;;22800:118;22957:2;22983:53;23028:7;23019:6;23008:9;23004:22;22983:53;:::i;:::-;22973:63;;22928:118;22434:619;;;;;:::o;23059:116::-;23129:21;23144:5;23129:21;:::i;:::-;23122:5;23119:32;23109:60;;23165:1;23162;23155:12;23109:60;23059:116;:::o;23181:133::-;23224:5;23262:6;23249:20;23240:29;;23278:30;23302:5;23278:30;:::i;:::-;23181:133;;;;:::o;23320:468::-;23385:6;23393;23442:2;23430:9;23421:7;23417:23;23413:32;23410:119;;;23448:79;;:::i;:::-;23410:119;23568:1;23593:53;23638:7;23629:6;23618:9;23614:22;23593:53;:::i;:::-;23583:63;;23539:117;23695:2;23721:50;23763:7;23754:6;23743:9;23739:22;23721:50;:::i;:::-;23711:60;;23666:115;23320:468;;;;;:::o;23794:307::-;23855:4;23945:18;23937:6;23934:30;23931:56;;;23967:18;;:::i;:::-;23931:56;24005:29;24027:6;24005:29;:::i;:::-;23997:37;;24089:4;24083;24079:15;24071:23;;23794:307;;;:::o;24107:410::-;24184:5;24209:65;24225:48;24266:6;24225:48;:::i;:::-;24209:65;:::i;:::-;24200:74;;24297:6;24290:5;24283:21;24335:4;24328:5;24324:16;24373:3;24364:6;24359:3;24355:16;24352:25;24349:112;;;24380:79;;:::i;:::-;24349:112;24470:41;24504:6;24499:3;24494;24470:41;:::i;:::-;24190:327;24107:410;;;;;:::o;24536:338::-;24591:5;24640:3;24633:4;24625:6;24621:17;24617:27;24607:122;;24648:79;;:::i;:::-;24607:122;24765:6;24752:20;24790:78;24864:3;24856:6;24849:4;24841:6;24837:17;24790:78;:::i;:::-;24781:87;;24597:277;24536:338;;;;:::o;24880:943::-;24975:6;24983;24991;24999;25048:3;25036:9;25027:7;25023:23;25019:33;25016:120;;;25055:79;;:::i;:::-;25016:120;25175:1;25200:53;25245:7;25236:6;25225:9;25221:22;25200:53;:::i;:::-;25190:63;;25146:117;25302:2;25328:53;25373:7;25364:6;25353:9;25349:22;25328:53;:::i;:::-;25318:63;;25273:118;25430:2;25456:53;25501:7;25492:6;25481:9;25477:22;25456:53;:::i;:::-;25446:63;;25401:118;25586:2;25575:9;25571:18;25558:32;25617:18;25609:6;25606:30;25603:117;;;25639:79;;:::i;:::-;25603:117;25744:62;25798:7;25789:6;25778:9;25774:22;25744:62;:::i;:::-;25734:72;;25529:287;24880:943;;;;;;;:::o;25901:876::-;26062:4;26057:3;26053:14;26149:4;26142:5;26138:16;26132:23;26168:63;26225:4;26220:3;26216:14;26202:12;26168:63;:::i;:::-;26077:164;26333:4;26326:5;26322:16;26316:23;26352:61;26407:4;26402:3;26398:14;26384:12;26352:61;:::i;:::-;26251:172;26507:4;26500:5;26496:16;26490:23;26526:57;26577:4;26572:3;26568:14;26554:12;26526:57;:::i;:::-;26433:160;26680:4;26673:5;26669:16;26663:23;26699:61;26754:4;26749:3;26745:14;26731:12;26699:61;:::i;:::-;26603:167;26031:746;25901:876;;:::o;26783:351::-;26940:4;26978:3;26967:9;26963:19;26955:27;;26992:135;27124:1;27113:9;27109:17;27100:6;26992:135;:::i;:::-;26783:351;;;;:::o;27140:474::-;27208:6;27216;27265:2;27253:9;27244:7;27240:23;27236:32;27233:119;;;27271:79;;:::i;:::-;27233:119;27391:1;27416:53;27461:7;27452:6;27441:9;27437:22;27416:53;:::i;:::-;27406:63;;27362:117;27518:2;27544:53;27589:7;27580:6;27569:9;27565:22;27544:53;:::i;:::-;27534:63;;27489:118;27140:474;;;;;:::o;27620:180::-;27668:77;27665:1;27658:88;27765:4;27762:1;27755:15;27789:4;27786:1;27779:15;27806:320;27850:6;27887:1;27881:4;27877:12;27867:22;;27934:1;27928:4;27924:12;27955:18;27945:81;;28011:4;28003:6;27999:17;27989:27;;27945:81;28073:2;28065:6;28062:14;28042:18;28039:38;28036:84;;;28092:18;;:::i;:::-;28036:84;27857:269;27806:320;;;:::o;28132:180::-;28180:77;28177:1;28170:88;28277:4;28274:1;28267:15;28301:4;28298:1;28291:15;28318:348;28358:7;28381:20;28399:1;28381:20;:::i;:::-;28376:25;;28415:20;28433:1;28415:20;:::i;:::-;28410:25;;28603:1;28535:66;28531:74;28528:1;28525:81;28520:1;28513:9;28506:17;28502:105;28499:131;;;28610:18;;:::i;:::-;28499:131;28658:1;28655;28651:9;28640:20;;28318:348;;;;:::o;28672:180::-;28720:77;28717:1;28710:88;28817:4;28814:1;28807:15;28841:4;28838:1;28831:15;28858:185;28898:1;28915:20;28933:1;28915:20;:::i;:::-;28910:25;;28949:20;28967:1;28949:20;:::i;:::-;28944:25;;28988:1;28978:35;;28993:18;;:::i;:::-;28978:35;29035:1;29032;29028:9;29023:14;;28858:185;;;;:::o;29049:228::-;29189:34;29185:1;29177:6;29173:14;29166:58;29258:11;29253:2;29245:6;29241:15;29234:36;29049:228;:::o;29283:366::-;29425:3;29446:67;29510:2;29505:3;29446:67;:::i;:::-;29439:74;;29522:93;29611:3;29522:93;:::i;:::-;29640:2;29635:3;29631:12;29624:19;;29283:366;;;:::o;29655:419::-;29821:4;29859:2;29848:9;29844:18;29836:26;;29908:9;29902:4;29898:20;29894:1;29883:9;29879:17;29872:47;29936:131;30062:4;29936:131;:::i;:::-;29928:139;;29655:419;;;:::o;30080:220::-;30220:34;30216:1;30208:6;30204:14;30197:58;30289:3;30284:2;30276:6;30272:15;30265:28;30080:220;:::o;30306:366::-;30448:3;30469:67;30533:2;30528:3;30469:67;:::i;:::-;30462:74;;30545:93;30634:3;30545:93;:::i;:::-;30663:2;30658:3;30654:12;30647:19;;30306:366;;;:::o;30678:419::-;30844:4;30882:2;30871:9;30867:18;30859:26;;30931:9;30925:4;30921:20;30917:1;30906:9;30902:17;30895:47;30959:131;31085:4;30959:131;:::i;:::-;30951:139;;30678:419;;;:::o;31103:305::-;31143:3;31162:20;31180:1;31162:20;:::i;:::-;31157:25;;31196:20;31214:1;31196:20;:::i;:::-;31191:25;;31350:1;31282:66;31278:74;31275:1;31272:81;31269:107;;;31356:18;;:::i;:::-;31269:107;31400:1;31397;31393:9;31386:16;;31103:305;;;;:::o;31414:227::-;31554:34;31550:1;31542:6;31538:14;31531:58;31623:10;31618:2;31610:6;31606:15;31599:35;31414:227;:::o;31647:366::-;31789:3;31810:67;31874:2;31869:3;31810:67;:::i;:::-;31803:74;;31886:93;31975:3;31886:93;:::i;:::-;32004:2;31999:3;31995:12;31988:19;;31647:366;;;:::o;32019:419::-;32185:4;32223:2;32212:9;32208:18;32200:26;;32272:9;32266:4;32262:20;32258:1;32247:9;32243:17;32236:47;32300:131;32426:4;32300:131;:::i;:::-;32292:139;;32019:419;;;:::o;32444:242::-;32483:3;32502:19;32519:1;32502:19;:::i;:::-;32497:24;;32535:19;32552:1;32535:19;:::i;:::-;32530:24;;32628:1;32620:6;32616:14;32613:1;32610:21;32607:47;;;32634:18;;:::i;:::-;32607:47;32678:1;32675;32671:9;32664:16;;32444:242;;;;:::o;32692:233::-;32832:34;32828:1;32820:6;32816:14;32809:58;32901:16;32896:2;32888:6;32884:15;32877:41;32692:233;:::o;32931:366::-;33073:3;33094:67;33158:2;33153:3;33094:67;:::i;:::-;33087:74;;33170:93;33259:3;33170:93;:::i;:::-;33288:2;33283:3;33279:12;33272:19;;32931:366;;;:::o;33303:419::-;33469:4;33507:2;33496:9;33492:18;33484:26;;33556:9;33550:4;33546:20;33542:1;33531:9;33527:17;33520:47;33584:131;33710:4;33584:131;:::i;:::-;33576:139;;33303:419;;;:::o;33728:234::-;33868:34;33864:1;33856:6;33852:14;33845:58;33937:17;33932:2;33924:6;33920:15;33913:42;33728:234;:::o;33968:366::-;34110:3;34131:67;34195:2;34190:3;34131:67;:::i;:::-;34124:74;;34207:93;34296:3;34207:93;:::i;:::-;34325:2;34320:3;34316:12;34309:19;;33968:366;;;:::o;34340:419::-;34506:4;34544:2;34533:9;34529:18;34521:26;;34593:9;34587:4;34583:20;34579:1;34568:9;34564:17;34557:47;34621:131;34747:4;34621:131;:::i;:::-;34613:139;;34340:419;;;:::o;34765:224::-;34905:34;34901:1;34893:6;34889:14;34882:58;34974:7;34969:2;34961:6;34957:15;34950:32;34765:224;:::o;34995:366::-;35137:3;35158:67;35222:2;35217:3;35158:67;:::i;:::-;35151:74;;35234:93;35323:3;35234:93;:::i;:::-;35352:2;35347:3;35343:12;35336:19;;34995:366;;;:::o;35367:419::-;35533:4;35571:2;35560:9;35556:18;35548:26;;35620:9;35614:4;35610:20;35606:1;35595:9;35591:17;35584:47;35648:131;35774:4;35648:131;:::i;:::-;35640:139;;35367:419;;;:::o;35792:180::-;35840:77;35837:1;35830:88;35937:4;35934:1;35927:15;35961:4;35958:1;35951:15;35978:118;36064:1;36057:5;36054:12;36044:46;;36070:18;;:::i;:::-;36044:46;35978:118;:::o;36102:137::-;36152:7;36181:5;36170:16;;36187:46;36227:5;36187:46;:::i;:::-;36102:137;;;:::o;36245:::-;36306:9;36339:37;36370:5;36339:37;:::i;:::-;36326:50;;36245:137;;;:::o;36388:153::-;36486:48;36528:5;36486:48;:::i;:::-;36481:3;36474:61;36388:153;;:::o;36547:354::-;36679:4;36717:2;36706:9;36702:18;36694:26;;36730:82;36809:1;36798:9;36794:17;36785:6;36730:82;:::i;:::-;36822:72;36890:2;36879:9;36875:18;36866:6;36822:72;:::i;:::-;36547:354;;;;;:::o;36907:222::-;37047:34;37043:1;37035:6;37031:14;37024:58;37116:5;37111:2;37103:6;37099:15;37092:30;36907:222;:::o;37135:366::-;37277:3;37298:67;37362:2;37357:3;37298:67;:::i;:::-;37291:74;;37374:93;37463:3;37374:93;:::i;:::-;37492:2;37487:3;37483:12;37476:19;;37135:366;;;:::o;37507:419::-;37673:4;37711:2;37700:9;37696:18;37688:26;;37760:9;37754:4;37750:20;37746:1;37735:9;37731:17;37724:47;37788:131;37914:4;37788:131;:::i;:::-;37780:139;;37507:419;;;:::o;37932:180::-;37980:77;37977:1;37970:88;38077:4;38074:1;38067:15;38101:4;38098:1;38091:15;38118:235;38258:34;38254:1;38246:6;38242:14;38235:58;38327:18;38322:2;38314:6;38310:15;38303:43;38118:235;:::o;38359:366::-;38501:3;38522:67;38586:2;38581:3;38522:67;:::i;:::-;38515:74;;38598:93;38687:3;38598:93;:::i;:::-;38716:2;38711:3;38707:12;38700:19;;38359:366;;;:::o;38731:419::-;38897:4;38935:2;38924:9;38920:18;38912:26;;38984:9;38978:4;38974:20;38970:1;38959:9;38955:17;38948:47;39012:131;39138:4;39012:131;:::i;:::-;39004:139;;38731:419;;;:::o;39156:225::-;39296:34;39292:1;39284:6;39280:14;39273:58;39365:8;39360:2;39352:6;39348:15;39341:33;39156:225;:::o;39387:366::-;39529:3;39550:67;39614:2;39609:3;39550:67;:::i;:::-;39543:74;;39626:93;39715:3;39626:93;:::i;:::-;39744:2;39739:3;39735:12;39728:19;;39387:366;;;:::o;39759:419::-;39925:4;39963:2;39952:9;39948:18;39940:26;;40012:9;40006:4;40002:20;39998:1;39987:9;39983:17;39976:47;40040:131;40166:4;40040:131;:::i;:::-;40032:139;;39759:419;;;:::o;40184:232::-;40324:34;40320:1;40312:6;40308:14;40301:58;40393:15;40388:2;40380:6;40376:15;40369:40;40184:232;:::o;40422:366::-;40564:3;40585:67;40649:2;40644:3;40585:67;:::i;:::-;40578:74;;40661:93;40750:3;40661:93;:::i;:::-;40779:2;40774:3;40770:12;40763:19;;40422:366;;;:::o;40794:419::-;40960:4;40998:2;40987:9;40983:18;40975:26;;41047:9;41041:4;41037:20;41033:1;41022:9;41018:17;41011:47;41075:131;41201:4;41075:131;:::i;:::-;41067:139;;40794:419;;;:::o;41219:234::-;41359:34;41355:1;41347:6;41343:14;41336:58;41428:17;41423:2;41415:6;41411:15;41404:42;41219:234;:::o;41459:366::-;41601:3;41622:67;41686:2;41681:3;41622:67;:::i;:::-;41615:74;;41698:93;41787:3;41698:93;:::i;:::-;41816:2;41811:3;41807:12;41800:19;;41459:366;;;:::o;41831:419::-;41997:4;42035:2;42024:9;42020:18;42012:26;;42084:9;42078:4;42074:20;42070:1;42059:9;42055:17;42048:47;42112:131;42238:4;42112:131;:::i;:::-;42104:139;;41831:419;;;:::o;42256:148::-;42358:11;42395:3;42380:18;;42256:148;;;;:::o;42410:377::-;42516:3;42544:39;42577:5;42544:39;:::i;:::-;42599:89;42681:6;42676:3;42599:89;:::i;:::-;42592:96;;42697:52;42742:6;42737:3;42730:4;42723:5;42719:16;42697:52;:::i;:::-;42774:6;42769:3;42765:16;42758:23;;42520:267;42410:377;;;;:::o;42793:275::-;42925:3;42947:95;43038:3;43029:6;42947:95;:::i;:::-;42940:102;;43059:3;43052:10;;42793:275;;;;:::o;43074:225::-;43214:34;43210:1;43202:6;43198:14;43191:58;43283:8;43278:2;43270:6;43266:15;43259:33;43074:225;:::o;43305:366::-;43447:3;43468:67;43532:2;43527:3;43468:67;:::i;:::-;43461:74;;43544:93;43633:3;43544:93;:::i;:::-;43662:2;43657:3;43653:12;43646:19;;43305:366;;;:::o;43677:419::-;43843:4;43881:2;43870:9;43866:18;43858:26;;43930:9;43924:4;43920:20;43916:1;43905:9;43901:17;43894:47;43958:131;44084:4;43958:131;:::i;:::-;43950:139;;43677:419;;;:::o;44102:182::-;44242:34;44238:1;44230:6;44226:14;44219:58;44102:182;:::o;44290:366::-;44432:3;44453:67;44517:2;44512:3;44453:67;:::i;:::-;44446:74;;44529:93;44618:3;44529:93;:::i;:::-;44647:2;44642:3;44638:12;44631:19;;44290:366;;;:::o;44662:419::-;44828:4;44866:2;44855:9;44851:18;44843:26;;44915:9;44909:4;44905:20;44901:1;44890:9;44886:17;44879:47;44943:131;45069:4;44943:131;:::i;:::-;44935:139;;44662:419;;;:::o;45087:229::-;45227:34;45223:1;45215:6;45211:14;45204:58;45296:12;45291:2;45283:6;45279:15;45272:37;45087:229;:::o;45322:366::-;45464:3;45485:67;45549:2;45544:3;45485:67;:::i;:::-;45478:74;;45561:93;45650:3;45561:93;:::i;:::-;45679:2;45674:3;45670:12;45663:19;;45322:366;;;:::o;45694:419::-;45860:4;45898:2;45887:9;45883:18;45875:26;;45947:9;45941:4;45937:20;45933:1;45922:9;45918:17;45911:47;45975:131;46101:4;45975:131;:::i;:::-;45967:139;;45694:419;;;:::o;46119:175::-;46259:27;46255:1;46247:6;46243:14;46236:51;46119:175;:::o;46300:366::-;46442:3;46463:67;46527:2;46522:3;46463:67;:::i;:::-;46456:74;;46539:93;46628:3;46539:93;:::i;:::-;46657:2;46652:3;46648:12;46641:19;;46300:366;;;:::o;46672:419::-;46838:4;46876:2;46865:9;46861:18;46853:26;;46925:9;46919:4;46915:20;46911:1;46900:9;46896:17;46889:47;46953:131;47079:4;46953:131;:::i;:::-;46945:139;;46672:419;;;:::o;47097:233::-;47136:3;47159:24;47177:5;47159:24;:::i;:::-;47150:33;;47205:66;47198:5;47195:77;47192:103;;;47275:18;;:::i;:::-;47192:103;47322:1;47315:5;47311:13;47304:20;;47097:233;;;:::o;47336:172::-;47476:24;47472:1;47464:6;47460:14;47453:48;47336:172;:::o;47514:366::-;47656:3;47677:67;47741:2;47736:3;47677:67;:::i;:::-;47670:74;;47753:93;47842:3;47753:93;:::i;:::-;47871:2;47866:3;47862:12;47855:19;;47514:366;;;:::o;47886:419::-;48052:4;48090:2;48079:9;48075:18;48067:26;;48139:9;48133:4;48129:20;48125:1;48114:9;48110:17;48103:47;48167:131;48293:4;48167:131;:::i;:::-;48159:139;;47886:419;;;:::o;48311:191::-;48351:4;48371:20;48389:1;48371:20;:::i;:::-;48366:25;;48405:20;48423:1;48405:20;:::i;:::-;48400:25;;48444:1;48441;48438:8;48435:34;;;48449:18;;:::i;:::-;48435:34;48494:1;48491;48487:9;48479:17;;48311:191;;;;:::o;48508:98::-;48559:6;48593:5;48587:12;48577:22;;48508:98;;;:::o;48612:168::-;48695:11;48729:6;48724:3;48717:19;48769:4;48764:3;48760:14;48745:29;;48612:168;;;;:::o;48786:360::-;48872:3;48900:38;48932:5;48900:38;:::i;:::-;48954:70;49017:6;49012:3;48954:70;:::i;:::-;48947:77;;49033:52;49078:6;49073:3;49066:4;49059:5;49055:16;49033:52;:::i;:::-;49110:29;49132:6;49110:29;:::i;:::-;49105:3;49101:39;49094:46;;48876:270;48786:360;;;;:::o;49152:640::-;49347:4;49385:3;49374:9;49370:19;49362:27;;49399:71;49467:1;49456:9;49452:17;49443:6;49399:71;:::i;:::-;49480:72;49548:2;49537:9;49533:18;49524:6;49480:72;:::i;:::-;49562;49630:2;49619:9;49615:18;49606:6;49562:72;:::i;:::-;49681:9;49675:4;49671:20;49666:2;49655:9;49651:18;49644:48;49709:76;49780:4;49771:6;49709:76;:::i;:::-;49701:84;;49152:640;;;;;;;:::o;49798:141::-;49854:5;49885:6;49879:13;49870:22;;49901:32;49927:5;49901:32;:::i;:::-;49798:141;;;;:::o;49945:349::-;50014:6;50063:2;50051:9;50042:7;50038:23;50034:32;50031:119;;;50069:79;;:::i;:::-;50031:119;50189:1;50214:63;50269:7;50260:6;50249:9;50245:22;50214:63;:::i;:::-;50204:73;;50160:127;49945:349;;;;:::o

Swarm Source

ipfs://1ae72a5ec5a511fb4dfa26c5b361196dc1887be8d4b5aa74c73b76935fdcd86a
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.