ETH Price: $2,605.88 (+0.10%)
Gas: 6 Gwei

Token

SatoshiNation (SN)
 

Overview

Max Total Supply

356 SN

Holders

202

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
staketogheter.eth
Balance
1 SN
0x40a4fce89b26E924A3b5f13A91E78A5dc4944a45
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:
SatoshiNation

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-08
*/

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
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();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try 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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 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: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: contracts/SatoshiNation.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;





contract SatoshiNation is Ownable, ERC721A {
    uint256 constant public MAX_SUPPLY = 2121;
   
    uint256 public publicPrice = 0.1 ether;

    uint256 constant public PUBLIC_MINT_LIMIT_TXN = 21;
    uint256 constant public PUBLIC_MINT_LIMIT = 21;

    string public revealedURI = baseURI;

    string  public baseURI = "ipfs://QmaTV4Ryr7Q39QpnHzTZg6N6cQdynZvoWb5Jg7gi9YaGGu/";
//    string public baseURI;
    
    string public hiddenURI = "ipfs://QmfJXHRMn8KAuBbVsKmsDFZT4bXjjHiEEG4TkSEHjhoR5N";

    string public CONTRACT_URI = "ipfs://QmaTV4Ryr7Q39QpnHzTZg6N6cQdynZvoWb5Jg7gi9YaGGu/";

    bool public paused = false;
    bool public revealed = true;

    bool public freeSale = true;
    bool public publicSale = false;

    address public teamWallet = 0x1A7E67646B00Af322BEBF51262b5760dcb2a434C;

    mapping(address => bool) public userMintedFree;
    mapping(address => uint256) public numUserMints;

    constructor(string memory _uri) ERC721A("SatoshiNation", "SN") {
        baseURI = _uri;
        _safeMint(teamWallet, 121);
     }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function refundOverpay(uint256 price) private {
        if (msg.value > price) {
            (bool succ, ) = payable(msg.sender).call{
                value: (msg.value - price)
            }("");
            require(succ, "Transfer failed");
        }
        else if (msg.value < price) {
            revert("Not enough ETH sent");
        }
    }

// Public Functions
    
    function freeMint(uint256 quantity) external payable mintCompliance(quantity) {
        require(freeSale, "Free sale inactive");
        require(msg.value == 0, "This phase is free");
        require(quantity == 1, "Only 1 free");

        uint256 newSupply = totalSupply() + quantity;
        
        require(newSupply <= 331, "Not enough free supply");

        require(!userMintedFree[msg.sender], "User max free limit");
        
        userMintedFree[msg.sender] = true;

        if(newSupply == 331) {
            freeSale = false;
            publicSale = true;
        }

        _safeMint(msg.sender, quantity);
    }

    function publicMint(uint256 quantity) external payable mintCompliance(quantity) {
        require(publicSale, "Public sale inactive");
        require(quantity <= PUBLIC_MINT_LIMIT_TXN, "Quantity too high");

        uint256 price = publicPrice;
        uint256 currMints = numUserMints[msg.sender];
                
        require(currMints + quantity <= PUBLIC_MINT_LIMIT, "User max mint limit");
        
        refundOverpay(price * quantity);

        numUserMints[msg.sender] = (currMints + quantity);

        _safeMint(msg.sender, quantity);
    }

// View Functions

    function walletOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

        currentTokenId++;
        }

        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {

        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        
        if (revealed) {
            return string(abi.encodePacked(revealedURI, Strings.toString(_tokenId), ".json"));
        }
        else {
            return hiddenURI;
        }
    }

    // https://docs.opensea.io/docs/contract-level-metadata
    // https://ethereum.stackexchange.com/questions/110924/how-to-properly-implement-a-contracturi-for-on-chain-nfts
    function contractURI() public view returns (string memory) {
        return CONTRACT_URI;
    }

// Owner Functions

    function setPublicPrice(uint256 _publicPrice) public onlyOwner {
        publicPrice = _publicPrice;
    }

    function setBaseURI(string memory _baseUri) public onlyOwner {
        revealedURI = _baseUri;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenURI = _hiddenMetadataUri;
    }

    function revealCollection(bool _revealed, string memory _baseUri) public onlyOwner {
        revealed = _revealed;
        revealedURI = _baseUri;
    }

    // https://docs.opensea.io/docs/contract-level-metadata
    function setContractURI(string memory _contractURI) public onlyOwner {
        CONTRACT_URI = _contractURI;
    }

    // https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/Pausable.sol
    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setRevealURI(string memory _newURI) public onlyOwner {
        revealedURI = _newURI;
    }

    function setPublicEnabled(bool _state) public onlyOwner {
        publicSale = _state;
        freeSale = !_state;
    }
    function setFreeEnabled(bool _state) public onlyOwner {
        freeSale = _state;
        publicSale = !_state;
    }

    function setTeamWalletAddress(address _teamWallet) public onlyOwner {
        teamWallet = _teamWallet;
    }

    function withdraw() external payable onlyOwner {
        
    (bool succ, ) = payable(teamWallet).call{
            value: address(this).balance
        }("");
        require(succ, "Team (remaining) transfer failed");
        
    }

    // Owner-only mint functionality to "Airdrop" mints to specific users
        // Note: These will likely end up hidden on OpenSea
    function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) {
        _safeMint(receiver, quantity);
    }

// Modifiers

    modifier mintCompliance(uint256 quantity) {
        require(!paused, "Contract is paused");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left");
        require(tx.origin == msg.sender, "No contract minting");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"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":"CONTRACT_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"},{"internalType":"string","name":"_baseUri","type":"string"}],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"name":"setTeamWalletAddress","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":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405267016345785d8a0000600955600b600a908054620000229062000c92565b6200002f92919062000860565b50604051806060016040528060368152602001620059db60369139600b908051906020019062000061929190620008f8565b50604051806060016040528060358152602001620059a660359139600c908051906020019062000093929190620008f8565b50604051806060016040528060368152602001620059db60369139600d9080519060200190620000c5929190620008f8565b506000600e60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff0219169083151502179055506001600e60026101000a81548160ff0219169083151502179055506000600e60036101000a81548160ff021916908315150217905550731a7e67646b00af322bebf51262b5760dcb2a434c600e60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200019457600080fd5b5060405162005a1138038062005a118339818101604052810190620001ba919062000a6f565b6040518060400160405280600d81526020017f5361746f7368694e6174696f6e000000000000000000000000000000000000008152506040518060400160405280600281526020017f534e000000000000000000000000000000000000000000000000000000000000815250620002466200023a620002e560201b60201c565b620002ed60201b60201c565b81600390805190602001906200025e929190620008f8565b50806004908051906020019062000277929190620008f8565b5062000288620003b160201b60201c565b600181905550505080600b9080519060200190620002a8929190620008f8565b50620002de600e60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff166079620003ba60201b60201c565b5062000d9b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b620003dc828260405180602001604052806000815250620003e060201b60201c565b5050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156200044f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156200048b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620004a06000858386620006c660201b60201c565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16200050d60018514620006cc60201b60201c565b901b60a042901b6200052586620006d660201b60201c565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1462000636575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620005e26000878480600101955087620006e060201b60201c565b62000619576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106200056b5782600154146200063057600080fd5b620006a2565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821062000637575b816001819055505050620006c060008583866200085260201b60201c565b50505050565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200070e6200085860201b60201c565b8786866040518563ffffffff1660e01b815260040162000732949392919062000b23565b602060405180830381600087803b1580156200074d57600080fd5b505af19250505080156200078157506040513d601f19601f820116820180604052508101906200077e919062000a3d565b60015b620007ff573d8060008114620007b4576040519150601f19603f3d011682016040523d82523d6000602084013e620007b9565b606091505b50600081511415620007f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b8280546200086e9062000c92565b90600052602060002090601f016020900481019282620008925760008555620008e5565b82601f10620008a55780548555620008e5565b82800160010185558215620008e557600052602060002091601f016020900482015b82811115620008e4578254825591600101919060010190620008c7565b5b509050620008f4919062000989565b5090565b828054620009069062000c92565b90600052602060002090601f0160209004810192826200092a576000855562000976565b82601f106200094557805160ff191683800117855562000976565b8280016001018555821562000976579182015b828111156200097557825182559160200191906001019062000958565b5b50905062000985919062000989565b5090565b5b80821115620009a45760008160009055506001016200098a565b5090565b6000620009bf620009b98462000ba0565b62000b77565b905082815260208101848484011115620009de57620009dd62000d61565b5b620009eb84828562000c5c565b509392505050565b60008151905062000a048162000d81565b92915050565b600082601f83011262000a225762000a2162000d5c565b5b815162000a34848260208601620009a8565b91505092915050565b60006020828403121562000a565762000a5562000d6b565b5b600062000a6684828501620009f3565b91505092915050565b60006020828403121562000a885762000a8762000d6b565b5b600082015167ffffffffffffffff81111562000aa95762000aa862000d66565b5b62000ab78482850162000a0a565b91505092915050565b62000acb8162000bf2565b82525050565b600062000ade8262000bd6565b62000aea818562000be1565b935062000afc81856020860162000c5c565b62000b078162000d70565b840191505092915050565b62000b1d8162000c52565b82525050565b600060808201905062000b3a600083018762000ac0565b62000b49602083018662000ac0565b62000b58604083018562000b12565b818103606083015262000b6c818462000ad1565b905095945050505050565b600062000b8362000b96565b905062000b91828262000cc8565b919050565b6000604051905090565b600067ffffffffffffffff82111562000bbe5762000bbd62000d2d565b5b62000bc98262000d70565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000bff8262000c32565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000c7c57808201518184015260208101905062000c5f565b8381111562000c8c576000848401525b50505050565b6000600282049050600182168062000cab57607f821691505b6020821081141562000cc25762000cc162000cfe565b5b50919050565b62000cd38262000d70565b810181811067ffffffffffffffff8211171562000cf55762000cf462000d2d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000d8c8162000c06565b811462000d9857600080fd5b50565b614bfb8062000dab6000396000f3fe6080604052600436106102ae5760003560e01c80636c0360eb11610175578063a22cb465116100dc578063c627525511610095578063e8a3d4851161006f578063e8a3d48514610a5d578063e985e9c514610a88578063f2fde38b14610ac5578063f7e8d6ea14610aee576102ae565b8063c6275255146109ce578063c87b56dd146109f7578063e0a8085314610a34576102ae565b8063a22cb465146108d2578063a4b41a15146108fb578063a811a37b14610926578063a945bf801461094f578063b88d4fde1461097a578063bceae77b146109a3576102ae565b806388dedc141161012e57806388dedc14146107d65780638cc54e7f146107ff5780638da5cb5b1461082a5780639007bd7214610855578063938e3d7b1461087e57806395d89b41146108a7576102ae565b80636c0360eb146106d557806370a0823114610700578063715018a61461073d5780637aeb7242146107545780637af3a1af146107915780637c928fe9146107ba576102ae565b80633ccfd60b1161021957806356b4f673116101d257806356b4f673146105b157806359927044146105dc5780635c975abb146106075780635ed3e25e146106325780636352211e1461065b57806364f6407614610698576102ae565b80633ccfd60b146104c457806342842e0e146104ce578063438b6300146104f75780634fdd43cb14610534578063518302271461055d57806355f804b314610588576102ae565b806323b872dd1161026b57806323b872dd146103d55780632c4b2334146103fe5780632db11544146104275780632fecf20b1461044357806332cb6b0c1461046e57806333bc1c5c14610499576102ae565b806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063095ea7b31461035857806316c38b3c1461038157806318160ddd146103aa575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d59190613a9b565b610b19565b6040516102e791906140e5565b60405180910390f35b3480156102fc57600080fd5b50610305610bab565b6040516103129190614100565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190613b3e565b610c3d565b60405161034f919061405c565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a91906139d2565b610cb9565b005b34801561038d57600080fd5b506103a860048036038101906103a39190613a12565b610e60565b005b3480156103b657600080fd5b506103bf610ef9565b6040516103cc9190614342565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f791906138bc565b610f10565b005b34801561040a57600080fd5b506104256004803603810190610420919061384f565b610f20565b005b610441600480360381019061043c9190613b3e565b610fe0565b005b34801561044f57600080fd5b50610458611296565b6040516104659190614342565b60405180910390f35b34801561047a57600080fd5b5061048361129b565b6040516104909190614342565b60405180910390f35b3480156104a557600080fd5b506104ae6112a1565b6040516104bb91906140e5565b60405180910390f35b6104cc6112b4565b005b3480156104da57600080fd5b506104f560048036038101906104f091906138bc565b611401565b005b34801561050357600080fd5b5061051e6004803603810190610519919061384f565b611421565b60405161052b91906140c3565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190613af5565b61152c565b005b34801561056957600080fd5b506105726115c2565b60405161057f91906140e5565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613af5565b6115d5565b005b3480156105bd57600080fd5b506105c661166b565b6040516105d39190614100565b60405180910390f35b3480156105e857600080fd5b506105f16116f9565b6040516105fe919061405c565b60405180910390f35b34801561061357600080fd5b5061061c61171f565b60405161062991906140e5565b60405180910390f35b34801561063e57600080fd5b5061065960048036038101906106549190613a3f565b611732565b005b34801561066757600080fd5b50610682600480360381019061067d9190613b3e565b6117e3565b60405161068f919061405c565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba919061384f565b6117f5565b6040516106cc91906140e5565b60405180910390f35b3480156106e157600080fd5b506106ea611815565b6040516106f79190614100565b60405180910390f35b34801561070c57600080fd5b506107276004803603810190610722919061384f565b6118a3565b6040516107349190614342565b60405180910390f35b34801561074957600080fd5b5061075261195c565b005b34801561076057600080fd5b5061077b6004803603810190610776919061384f565b6119e4565b6040516107889190614342565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190613a12565b6119fc565b005b6107d460048036038101906107cf9190613b3e565b611ab0565b005b3480156107e257600080fd5b506107fd60048036038101906107f89190613a12565b611e2c565b005b34801561080b57600080fd5b50610814611ee0565b6040516108219190614100565b60405180910390f35b34801561083657600080fd5b5061083f611f6e565b60405161084c919061405c565b60405180910390f35b34801561086157600080fd5b5061087c60048036038101906108779190613b6b565b611f97565b005b34801561088a57600080fd5b506108a560048036038101906108a09190613af5565b612138565b005b3480156108b357600080fd5b506108bc6121ce565b6040516108c99190614100565b60405180910390f35b3480156108de57600080fd5b506108f960048036038101906108f49190613992565b612260565b005b34801561090757600080fd5b506109106123d8565b60405161091d91906140e5565b60405180910390f35b34801561093257600080fd5b5061094d60048036038101906109489190613af5565b6123eb565b005b34801561095b57600080fd5b50610964612481565b6040516109719190614342565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c919061390f565b612487565b005b3480156109af57600080fd5b506109b86124fa565b6040516109c59190614342565b60405180910390f35b3480156109da57600080fd5b506109f560048036038101906109f09190613b3e565b6124ff565b005b348015610a0357600080fd5b50610a1e6004803603810190610a199190613b3e565b612585565b604051610a2b9190614100565b60405180910390f35b348015610a4057600080fd5b50610a5b6004803603810190610a569190613a12565b6126a9565b005b348015610a6957600080fd5b50610a72612742565b604051610a7f9190614100565b60405180910390f35b348015610a9457600080fd5b50610aaf6004803603810190610aaa919061387c565b6127d4565b604051610abc91906140e5565b60405180910390f35b348015610ad157600080fd5b50610aec6004803603810190610ae7919061384f565b612868565b005b348015610afa57600080fd5b50610b03612960565b604051610b109190614100565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610bba9061464b565b80601f0160208091040260200160405190810160405280929190818152602001828054610be69061464b565b8015610c335780601f10610c0857610100808354040283529160200191610c33565b820191906000526020600020905b815481529060010190602001808311610c1657829003601f168201915b5050505050905090565b6000610c48826129ee565b610c7e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cc482612a4d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d4b612b1b565b73ffffffffffffffffffffffffffffffffffffffff1614610dae57610d7781610d72612b1b565b6127d4565b610dad576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610e68612b23565b73ffffffffffffffffffffffffffffffffffffffff16610e86611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390614202565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610f03612b2b565b6002546001540303905090565b610f1b838383612b34565b505050565b610f28612b23565b73ffffffffffffffffffffffffffffffffffffffff16610f46611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390614202565b60405180910390fd5b80600e60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b80600e60009054906101000a900460ff1615611031576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611028906142e2565b60405180910390fd5b6108498161103d610ef9565b6110479190614480565b1115611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90614322565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90614182565b60405180910390fd5b600e60039054906101000a900460ff16611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c906142a2565b60405180910390fd5b6015821115611189576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611180906142c2565b60405180910390fd5b600060095490506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601584826111e29190614480565b1115611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a906141a2565b60405180910390fd5b61123784836112329190614507565b612ede565b83816112439190614480565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112903385612fea565b50505050565b601581565b61084981565b600e60039054906101000a900460ff1681565b6112bc612b23565b73ffffffffffffffffffffffffffffffffffffffff166112da611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614611330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132790614202565b60405180910390fd5b6000600e60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161137890614047565b60006040518083038185875af1925050503d80600081146113b5576040519150601f19603f3d011682016040523d82523d6000602084013e6113ba565b606091505b50509050806113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f5906141c2565b60405180910390fd5b50565b61141c83838360405180602001604052806000815250612487565b505050565b6060600061142e836118a3565b905060008167ffffffffffffffff81111561144c5761144b6147e4565b5b60405190808252806020026020018201604052801561147a5781602001602082028036833780820191505090505b50905060006001905060005b838110801561149757506108498211155b156115205760006114a7836117e3565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561150c57828483815181106114f1576114f06147b5565b5b6020026020010181815250508180611508906146ae565b9250505b8280611517906146ae565b93505050611486565b82945050505050919050565b611534612b23565b73ffffffffffffffffffffffffffffffffffffffff16611552611f6e565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90614202565b60405180910390fd5b80600c90805190602001906115be929190613663565b5050565b600e60019054906101000a900460ff1681565b6115dd612b23565b73ffffffffffffffffffffffffffffffffffffffff166115fb611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614611651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164890614202565b60405180910390fd5b80600a9080519060200190611667929190613663565b5050565b600d80546116789061464b565b80601f01602080910402602001604051908101604052809291908181526020018280546116a49061464b565b80156116f15780601f106116c6576101008083540402835291602001916116f1565b820191906000526020600020905b8154815290600101906020018083116116d457829003601f168201915b505050505081565b600e60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900460ff1681565b61173a612b23565b73ffffffffffffffffffffffffffffffffffffffff16611758611f6e565b73ffffffffffffffffffffffffffffffffffffffff16146117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a590614202565b60405180910390fd5b81600e60016101000a81548160ff02191690831515021790555080600a90805190602001906117de929190613663565b505050565b60006117ee82612a4d565b9050919050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600b80546118229061464b565b80601f016020809104026020016040519081016040528092919081815260200182805461184e9061464b565b801561189b5780601f106118705761010080835404028352916020019161189b565b820191906000526020600020905b81548152906001019060200180831161187e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561190b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611964612b23565b73ffffffffffffffffffffffffffffffffffffffff16611982611f6e565b73ffffffffffffffffffffffffffffffffffffffff16146119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90614202565b60405180910390fd5b6119e26000613008565b565b60106020528060005260406000206000915090505481565b611a04612b23565b73ffffffffffffffffffffffffffffffffffffffff16611a22611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f90614202565b60405180910390fd5b80600e60036101000a81548160ff0219169083151502179055508015600e60026101000a81548160ff02191690831515021790555050565b80600e60009054906101000a900460ff1615611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af8906142e2565b60405180910390fd5b61084981611b0d610ef9565b611b179190614480565b1115611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f90614322565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbd90614182565b60405180910390fd5b600e60029054906101000a900460ff16611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c906141e2565b60405180910390fd5b60003414611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f90614262565b60405180910390fd5b60018214611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9290614122565b60405180910390fd5b600082611ca6610ef9565b611cb09190614480565b905061014b811115611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90614302565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b90614222565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061014b811415611e1d576000600e60026101000a81548160ff0219169083151502179055506001600e60036101000a81548160ff0219169083151502179055505b611e273384612fea565b505050565b611e34612b23565b73ffffffffffffffffffffffffffffffffffffffff16611e52611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614611ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9f90614202565b60405180910390fd5b80600e60026101000a81548160ff0219169083151502179055508015600e60036101000a81548160ff02191690831515021790555050565b600c8054611eed9061464b565b80601f0160208091040260200160405190810160405280929190818152602001828054611f199061464b565b8015611f665780601f10611f3b57610100808354040283529160200191611f66565b820191906000526020600020905b815481529060010190602001808311611f4957829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f9f612b23565b73ffffffffffffffffffffffffffffffffffffffff16611fbd611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90614202565b60405180910390fd5b81600e60009054906101000a900460ff1615612064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205b906142e2565b60405180910390fd5b61084981612070610ef9565b61207a9190614480565b11156120bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b290614322565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212090614182565b60405180910390fd5b6121338284612fea565b505050565b612140612b23565b73ffffffffffffffffffffffffffffffffffffffff1661215e611f6e565b73ffffffffffffffffffffffffffffffffffffffff16146121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab90614202565b60405180910390fd5b80600d90805190602001906121ca929190613663565b5050565b6060600480546121dd9061464b565b80601f01602080910402602001604051908101604052809291908181526020018280546122099061464b565b80156122565780601f1061222b57610100808354040283529160200191612256565b820191906000526020600020905b81548152906001019060200180831161223957829003601f168201915b5050505050905090565b612268612b1b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122cd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006122da612b1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612387612b1b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123cc91906140e5565b60405180910390a35050565b600e60029054906101000a900460ff1681565b6123f3612b23565b73ffffffffffffffffffffffffffffffffffffffff16612411611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614612467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245e90614202565b60405180910390fd5b80600a908051906020019061247d929190613663565b5050565b60095481565b612492848484612b34565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124f4576124bd848484846130cc565b6124f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b601581565b612507612b23565b73ffffffffffffffffffffffffffffffffffffffff16612525611f6e565b73ffffffffffffffffffffffffffffffffffffffff161461257b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257290614202565b60405180910390fd5b8060098190555050565b6060612590826129ee565b6125cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c690614242565b60405180910390fd5b600e60019054906101000a900460ff161561261657600a6125ef8361322c565b604051602001612600929190614018565b60405160208183030381529060405290506126a4565b600c80546126239061464b565b80601f016020809104026020016040519081016040528092919081815260200182805461264f9061464b565b801561269c5780601f106126715761010080835404028352916020019161269c565b820191906000526020600020905b81548152906001019060200180831161267f57829003601f168201915b505050505090505b919050565b6126b1612b23565b73ffffffffffffffffffffffffffffffffffffffff166126cf611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614612725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271c90614202565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6060600d80546127519061464b565b80601f016020809104026020016040519081016040528092919081815260200182805461277d9061464b565b80156127ca5780601f1061279f576101008083540402835291602001916127ca565b820191906000526020600020905b8154815290600101906020018083116127ad57829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612870612b23565b73ffffffffffffffffffffffffffffffffffffffff1661288e611f6e565b73ffffffffffffffffffffffffffffffffffffffff16146128e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128db90614202565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294b90614142565b60405180910390fd5b61295d81613008565b50565b600a805461296d9061464b565b80601f01602080910402602001604051908101604052809291908181526020018280546129999061464b565b80156129e65780601f106129bb576101008083540402835291602001916129e6565b820191906000526020600020905b8154815290600101906020018083116129c957829003601f168201915b505050505081565b6000816129f9612b2b565b11158015612a08575060015482105b8015612a46575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080612a5c612b2b565b11612ae457600154811015612ae35760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612ae1575b6000811415612ad7576005600083600190039350838152602001908152602001600020549050612aac565b8092505050612b16565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b6000612b3f82612a4d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612ba6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612bc7612b1b565b73ffffffffffffffffffffffffffffffffffffffff161480612bf65750612bf585612bf0612b1b565b6127d4565b5b80612c3b5750612c04612b1b565b73ffffffffffffffffffffffffffffffffffffffff16612c2384610c3d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c74576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612cdb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ce8858585600161338d565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612de586613393565b1717600560008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612e6f576000600184019050600060056000838152602001908152602001600020541415612e6d576001548114612e6c578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ed7858585600161339d565b5050505050565b80341115612fa35760003373ffffffffffffffffffffffffffffffffffffffff168234612f0b9190614561565b604051612f1790614047565b60006040518083038185875af1925050503d8060008114612f54576040519150601f19603f3d011682016040523d82523d6000602084013e612f59565b606091505b5050905080612f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9490614162565b60405180910390fd5b50612fe7565b80341015612fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdd90614282565b60405180910390fd5b5b50565b6130048282604051806020016040528060008152506133a3565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130f2612b1b565b8786866040518563ffffffff1660e01b81526004016131149493929190614077565b602060405180830381600087803b15801561312e57600080fd5b505af192505050801561315f57506040513d601f19601f8201168201806040525081019061315c9190613ac8565b60015b6131d9573d806000811461318f576040519150601f19603f3d011682016040523d82523d6000602084013e613194565b606091505b506000815114156131d1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613274576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613388565b600082905060005b600082146132a657808061328f906146ae565b915050600a8261329f91906144d6565b915061327c565b60008167ffffffffffffffff8111156132c2576132c16147e4565b5b6040519080825280601f01601f1916602001820160405280156132f45781602001600182028036833780820191505090505b5090505b600085146133815760018261330d9190614561565b9150600a8561331c91906146f7565b60306133289190614480565b60f81b81838151811061333e5761333d6147b5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561337a91906144d6565b94506132f8565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613411576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561344c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613459600085838661338d565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16134be60018514613659565b901b60a042901b6134ce86613393565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146135d2575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461358260008784806001019550876130cc565b6135b8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106135135782600154146135cd57600080fd5b61363d565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106135d3575b816001819055505050613653600085838661339d565b50505050565b6000819050919050565b82805461366f9061464b565b90600052602060002090601f01602090048101928261369157600085556136d8565b82601f106136aa57805160ff19168380011785556136d8565b828001600101855582156136d8579182015b828111156136d75782518255916020019190600101906136bc565b5b5090506136e591906136e9565b5090565b5b808211156137025760008160009055506001016136ea565b5090565b600061371961371484614382565b61435d565b90508281526020810184848401111561373557613734614818565b5b613740848285614609565b509392505050565b600061375b613756846143b3565b61435d565b90508281526020810184848401111561377757613776614818565b5b613782848285614609565b509392505050565b60008135905061379981614b69565b92915050565b6000813590506137ae81614b80565b92915050565b6000813590506137c381614b97565b92915050565b6000815190506137d881614b97565b92915050565b600082601f8301126137f3576137f2614813565b5b8135613803848260208601613706565b91505092915050565b600082601f83011261382157613820614813565b5b8135613831848260208601613748565b91505092915050565b60008135905061384981614bae565b92915050565b60006020828403121561386557613864614822565b5b60006138738482850161378a565b91505092915050565b6000806040838503121561389357613892614822565b5b60006138a18582860161378a565b92505060206138b28582860161378a565b9150509250929050565b6000806000606084860312156138d5576138d4614822565b5b60006138e38682870161378a565b93505060206138f48682870161378a565b92505060406139058682870161383a565b9150509250925092565b6000806000806080858703121561392957613928614822565b5b60006139378782880161378a565b94505060206139488782880161378a565b93505060406139598782880161383a565b925050606085013567ffffffffffffffff81111561397a5761397961481d565b5b613986878288016137de565b91505092959194509250565b600080604083850312156139a9576139a8614822565b5b60006139b78582860161378a565b92505060206139c88582860161379f565b9150509250929050565b600080604083850312156139e9576139e8614822565b5b60006139f78582860161378a565b9250506020613a088582860161383a565b9150509250929050565b600060208284031215613a2857613a27614822565b5b6000613a368482850161379f565b91505092915050565b60008060408385031215613a5657613a55614822565b5b6000613a648582860161379f565b925050602083013567ffffffffffffffff811115613a8557613a8461481d565b5b613a918582860161380c565b9150509250929050565b600060208284031215613ab157613ab0614822565b5b6000613abf848285016137b4565b91505092915050565b600060208284031215613ade57613add614822565b5b6000613aec848285016137c9565b91505092915050565b600060208284031215613b0b57613b0a614822565b5b600082013567ffffffffffffffff811115613b2957613b2861481d565b5b613b358482850161380c565b91505092915050565b600060208284031215613b5457613b53614822565b5b6000613b628482850161383a565b91505092915050565b60008060408385031215613b8257613b81614822565b5b6000613b908582860161383a565b9250506020613ba18582860161378a565b9150509250929050565b6000613bb78383613ffa565b60208301905092915050565b613bcc81614595565b82525050565b6000613bdd82614409565b613be78185614437565b9350613bf2836143e4565b8060005b83811015613c23578151613c0a8882613bab565b9750613c158361442a565b925050600181019050613bf6565b5085935050505092915050565b613c39816145a7565b82525050565b6000613c4a82614414565b613c548185614448565b9350613c64818560208601614618565b613c6d81614827565b840191505092915050565b6000613c838261441f565b613c8d8185614464565b9350613c9d818560208601614618565b613ca681614827565b840191505092915050565b6000613cbc8261441f565b613cc68185614475565b9350613cd6818560208601614618565b80840191505092915050565b60008154613cef8161464b565b613cf98186614475565b94506001821660008114613d145760018114613d2557613d58565b60ff19831686528186019350613d58565b613d2e856143f4565b60005b83811015613d5057815481890152600182019150602081019050613d31565b838801955050505b50505092915050565b6000613d6e600b83614464565b9150613d7982614838565b602082019050919050565b6000613d91602683614464565b9150613d9c82614861565b604082019050919050565b6000613db4600f83614464565b9150613dbf826148b0565b602082019050919050565b6000613dd7601383614464565b9150613de2826148d9565b602082019050919050565b6000613dfa601383614464565b9150613e0582614902565b602082019050919050565b6000613e1d602083614464565b9150613e288261492b565b602082019050919050565b6000613e40601283614464565b9150613e4b82614954565b602082019050919050565b6000613e63600583614475565b9150613e6e8261497d565b600582019050919050565b6000613e86602083614464565b9150613e91826149a6565b602082019050919050565b6000613ea9601383614464565b9150613eb4826149cf565b602082019050919050565b6000613ecc602f83614464565b9150613ed7826149f8565b604082019050919050565b6000613eef601283614464565b9150613efa82614a47565b602082019050919050565b6000613f12601383614464565b9150613f1d82614a70565b602082019050919050565b6000613f35601483614464565b9150613f4082614a99565b602082019050919050565b6000613f58601183614464565b9150613f6382614ac2565b602082019050919050565b6000613f7b600083614459565b9150613f8682614aeb565b600082019050919050565b6000613f9e601283614464565b9150613fa982614aee565b602082019050919050565b6000613fc1601683614464565b9150613fcc82614b17565b602082019050919050565b6000613fe4601583614464565b9150613fef82614b40565b602082019050919050565b614003816145ff565b82525050565b614012816145ff565b82525050565b60006140248285613ce2565b91506140308284613cb1565b915061403b82613e56565b91508190509392505050565b600061405282613f6e565b9150819050919050565b60006020820190506140716000830184613bc3565b92915050565b600060808201905061408c6000830187613bc3565b6140996020830186613bc3565b6140a66040830185614009565b81810360608301526140b88184613c3f565b905095945050505050565b600060208201905081810360008301526140dd8184613bd2565b905092915050565b60006020820190506140fa6000830184613c30565b92915050565b6000602082019050818103600083015261411a8184613c78565b905092915050565b6000602082019050818103600083015261413b81613d61565b9050919050565b6000602082019050818103600083015261415b81613d84565b9050919050565b6000602082019050818103600083015261417b81613da7565b9050919050565b6000602082019050818103600083015261419b81613dca565b9050919050565b600060208201905081810360008301526141bb81613ded565b9050919050565b600060208201905081810360008301526141db81613e10565b9050919050565b600060208201905081810360008301526141fb81613e33565b9050919050565b6000602082019050818103600083015261421b81613e79565b9050919050565b6000602082019050818103600083015261423b81613e9c565b9050919050565b6000602082019050818103600083015261425b81613ebf565b9050919050565b6000602082019050818103600083015261427b81613ee2565b9050919050565b6000602082019050818103600083015261429b81613f05565b9050919050565b600060208201905081810360008301526142bb81613f28565b9050919050565b600060208201905081810360008301526142db81613f4b565b9050919050565b600060208201905081810360008301526142fb81613f91565b9050919050565b6000602082019050818103600083015261431b81613fb4565b9050919050565b6000602082019050818103600083015261433b81613fd7565b9050919050565b60006020820190506143576000830184614009565b92915050565b6000614367614378565b9050614373828261467d565b919050565b6000604051905090565b600067ffffffffffffffff82111561439d5761439c6147e4565b5b6143a682614827565b9050602081019050919050565b600067ffffffffffffffff8211156143ce576143cd6147e4565b5b6143d782614827565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061448b826145ff565b9150614496836145ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144cb576144ca614728565b5b828201905092915050565b60006144e1826145ff565b91506144ec836145ff565b9250826144fc576144fb614757565b5b828204905092915050565b6000614512826145ff565b915061451d836145ff565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561455657614555614728565b5b828202905092915050565b600061456c826145ff565b9150614577836145ff565b92508282101561458a57614589614728565b5b828203905092915050565b60006145a0826145df565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561463657808201518184015260208101905061461b565b83811115614645576000848401525b50505050565b6000600282049050600182168061466357607f821691505b6020821081141561467757614676614786565b5b50919050565b61468682614827565b810181811067ffffffffffffffff821117156146a5576146a46147e4565b5b80604052505050565b60006146b9826145ff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146ec576146eb614728565b5b600182019050919050565b6000614702826145ff565b915061470d836145ff565b92508261471d5761471c614757565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f6e6c7920312066726565000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b7f5465616d202872656d61696e696e6729207472616e73666572206661696c6564600082015250565b7f467265652073616c6520696e6163746976650000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f55736572206d61782066726565206c696d697400000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5468697320706861736520697320667265650000000000000000000000000000600082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b50565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4e6f7420656e6f756768206672656520737570706c7900000000000000000000600082015250565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b614b7281614595565b8114614b7d57600080fd5b50565b614b89816145a7565b8114614b9457600080fd5b50565b614ba0816145b3565b8114614bab57600080fd5b50565b614bb7816145ff565b8114614bc257600080fd5b5056fea26469706673582212207fee7ad4ad860392798d1bf230569844a3d600f0844829e48de851d9f583794164736f6c63430008070033697066733a2f2f516d664a5848524d6e384b4175426256734b6d7344465a543462586a6a486945454734546b5345486a686f52354e697066733a2f2f516d615456345279723751333951706e487a545a67364e36635164796e5a766f5762354a673767693959614747752f00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80636c0360eb11610175578063a22cb465116100dc578063c627525511610095578063e8a3d4851161006f578063e8a3d48514610a5d578063e985e9c514610a88578063f2fde38b14610ac5578063f7e8d6ea14610aee576102ae565b8063c6275255146109ce578063c87b56dd146109f7578063e0a8085314610a34576102ae565b8063a22cb465146108d2578063a4b41a15146108fb578063a811a37b14610926578063a945bf801461094f578063b88d4fde1461097a578063bceae77b146109a3576102ae565b806388dedc141161012e57806388dedc14146107d65780638cc54e7f146107ff5780638da5cb5b1461082a5780639007bd7214610855578063938e3d7b1461087e57806395d89b41146108a7576102ae565b80636c0360eb146106d557806370a0823114610700578063715018a61461073d5780637aeb7242146107545780637af3a1af146107915780637c928fe9146107ba576102ae565b80633ccfd60b1161021957806356b4f673116101d257806356b4f673146105b157806359927044146105dc5780635c975abb146106075780635ed3e25e146106325780636352211e1461065b57806364f6407614610698576102ae565b80633ccfd60b146104c457806342842e0e146104ce578063438b6300146104f75780634fdd43cb14610534578063518302271461055d57806355f804b314610588576102ae565b806323b872dd1161026b57806323b872dd146103d55780632c4b2334146103fe5780632db11544146104275780632fecf20b1461044357806332cb6b0c1461046e57806333bc1c5c14610499576102ae565b806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063095ea7b31461035857806316c38b3c1461038157806318160ddd146103aa575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d59190613a9b565b610b19565b6040516102e791906140e5565b60405180910390f35b3480156102fc57600080fd5b50610305610bab565b6040516103129190614100565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190613b3e565b610c3d565b60405161034f919061405c565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a91906139d2565b610cb9565b005b34801561038d57600080fd5b506103a860048036038101906103a39190613a12565b610e60565b005b3480156103b657600080fd5b506103bf610ef9565b6040516103cc9190614342565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f791906138bc565b610f10565b005b34801561040a57600080fd5b506104256004803603810190610420919061384f565b610f20565b005b610441600480360381019061043c9190613b3e565b610fe0565b005b34801561044f57600080fd5b50610458611296565b6040516104659190614342565b60405180910390f35b34801561047a57600080fd5b5061048361129b565b6040516104909190614342565b60405180910390f35b3480156104a557600080fd5b506104ae6112a1565b6040516104bb91906140e5565b60405180910390f35b6104cc6112b4565b005b3480156104da57600080fd5b506104f560048036038101906104f091906138bc565b611401565b005b34801561050357600080fd5b5061051e6004803603810190610519919061384f565b611421565b60405161052b91906140c3565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190613af5565b61152c565b005b34801561056957600080fd5b506105726115c2565b60405161057f91906140e5565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613af5565b6115d5565b005b3480156105bd57600080fd5b506105c661166b565b6040516105d39190614100565b60405180910390f35b3480156105e857600080fd5b506105f16116f9565b6040516105fe919061405c565b60405180910390f35b34801561061357600080fd5b5061061c61171f565b60405161062991906140e5565b60405180910390f35b34801561063e57600080fd5b5061065960048036038101906106549190613a3f565b611732565b005b34801561066757600080fd5b50610682600480360381019061067d9190613b3e565b6117e3565b60405161068f919061405c565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba919061384f565b6117f5565b6040516106cc91906140e5565b60405180910390f35b3480156106e157600080fd5b506106ea611815565b6040516106f79190614100565b60405180910390f35b34801561070c57600080fd5b506107276004803603810190610722919061384f565b6118a3565b6040516107349190614342565b60405180910390f35b34801561074957600080fd5b5061075261195c565b005b34801561076057600080fd5b5061077b6004803603810190610776919061384f565b6119e4565b6040516107889190614342565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190613a12565b6119fc565b005b6107d460048036038101906107cf9190613b3e565b611ab0565b005b3480156107e257600080fd5b506107fd60048036038101906107f89190613a12565b611e2c565b005b34801561080b57600080fd5b50610814611ee0565b6040516108219190614100565b60405180910390f35b34801561083657600080fd5b5061083f611f6e565b60405161084c919061405c565b60405180910390f35b34801561086157600080fd5b5061087c60048036038101906108779190613b6b565b611f97565b005b34801561088a57600080fd5b506108a560048036038101906108a09190613af5565b612138565b005b3480156108b357600080fd5b506108bc6121ce565b6040516108c99190614100565b60405180910390f35b3480156108de57600080fd5b506108f960048036038101906108f49190613992565b612260565b005b34801561090757600080fd5b506109106123d8565b60405161091d91906140e5565b60405180910390f35b34801561093257600080fd5b5061094d60048036038101906109489190613af5565b6123eb565b005b34801561095b57600080fd5b50610964612481565b6040516109719190614342565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c919061390f565b612487565b005b3480156109af57600080fd5b506109b86124fa565b6040516109c59190614342565b60405180910390f35b3480156109da57600080fd5b506109f560048036038101906109f09190613b3e565b6124ff565b005b348015610a0357600080fd5b50610a1e6004803603810190610a199190613b3e565b612585565b604051610a2b9190614100565b60405180910390f35b348015610a4057600080fd5b50610a5b6004803603810190610a569190613a12565b6126a9565b005b348015610a6957600080fd5b50610a72612742565b604051610a7f9190614100565b60405180910390f35b348015610a9457600080fd5b50610aaf6004803603810190610aaa919061387c565b6127d4565b604051610abc91906140e5565b60405180910390f35b348015610ad157600080fd5b50610aec6004803603810190610ae7919061384f565b612868565b005b348015610afa57600080fd5b50610b03612960565b604051610b109190614100565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610bba9061464b565b80601f0160208091040260200160405190810160405280929190818152602001828054610be69061464b565b8015610c335780601f10610c0857610100808354040283529160200191610c33565b820191906000526020600020905b815481529060010190602001808311610c1657829003601f168201915b5050505050905090565b6000610c48826129ee565b610c7e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cc482612a4d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d4b612b1b565b73ffffffffffffffffffffffffffffffffffffffff1614610dae57610d7781610d72612b1b565b6127d4565b610dad576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610e68612b23565b73ffffffffffffffffffffffffffffffffffffffff16610e86611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390614202565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610f03612b2b565b6002546001540303905090565b610f1b838383612b34565b505050565b610f28612b23565b73ffffffffffffffffffffffffffffffffffffffff16610f46611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390614202565b60405180910390fd5b80600e60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b80600e60009054906101000a900460ff1615611031576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611028906142e2565b60405180910390fd5b6108498161103d610ef9565b6110479190614480565b1115611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90614322565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90614182565b60405180910390fd5b600e60039054906101000a900460ff16611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c906142a2565b60405180910390fd5b6015821115611189576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611180906142c2565b60405180910390fd5b600060095490506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601584826111e29190614480565b1115611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a906141a2565b60405180910390fd5b61123784836112329190614507565b612ede565b83816112439190614480565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112903385612fea565b50505050565b601581565b61084981565b600e60039054906101000a900460ff1681565b6112bc612b23565b73ffffffffffffffffffffffffffffffffffffffff166112da611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614611330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132790614202565b60405180910390fd5b6000600e60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161137890614047565b60006040518083038185875af1925050503d80600081146113b5576040519150601f19603f3d011682016040523d82523d6000602084013e6113ba565b606091505b50509050806113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f5906141c2565b60405180910390fd5b50565b61141c83838360405180602001604052806000815250612487565b505050565b6060600061142e836118a3565b905060008167ffffffffffffffff81111561144c5761144b6147e4565b5b60405190808252806020026020018201604052801561147a5781602001602082028036833780820191505090505b50905060006001905060005b838110801561149757506108498211155b156115205760006114a7836117e3565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561150c57828483815181106114f1576114f06147b5565b5b6020026020010181815250508180611508906146ae565b9250505b8280611517906146ae565b93505050611486565b82945050505050919050565b611534612b23565b73ffffffffffffffffffffffffffffffffffffffff16611552611f6e565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90614202565b60405180910390fd5b80600c90805190602001906115be929190613663565b5050565b600e60019054906101000a900460ff1681565b6115dd612b23565b73ffffffffffffffffffffffffffffffffffffffff166115fb611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614611651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164890614202565b60405180910390fd5b80600a9080519060200190611667929190613663565b5050565b600d80546116789061464b565b80601f01602080910402602001604051908101604052809291908181526020018280546116a49061464b565b80156116f15780601f106116c6576101008083540402835291602001916116f1565b820191906000526020600020905b8154815290600101906020018083116116d457829003601f168201915b505050505081565b600e60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900460ff1681565b61173a612b23565b73ffffffffffffffffffffffffffffffffffffffff16611758611f6e565b73ffffffffffffffffffffffffffffffffffffffff16146117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a590614202565b60405180910390fd5b81600e60016101000a81548160ff02191690831515021790555080600a90805190602001906117de929190613663565b505050565b60006117ee82612a4d565b9050919050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600b80546118229061464b565b80601f016020809104026020016040519081016040528092919081815260200182805461184e9061464b565b801561189b5780601f106118705761010080835404028352916020019161189b565b820191906000526020600020905b81548152906001019060200180831161187e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561190b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611964612b23565b73ffffffffffffffffffffffffffffffffffffffff16611982611f6e565b73ffffffffffffffffffffffffffffffffffffffff16146119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90614202565b60405180910390fd5b6119e26000613008565b565b60106020528060005260406000206000915090505481565b611a04612b23565b73ffffffffffffffffffffffffffffffffffffffff16611a22611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f90614202565b60405180910390fd5b80600e60036101000a81548160ff0219169083151502179055508015600e60026101000a81548160ff02191690831515021790555050565b80600e60009054906101000a900460ff1615611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af8906142e2565b60405180910390fd5b61084981611b0d610ef9565b611b179190614480565b1115611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f90614322565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbd90614182565b60405180910390fd5b600e60029054906101000a900460ff16611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c906141e2565b60405180910390fd5b60003414611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f90614262565b60405180910390fd5b60018214611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9290614122565b60405180910390fd5b600082611ca6610ef9565b611cb09190614480565b905061014b811115611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90614302565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b90614222565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061014b811415611e1d576000600e60026101000a81548160ff0219169083151502179055506001600e60036101000a81548160ff0219169083151502179055505b611e273384612fea565b505050565b611e34612b23565b73ffffffffffffffffffffffffffffffffffffffff16611e52611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614611ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9f90614202565b60405180910390fd5b80600e60026101000a81548160ff0219169083151502179055508015600e60036101000a81548160ff02191690831515021790555050565b600c8054611eed9061464b565b80601f0160208091040260200160405190810160405280929190818152602001828054611f199061464b565b8015611f665780601f10611f3b57610100808354040283529160200191611f66565b820191906000526020600020905b815481529060010190602001808311611f4957829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f9f612b23565b73ffffffffffffffffffffffffffffffffffffffff16611fbd611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90614202565b60405180910390fd5b81600e60009054906101000a900460ff1615612064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205b906142e2565b60405180910390fd5b61084981612070610ef9565b61207a9190614480565b11156120bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b290614322565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212090614182565b60405180910390fd5b6121338284612fea565b505050565b612140612b23565b73ffffffffffffffffffffffffffffffffffffffff1661215e611f6e565b73ffffffffffffffffffffffffffffffffffffffff16146121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab90614202565b60405180910390fd5b80600d90805190602001906121ca929190613663565b5050565b6060600480546121dd9061464b565b80601f01602080910402602001604051908101604052809291908181526020018280546122099061464b565b80156122565780601f1061222b57610100808354040283529160200191612256565b820191906000526020600020905b81548152906001019060200180831161223957829003601f168201915b5050505050905090565b612268612b1b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122cd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006122da612b1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612387612b1b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123cc91906140e5565b60405180910390a35050565b600e60029054906101000a900460ff1681565b6123f3612b23565b73ffffffffffffffffffffffffffffffffffffffff16612411611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614612467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245e90614202565b60405180910390fd5b80600a908051906020019061247d929190613663565b5050565b60095481565b612492848484612b34565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124f4576124bd848484846130cc565b6124f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b601581565b612507612b23565b73ffffffffffffffffffffffffffffffffffffffff16612525611f6e565b73ffffffffffffffffffffffffffffffffffffffff161461257b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257290614202565b60405180910390fd5b8060098190555050565b6060612590826129ee565b6125cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c690614242565b60405180910390fd5b600e60019054906101000a900460ff161561261657600a6125ef8361322c565b604051602001612600929190614018565b60405160208183030381529060405290506126a4565b600c80546126239061464b565b80601f016020809104026020016040519081016040528092919081815260200182805461264f9061464b565b801561269c5780601f106126715761010080835404028352916020019161269c565b820191906000526020600020905b81548152906001019060200180831161267f57829003601f168201915b505050505090505b919050565b6126b1612b23565b73ffffffffffffffffffffffffffffffffffffffff166126cf611f6e565b73ffffffffffffffffffffffffffffffffffffffff1614612725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271c90614202565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6060600d80546127519061464b565b80601f016020809104026020016040519081016040528092919081815260200182805461277d9061464b565b80156127ca5780601f1061279f576101008083540402835291602001916127ca565b820191906000526020600020905b8154815290600101906020018083116127ad57829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612870612b23565b73ffffffffffffffffffffffffffffffffffffffff1661288e611f6e565b73ffffffffffffffffffffffffffffffffffffffff16146128e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128db90614202565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294b90614142565b60405180910390fd5b61295d81613008565b50565b600a805461296d9061464b565b80601f01602080910402602001604051908101604052809291908181526020018280546129999061464b565b80156129e65780601f106129bb576101008083540402835291602001916129e6565b820191906000526020600020905b8154815290600101906020018083116129c957829003601f168201915b505050505081565b6000816129f9612b2b565b11158015612a08575060015482105b8015612a46575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080612a5c612b2b565b11612ae457600154811015612ae35760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612ae1575b6000811415612ad7576005600083600190039350838152602001908152602001600020549050612aac565b8092505050612b16565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b6000612b3f82612a4d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612ba6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612bc7612b1b565b73ffffffffffffffffffffffffffffffffffffffff161480612bf65750612bf585612bf0612b1b565b6127d4565b5b80612c3b5750612c04612b1b565b73ffffffffffffffffffffffffffffffffffffffff16612c2384610c3d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c74576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612cdb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ce8858585600161338d565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612de586613393565b1717600560008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612e6f576000600184019050600060056000838152602001908152602001600020541415612e6d576001548114612e6c578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ed7858585600161339d565b5050505050565b80341115612fa35760003373ffffffffffffffffffffffffffffffffffffffff168234612f0b9190614561565b604051612f1790614047565b60006040518083038185875af1925050503d8060008114612f54576040519150601f19603f3d011682016040523d82523d6000602084013e612f59565b606091505b5050905080612f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9490614162565b60405180910390fd5b50612fe7565b80341015612fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdd90614282565b60405180910390fd5b5b50565b6130048282604051806020016040528060008152506133a3565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130f2612b1b565b8786866040518563ffffffff1660e01b81526004016131149493929190614077565b602060405180830381600087803b15801561312e57600080fd5b505af192505050801561315f57506040513d601f19601f8201168201806040525081019061315c9190613ac8565b60015b6131d9573d806000811461318f576040519150601f19603f3d011682016040523d82523d6000602084013e613194565b606091505b506000815114156131d1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613274576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613388565b600082905060005b600082146132a657808061328f906146ae565b915050600a8261329f91906144d6565b915061327c565b60008167ffffffffffffffff8111156132c2576132c16147e4565b5b6040519080825280601f01601f1916602001820160405280156132f45781602001600182028036833780820191505090505b5090505b600085146133815760018261330d9190614561565b9150600a8561331c91906146f7565b60306133289190614480565b60f81b81838151811061333e5761333d6147b5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561337a91906144d6565b94506132f8565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613411576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561344c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613459600085838661338d565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16134be60018514613659565b901b60a042901b6134ce86613393565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146135d2575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461358260008784806001019550876130cc565b6135b8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106135135782600154146135cd57600080fd5b61363d565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106135d3575b816001819055505050613653600085838661339d565b50505050565b6000819050919050565b82805461366f9061464b565b90600052602060002090601f01602090048101928261369157600085556136d8565b82601f106136aa57805160ff19168380011785556136d8565b828001600101855582156136d8579182015b828111156136d75782518255916020019190600101906136bc565b5b5090506136e591906136e9565b5090565b5b808211156137025760008160009055506001016136ea565b5090565b600061371961371484614382565b61435d565b90508281526020810184848401111561373557613734614818565b5b613740848285614609565b509392505050565b600061375b613756846143b3565b61435d565b90508281526020810184848401111561377757613776614818565b5b613782848285614609565b509392505050565b60008135905061379981614b69565b92915050565b6000813590506137ae81614b80565b92915050565b6000813590506137c381614b97565b92915050565b6000815190506137d881614b97565b92915050565b600082601f8301126137f3576137f2614813565b5b8135613803848260208601613706565b91505092915050565b600082601f83011261382157613820614813565b5b8135613831848260208601613748565b91505092915050565b60008135905061384981614bae565b92915050565b60006020828403121561386557613864614822565b5b60006138738482850161378a565b91505092915050565b6000806040838503121561389357613892614822565b5b60006138a18582860161378a565b92505060206138b28582860161378a565b9150509250929050565b6000806000606084860312156138d5576138d4614822565b5b60006138e38682870161378a565b93505060206138f48682870161378a565b92505060406139058682870161383a565b9150509250925092565b6000806000806080858703121561392957613928614822565b5b60006139378782880161378a565b94505060206139488782880161378a565b93505060406139598782880161383a565b925050606085013567ffffffffffffffff81111561397a5761397961481d565b5b613986878288016137de565b91505092959194509250565b600080604083850312156139a9576139a8614822565b5b60006139b78582860161378a565b92505060206139c88582860161379f565b9150509250929050565b600080604083850312156139e9576139e8614822565b5b60006139f78582860161378a565b9250506020613a088582860161383a565b9150509250929050565b600060208284031215613a2857613a27614822565b5b6000613a368482850161379f565b91505092915050565b60008060408385031215613a5657613a55614822565b5b6000613a648582860161379f565b925050602083013567ffffffffffffffff811115613a8557613a8461481d565b5b613a918582860161380c565b9150509250929050565b600060208284031215613ab157613ab0614822565b5b6000613abf848285016137b4565b91505092915050565b600060208284031215613ade57613add614822565b5b6000613aec848285016137c9565b91505092915050565b600060208284031215613b0b57613b0a614822565b5b600082013567ffffffffffffffff811115613b2957613b2861481d565b5b613b358482850161380c565b91505092915050565b600060208284031215613b5457613b53614822565b5b6000613b628482850161383a565b91505092915050565b60008060408385031215613b8257613b81614822565b5b6000613b908582860161383a565b9250506020613ba18582860161378a565b9150509250929050565b6000613bb78383613ffa565b60208301905092915050565b613bcc81614595565b82525050565b6000613bdd82614409565b613be78185614437565b9350613bf2836143e4565b8060005b83811015613c23578151613c0a8882613bab565b9750613c158361442a565b925050600181019050613bf6565b5085935050505092915050565b613c39816145a7565b82525050565b6000613c4a82614414565b613c548185614448565b9350613c64818560208601614618565b613c6d81614827565b840191505092915050565b6000613c838261441f565b613c8d8185614464565b9350613c9d818560208601614618565b613ca681614827565b840191505092915050565b6000613cbc8261441f565b613cc68185614475565b9350613cd6818560208601614618565b80840191505092915050565b60008154613cef8161464b565b613cf98186614475565b94506001821660008114613d145760018114613d2557613d58565b60ff19831686528186019350613d58565b613d2e856143f4565b60005b83811015613d5057815481890152600182019150602081019050613d31565b838801955050505b50505092915050565b6000613d6e600b83614464565b9150613d7982614838565b602082019050919050565b6000613d91602683614464565b9150613d9c82614861565b604082019050919050565b6000613db4600f83614464565b9150613dbf826148b0565b602082019050919050565b6000613dd7601383614464565b9150613de2826148d9565b602082019050919050565b6000613dfa601383614464565b9150613e0582614902565b602082019050919050565b6000613e1d602083614464565b9150613e288261492b565b602082019050919050565b6000613e40601283614464565b9150613e4b82614954565b602082019050919050565b6000613e63600583614475565b9150613e6e8261497d565b600582019050919050565b6000613e86602083614464565b9150613e91826149a6565b602082019050919050565b6000613ea9601383614464565b9150613eb4826149cf565b602082019050919050565b6000613ecc602f83614464565b9150613ed7826149f8565b604082019050919050565b6000613eef601283614464565b9150613efa82614a47565b602082019050919050565b6000613f12601383614464565b9150613f1d82614a70565b602082019050919050565b6000613f35601483614464565b9150613f4082614a99565b602082019050919050565b6000613f58601183614464565b9150613f6382614ac2565b602082019050919050565b6000613f7b600083614459565b9150613f8682614aeb565b600082019050919050565b6000613f9e601283614464565b9150613fa982614aee565b602082019050919050565b6000613fc1601683614464565b9150613fcc82614b17565b602082019050919050565b6000613fe4601583614464565b9150613fef82614b40565b602082019050919050565b614003816145ff565b82525050565b614012816145ff565b82525050565b60006140248285613ce2565b91506140308284613cb1565b915061403b82613e56565b91508190509392505050565b600061405282613f6e565b9150819050919050565b60006020820190506140716000830184613bc3565b92915050565b600060808201905061408c6000830187613bc3565b6140996020830186613bc3565b6140a66040830185614009565b81810360608301526140b88184613c3f565b905095945050505050565b600060208201905081810360008301526140dd8184613bd2565b905092915050565b60006020820190506140fa6000830184613c30565b92915050565b6000602082019050818103600083015261411a8184613c78565b905092915050565b6000602082019050818103600083015261413b81613d61565b9050919050565b6000602082019050818103600083015261415b81613d84565b9050919050565b6000602082019050818103600083015261417b81613da7565b9050919050565b6000602082019050818103600083015261419b81613dca565b9050919050565b600060208201905081810360008301526141bb81613ded565b9050919050565b600060208201905081810360008301526141db81613e10565b9050919050565b600060208201905081810360008301526141fb81613e33565b9050919050565b6000602082019050818103600083015261421b81613e79565b9050919050565b6000602082019050818103600083015261423b81613e9c565b9050919050565b6000602082019050818103600083015261425b81613ebf565b9050919050565b6000602082019050818103600083015261427b81613ee2565b9050919050565b6000602082019050818103600083015261429b81613f05565b9050919050565b600060208201905081810360008301526142bb81613f28565b9050919050565b600060208201905081810360008301526142db81613f4b565b9050919050565b600060208201905081810360008301526142fb81613f91565b9050919050565b6000602082019050818103600083015261431b81613fb4565b9050919050565b6000602082019050818103600083015261433b81613fd7565b9050919050565b60006020820190506143576000830184614009565b92915050565b6000614367614378565b9050614373828261467d565b919050565b6000604051905090565b600067ffffffffffffffff82111561439d5761439c6147e4565b5b6143a682614827565b9050602081019050919050565b600067ffffffffffffffff8211156143ce576143cd6147e4565b5b6143d782614827565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061448b826145ff565b9150614496836145ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144cb576144ca614728565b5b828201905092915050565b60006144e1826145ff565b91506144ec836145ff565b9250826144fc576144fb614757565b5b828204905092915050565b6000614512826145ff565b915061451d836145ff565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561455657614555614728565b5b828202905092915050565b600061456c826145ff565b9150614577836145ff565b92508282101561458a57614589614728565b5b828203905092915050565b60006145a0826145df565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561463657808201518184015260208101905061461b565b83811115614645576000848401525b50505050565b6000600282049050600182168061466357607f821691505b6020821081141561467757614676614786565b5b50919050565b61468682614827565b810181811067ffffffffffffffff821117156146a5576146a46147e4565b5b80604052505050565b60006146b9826145ff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146ec576146eb614728565b5b600182019050919050565b6000614702826145ff565b915061470d836145ff565b92508261471d5761471c614757565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f6e6c7920312066726565000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b7f5465616d202872656d61696e696e6729207472616e73666572206661696c6564600082015250565b7f467265652073616c6520696e6163746976650000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f55736572206d61782066726565206c696d697400000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5468697320706861736520697320667265650000000000000000000000000000600082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b50565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4e6f7420656e6f756768206672656520737570706c7900000000000000000000600082015250565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b614b7281614595565b8114614b7d57600080fd5b50565b614b89816145a7565b8114614b9457600080fd5b50565b614ba0816145b3565b8114614bab57600080fd5b50565b614bb7816145ff565b8114614bc257600080fd5b5056fea26469706673582212207fee7ad4ad860392798d1bf230569844a3d600f0844829e48de851d9f583794164736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44001:6542:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18620:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23633:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25701:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25161:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49053:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17674:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26587:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49607:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46245:571;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44151:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44051:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44718:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49726:240;;;:::i;:::-;;26828:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46845:689;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48461:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44648:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48351:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44521:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44757:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44615:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48599:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23422:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44836:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44307:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19299:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;44889:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49349:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45590:647;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49478:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44431:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50110:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48823:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23802:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25977:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44684:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49239:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44104:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27084:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44208:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48235:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47542:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49144:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48108:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26356:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44263:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18620:615;18705:4;19020:10;19005:25;;:11;:25;;;;:102;;;;19097:10;19082:25;;:11;:25;;;;19005:102;:179;;;;19174:10;19159:25;;:11;:25;;;;19005:179;18985:199;;18620:615;;;:::o;23633:100::-;23687:13;23720:5;23713:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23633:100;:::o;25701:204::-;25769:7;25794:16;25802:7;25794;:16::i;:::-;25789:64;;25819:34;;;;;;;;;;;;;;25789:64;25873:15;:24;25889:7;25873:24;;;;;;;;;;;;;;;;;;;;;25866:31;;25701:204;;;:::o;25161:474::-;25234:13;25266:27;25285:7;25266:18;:27::i;:::-;25234:61;;25316:5;25310:11;;:2;:11;;;25306:48;;;25330:24;;;;;;;;;;;;;;25306:48;25394:5;25371:28;;:19;:17;:19::i;:::-;:28;;;25367:175;;25419:44;25436:5;25443:19;:17;:19::i;:::-;25419:16;:44::i;:::-;25414:128;;25491:35;;;;;;;;;;;;;;25414:128;25367:175;25581:2;25554:15;:24;25570:7;25554:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25619:7;25615:2;25599:28;;25608:5;25599:28;;;;;;;;;;;;25223:412;25161:474;;:::o;49053:83::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49122:6:::1;49113;;:15;;;;;;;;;;;;;;;;;;49053:83:::0;:::o;17674:315::-;17727:7;17955:15;:13;:15::i;:::-;17940:12;;17924:13;;:28;:46;17917:53;;17674:315;:::o;26587:170::-;26721:28;26731:4;26737:2;26741:7;26721:9;:28::i;:::-;26587:170;;;:::o;49607:111::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49699:11:::1;49686:10;;:24;;;;;;;;;;;;;;;;;;49607:111:::0;:::o;46245:571::-;46315:8;50342:6;;;;;;;;;;;50341:7;50333:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;44088:4;50406:8;50390:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;50382:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;50486:10;50473:23;;:9;:23;;;50465:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;46344:10:::1;;;;;;;;;;;46336:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;44199:2;46398:8;:33;;46390:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46466:13;46482:11;;46466:27;;46504:17;46524:12;:24;46537:10;46524:24;;;;;;;;;;;;;;;;46504:44;;44252:2;46597:8;46585:9;:20;;;;:::i;:::-;:41;;46577:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46671:31;46693:8;46685:5;:16;;;;:::i;:::-;46671:13;:31::i;:::-;46755:8;46743:9;:20;;;;:::i;:::-;46715:12;:24;46728:10;46715:24;;;;;;;;;;;;;;;:49;;;;46777:31;46787:10;46799:8;46777:9;:31::i;:::-;46325:491;;46245:571:::0;;:::o;44151:50::-;44199:2;44151:50;:::o;44051:41::-;44088:4;44051:41;:::o;44718:30::-;;;;;;;;;;;;;:::o;49726:240::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49791:9:::1;49814:10;;;;;;;;;;;49806:24;;49852:21;49806:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49790:98;;;49907:4;49899:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;49773:193;49726:240::o:0;26828:185::-;26966:39;26983:4;26989:2;26993:7;26966:39;;;;;;;;;;;;:16;:39::i;:::-;26828:185;;;:::o;46845:689::-;46905:16;46939:23;46965:17;46975:6;46965:9;:17::i;:::-;46939:43;;46993:30;47040:15;47026:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46993:63;;47067:22;47092:1;47067:26;;47104:23;47144:350;47169:15;47151;:33;:65;;;;;44088:4;47188:14;:28;;47151:65;47144:350;;;47233:25;47261:23;47269:14;47261:7;:23::i;:::-;47233:51;;47326:6;47305:27;;:17;:27;;;47301:153;;;47386:14;47353:13;47367:15;47353:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;47421:17;;;;;:::i;:::-;;;;47301:153;47466:16;;;;;:::i;:::-;;;;47218:276;47144:350;;;47513:13;47506:20;;;;;;46845:689;;;:::o;48461:130::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48565:18:::1;48553:9;:30;;;;;;;;;;;;:::i;:::-;;48461:130:::0;:::o;44648:27::-;;;;;;;;;;;;;:::o;48351:102::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48437:8:::1;48423:11;:22;;;;;;;;;;;;:::i;:::-;;48351:102:::0;:::o;44521:85::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44757:70::-;;;;;;;;;;;;;:::o;44615:26::-;;;;;;;;;;;;;:::o;48599:155::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48704:9:::1;48693:8;;:20;;;;;;;;;;;;;;;;;;48738:8;48724:11;:22;;;;;;;;;;;;:::i;:::-;;48599:155:::0;;:::o;23422:144::-;23486:7;23529:27;23548:7;23529:18;:27::i;:::-;23506:52;;23422:144;;;:::o;44836:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;44307:81::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19299:224::-;19363:7;19404:1;19387:19;;:5;:19;;;19383:60;;;19415:28;;;;;;;;;;;;;;19383:60;14638:13;19461:18;:25;19480:5;19461:25;;;;;;;;;;;;;;;;:54;19454:61;;19299:224;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;44889:47::-;;;;;;;;;;;;;;;;;:::o;49349:123::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49429:6:::1;49416:10;;:19;;;;;;;;;;;;;;;;;;49458:6;49457:7;49446:8;;:18;;;;;;;;;;;;;;;;;;49349:123:::0;:::o;45590:647::-;45658:8;50342:6;;;;;;;;;;;50341:7;50333:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;44088:4;50406:8;50390:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;50382:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;50486:10;50473:23;;:9;:23;;;50465:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;45687:8:::1;;;;;;;;;;;45679:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;45750:1;45737:9;:14;45729:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;45805:1;45793:8;:13;45785:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;45835:17;45871:8;45855:13;:11;:13::i;:::-;:24;;;;:::i;:::-;45835:44;;45921:3;45908:9;:16;;45900:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;45973:14;:26;45988:10;45973:26;;;;;;;;;;;;;;;;;;;;;;;;;45972:27;45964:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;46073:4;46044:14;:26;46059:10;46044:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;46106:3;46093:9;:16;46090:96;;;46137:5;46126:8;;:16;;;;;;;;;;;;;;;;;;46170:4;46157:10;;:17;;;;;;;;;;;;;;;;;;46090:96;46198:31;46208:10;46220:8;46198:9;:31::i;:::-;45668:569;45590:647:::0;;:::o;49478:121::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49554:6:::1;49543:8;;:17;;;;;;;;;;;;;;;;;;49585:6;49584:7;49571:10;;:20;;;;;;;;;;;;;;;;;;49478:121:::0;:::o;44431:81::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;50110:146::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50198:8:::1;50342:6;;;;;;;;;;;50341:7;50333:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;44088:4;50406:8;50390:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;50382:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;50486:10;50473:23;;:9;:23;;;50465:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;50219:29:::2;50229:8;50239;50219:9;:29::i;:::-;4370:1:::1;50110:146:::0;;:::o;48823:115::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48918:12:::1;48903;:27;;;;;;;;;;;;:::i;:::-;;48823:115:::0;:::o;23802:104::-;23858:13;23891:7;23884:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23802:104;:::o;25977:308::-;26088:19;:17;:19::i;:::-;26076:31;;:8;:31;;;26072:61;;;26116:17;;;;;;;;;;;;;;26072:61;26198:8;26146:18;:39;26165:19;:17;:19::i;:::-;26146:39;;;;;;;;;;;;;;;:49;26186:8;26146:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26258:8;26222:55;;26237:19;:17;:19::i;:::-;26222:55;;;26268:8;26222:55;;;;;;:::i;:::-;;;;;;;;25977:308;;:::o;44684:27::-;;;;;;;;;;;;;:::o;49239:102::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49326:7:::1;49312:11;:21;;;;;;;;;;;;:::i;:::-;;49239:102:::0;:::o;44104:38::-;;;;:::o;27084:396::-;27251:28;27261:4;27267:2;27271:7;27251:9;:28::i;:::-;27312:1;27294:2;:14;;;:19;27290:183;;27333:56;27364:4;27370:2;27374:7;27383:5;27333:30;:56::i;:::-;27328:145;;27417:40;;;;;;;;;;;;;;27328:145;27290:183;27084:396;;;;:::o;44208:46::-;44252:2;44208:46;:::o;48235:108::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48323:12:::1;48309:11;:26;;;;48235:108:::0;:::o;47542:379::-;47608:13;47644:17;47652:8;47644:7;:17::i;:::-;47636:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;47738:8;;;;;;;;;;;47734:180;;;47794:11;47807:26;47824:8;47807:16;:26::i;:::-;47777:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47763:81;;;;47734:180;47893:9;47886:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47542:379;;;;:::o;49144:87::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49217:6:::1;49206:8;;:17;;;;;;;;;;;;;;;;;;49144:87:::0;:::o;48108:97::-;48152:13;48185:12;48178:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48108:97;:::o;26356:164::-;26453:4;26477:18;:25;26496:5;26477:25;;;;;;;;;;;;;;;:35;26503:8;26477:35;;;;;;;;;;;;;;;;;;;;;;;;;26470:42;;26356:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;44263:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27735:273::-;27792:4;27848:7;27829:15;:13;:15::i;:::-;:26;;:66;;;;;27882:13;;27872:7;:23;27829:66;:152;;;;;27980:1;15408:8;27933:17;:26;27951:7;27933:26;;;;;;;;;;;;:43;:48;27829:152;27809:172;;27735:273;;;:::o;20937:1129::-;21004:7;21024:12;21039:7;21024:22;;21107:4;21088:15;:13;:15::i;:::-;:23;21084:915;;21141:13;;21134:4;:20;21130:869;;;21179:14;21196:17;:23;21214:4;21196:23;;;;;;;;;;;;21179:40;;21312:1;15408:8;21285:6;:23;:28;21281:699;;;21804:113;21821:1;21811:6;:11;21804:113;;;21864:17;:25;21882:6;;;;;;;21864:25;;;;;;;;;;;;21855:34;;21804:113;;;21950:6;21943:13;;;;;;21281:699;21156:843;21130:869;21084:915;22027:31;;;;;;;;;;;;;;20937:1129;;;;:::o;41717:105::-;41777:7;41804:10;41797:17;;41717:105;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;45087:101::-;45152:7;45179:1;45172:8;;45087:101;:::o;32974:2515::-;33089:27;33119;33138:7;33119:18;:27::i;:::-;33089:57;;33204:4;33163:45;;33179:19;33163:45;;;33159:86;;33217:28;;;;;;;;;;;;;;33159:86;33258:22;33307:4;33284:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;33328:43;33345:4;33351:19;:17;:19::i;:::-;33328:16;:43::i;:::-;33284:87;:147;;;;33412:19;:17;:19::i;:::-;33388:43;;:20;33400:7;33388:11;:20::i;:::-;:43;;;33284:147;33258:174;;33450:17;33445:66;;33476:35;;;;;;;;;;;;;;33445:66;33540:1;33526:16;;:2;:16;;;33522:52;;;33551:23;;;;;;;;;;;;;;33522:52;33587:43;33609:4;33615:2;33619:7;33628:1;33587:21;:43::i;:::-;33703:15;:24;33719:7;33703:24;;;;;;;;;;;;33696:31;;;;;;;;;;;34095:18;:24;34114:4;34095:24;;;;;;;;;;;;;;;;34093:26;;;;;;;;;;;;34164:18;:22;34183:2;34164:22;;;;;;;;;;;;;;;;34162:24;;;;;;;;;;;15690:8;15292:3;34545:15;:41;;34503:21;34521:2;34503:17;:21::i;:::-;:84;:128;34457:17;:26;34475:7;34457:26;;;;;;;;;;;:174;;;;34801:1;15690:8;34751:19;:46;:51;34747:626;;;34823:19;34855:1;34845:7;:11;34823:33;;35012:1;34978:17;:30;34996:11;34978:30;;;;;;;;;;;;:35;34974:384;;;35116:13;;35101:11;:28;35097:242;;35296:19;35263:17;:30;35281:11;35263:30;;;;;;;;;;;:52;;;;35097:242;34974:384;34804:569;34747:626;35420:7;35416:2;35401:27;;35410:4;35401:27;;;;;;;;;;;;35439:42;35460:4;35466:2;35470:7;35479:1;35439:20;:42::i;:::-;33078:2411;;32974:2515;;;:::o;45196:359::-;45269:5;45257:9;:17;45253:295;;;45292:9;45315:10;45307:24;;45370:5;45358:9;:17;;;;:::i;:::-;45307:88;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45291:104;;;45418:4;45410:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;45276:178;45253:295;;;45485:5;45473:9;:17;45469:79;;;45507:29;;;;;;;;;;:::i;:::-;;;;;;;;45469:79;45253:295;45196:359;:::o;28092:104::-;28161:27;28171:2;28175:8;28161:27;;;;;;;;;;;;:9;:27::i;:::-;28092:104;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;39186:716::-;39349:4;39395:2;39370:45;;;39416:19;:17;:19::i;:::-;39437:4;39443:7;39452:5;39370:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39366:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39670:1;39653:6;:13;:18;39649:235;;;39699:40;;;;;;;;;;;;;;39649:235;39842:6;39836:13;39827:6;39823:2;39819:15;39812:38;39366:529;39539:54;;;39529:64;;;:6;:64;;;;39522:71;;;39186:716;;;;;;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;40550:159::-;;;;;:::o;24722:148::-;24786:14;24847:5;24837:15;;24722:148;;;:::o;41368:158::-;;;;;:::o;28569:2236::-;28692:20;28715:13;;28692:36;;28757:1;28743:16;;:2;:16;;;28739:48;;;28768:19;;;;;;;;;;;;;;28739:48;28814:1;28802:8;:13;28798:44;;;28824:18;;;;;;;;;;;;;;28798:44;28855:61;28885:1;28889:2;28893:12;28907:8;28855:21;:61::i;:::-;29459:1;14775:2;29430:1;:25;;29429:31;29417:8;:44;29391:18;:22;29410:2;29391:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;15555:3;29860:29;29887:1;29875:8;:13;29860:14;:29::i;:::-;:56;;15292:3;29797:15;:41;;29755:21;29773:2;29755:17;:21::i;:::-;:84;:162;29704:17;:31;29722:12;29704:31;;;;;;;;;;;:213;;;;29934:20;29957:12;29934:35;;29984:11;30013:8;29998:12;:23;29984:37;;30060:1;30042:2;:14;;;:19;30038:635;;30082:313;30138:12;30134:2;30113:38;;30130:1;30113:38;;;;;;;;;;;;30179:69;30218:1;30222:2;30226:14;;;;;;30242:5;30179:30;:69::i;:::-;30174:174;;30284:40;;;;;;;;;;;;;;30174:174;30390:3;30375:12;:18;30082:313;;30476:12;30459:13;;:29;30455:43;;30490:8;;;30455:43;30038:635;;;30539:119;30595:14;;;;;;30591:2;30570:40;;30587:1;30570:40;;;;;;;;;;;;30653:3;30638:12;:18;30539:119;;30038:635;30703:12;30687:13;:28;;;;29168:1559;;30737:60;30766:1;30770:2;30774:12;30788:8;30737:20;:60::i;:::-;28681:2124;28569:2236;;;:::o;24957:142::-;25015:14;25076:5;25066:15;;24957:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:648::-;6024:6;6032;6081:2;6069:9;6060:7;6056:23;6052:32;6049:119;;;6087:79;;:::i;:::-;6049:119;6207:1;6232:50;6274:7;6265:6;6254:9;6250:22;6232:50;:::i;:::-;6222:60;;6178:114;6359:2;6348:9;6344:18;6331:32;6390:18;6382:6;6379:30;6376:117;;;6412:79;;:::i;:::-;6376:117;6517:63;6572:7;6563:6;6552:9;6548:22;6517:63;:::i;:::-;6507:73;;6302:288;5949:648;;;;;:::o;6603:327::-;6661:6;6710:2;6698:9;6689:7;6685:23;6681:32;6678:119;;;6716:79;;:::i;:::-;6678:119;6836:1;6861:52;6905:7;6896:6;6885:9;6881:22;6861:52;:::i;:::-;6851:62;;6807:116;6603:327;;;;:::o;6936:349::-;7005:6;7054:2;7042:9;7033:7;7029:23;7025:32;7022:119;;;7060:79;;:::i;:::-;7022:119;7180:1;7205:63;7260:7;7251:6;7240:9;7236:22;7205:63;:::i;:::-;7195:73;;7151:127;6936:349;;;;:::o;7291:509::-;7360:6;7409:2;7397:9;7388:7;7384:23;7380:32;7377:119;;;7415:79;;:::i;:::-;7377:119;7563:1;7552:9;7548:17;7535:31;7593:18;7585:6;7582:30;7579:117;;;7615:79;;:::i;:::-;7579:117;7720:63;7775:7;7766:6;7755:9;7751:22;7720:63;:::i;:::-;7710:73;;7506:287;7291:509;;;;:::o;7806:329::-;7865:6;7914:2;7902:9;7893:7;7889:23;7885:32;7882:119;;;7920:79;;:::i;:::-;7882:119;8040:1;8065:53;8110:7;8101:6;8090:9;8086:22;8065:53;:::i;:::-;8055:63;;8011:117;7806:329;;;;:::o;8141:474::-;8209:6;8217;8266:2;8254:9;8245:7;8241:23;8237:32;8234:119;;;8272:79;;:::i;:::-;8234:119;8392:1;8417:53;8462:7;8453:6;8442:9;8438:22;8417:53;:::i;:::-;8407:63;;8363:117;8519:2;8545:53;8590:7;8581:6;8570:9;8566:22;8545:53;:::i;:::-;8535:63;;8490:118;8141:474;;;;;:::o;8621:179::-;8690:10;8711:46;8753:3;8745:6;8711:46;:::i;:::-;8789:4;8784:3;8780:14;8766:28;;8621:179;;;;:::o;8806:118::-;8893:24;8911:5;8893:24;:::i;:::-;8888:3;8881:37;8806:118;;:::o;8960:732::-;9079:3;9108:54;9156:5;9108:54;:::i;:::-;9178:86;9257:6;9252:3;9178:86;:::i;:::-;9171:93;;9288:56;9338:5;9288:56;:::i;:::-;9367:7;9398:1;9383:284;9408:6;9405:1;9402:13;9383:284;;;9484:6;9478:13;9511:63;9570:3;9555:13;9511:63;:::i;:::-;9504:70;;9597:60;9650:6;9597:60;:::i;:::-;9587:70;;9443:224;9430:1;9427;9423:9;9418:14;;9383:284;;;9387:14;9683:3;9676:10;;9084:608;;;8960:732;;;;:::o;9698:109::-;9779:21;9794:5;9779:21;:::i;:::-;9774:3;9767:34;9698:109;;:::o;9813:360::-;9899:3;9927:38;9959:5;9927:38;:::i;:::-;9981:70;10044:6;10039:3;9981:70;:::i;:::-;9974:77;;10060:52;10105:6;10100:3;10093:4;10086:5;10082:16;10060:52;:::i;:::-;10137:29;10159:6;10137:29;:::i;:::-;10132:3;10128:39;10121:46;;9903:270;9813:360;;;;:::o;10179:364::-;10267:3;10295:39;10328:5;10295:39;:::i;:::-;10350:71;10414:6;10409:3;10350:71;:::i;:::-;10343:78;;10430:52;10475:6;10470:3;10463:4;10456:5;10452:16;10430:52;:::i;:::-;10507:29;10529:6;10507:29;:::i;:::-;10502:3;10498:39;10491:46;;10271:272;10179:364;;;;:::o;10549:377::-;10655:3;10683:39;10716:5;10683:39;:::i;:::-;10738:89;10820:6;10815:3;10738:89;:::i;:::-;10731:96;;10836:52;10881:6;10876:3;10869:4;10862:5;10858:16;10836:52;:::i;:::-;10913:6;10908:3;10904:16;10897:23;;10659:267;10549:377;;;;:::o;10956:845::-;11059:3;11096:5;11090:12;11125:36;11151:9;11125:36;:::i;:::-;11177:89;11259:6;11254:3;11177:89;:::i;:::-;11170:96;;11297:1;11286:9;11282:17;11313:1;11308:137;;;;11459:1;11454:341;;;;11275:520;;11308:137;11392:4;11388:9;11377;11373:25;11368:3;11361:38;11428:6;11423:3;11419:16;11412:23;;11308:137;;11454:341;11521:38;11553:5;11521:38;:::i;:::-;11581:1;11595:154;11609:6;11606:1;11603:13;11595:154;;;11683:7;11677:14;11673:1;11668:3;11664:11;11657:35;11733:1;11724:7;11720:15;11709:26;;11631:4;11628:1;11624:12;11619:17;;11595:154;;;11778:6;11773:3;11769:16;11762:23;;11461:334;;11275:520;;11063:738;;10956:845;;;;:::o;11807:366::-;11949:3;11970:67;12034:2;12029:3;11970:67;:::i;:::-;11963:74;;12046:93;12135:3;12046:93;:::i;:::-;12164:2;12159:3;12155:12;12148:19;;11807:366;;;:::o;12179:::-;12321:3;12342:67;12406:2;12401:3;12342:67;:::i;:::-;12335:74;;12418:93;12507:3;12418:93;:::i;:::-;12536:2;12531:3;12527:12;12520:19;;12179:366;;;:::o;12551:::-;12693:3;12714:67;12778:2;12773:3;12714:67;:::i;:::-;12707:74;;12790:93;12879:3;12790:93;:::i;:::-;12908:2;12903:3;12899:12;12892:19;;12551:366;;;:::o;12923:::-;13065:3;13086:67;13150:2;13145:3;13086:67;:::i;:::-;13079:74;;13162:93;13251:3;13162:93;:::i;:::-;13280:2;13275:3;13271:12;13264:19;;12923:366;;;:::o;13295:::-;13437:3;13458:67;13522:2;13517:3;13458:67;:::i;:::-;13451:74;;13534:93;13623:3;13534:93;:::i;:::-;13652:2;13647:3;13643:12;13636:19;;13295:366;;;:::o;13667:::-;13809:3;13830:67;13894:2;13889:3;13830:67;:::i;:::-;13823:74;;13906:93;13995:3;13906:93;:::i;:::-;14024:2;14019:3;14015:12;14008:19;;13667:366;;;:::o;14039:::-;14181:3;14202:67;14266:2;14261:3;14202:67;:::i;:::-;14195:74;;14278:93;14367:3;14278:93;:::i;:::-;14396:2;14391:3;14387:12;14380:19;;14039:366;;;:::o;14411:400::-;14571:3;14592:84;14674:1;14669:3;14592:84;:::i;:::-;14585:91;;14685:93;14774:3;14685:93;:::i;:::-;14803:1;14798:3;14794:11;14787:18;;14411:400;;;:::o;14817:366::-;14959:3;14980:67;15044:2;15039:3;14980:67;:::i;:::-;14973:74;;15056:93;15145:3;15056:93;:::i;:::-;15174:2;15169:3;15165:12;15158:19;;14817:366;;;:::o;15189:::-;15331:3;15352:67;15416:2;15411:3;15352:67;:::i;:::-;15345:74;;15428:93;15517:3;15428:93;:::i;:::-;15546:2;15541:3;15537:12;15530:19;;15189:366;;;:::o;15561:::-;15703:3;15724:67;15788:2;15783:3;15724:67;:::i;:::-;15717:74;;15800:93;15889:3;15800:93;:::i;:::-;15918:2;15913:3;15909:12;15902:19;;15561:366;;;:::o;15933:::-;16075:3;16096:67;16160:2;16155:3;16096:67;:::i;:::-;16089:74;;16172:93;16261:3;16172:93;:::i;:::-;16290:2;16285:3;16281:12;16274:19;;15933:366;;;:::o;16305:::-;16447:3;16468:67;16532:2;16527:3;16468:67;:::i;:::-;16461:74;;16544:93;16633:3;16544:93;:::i;:::-;16662:2;16657:3;16653:12;16646:19;;16305:366;;;:::o;16677:::-;16819:3;16840:67;16904:2;16899:3;16840:67;:::i;:::-;16833:74;;16916:93;17005:3;16916:93;:::i;:::-;17034:2;17029:3;17025:12;17018:19;;16677:366;;;:::o;17049:::-;17191:3;17212:67;17276:2;17271:3;17212:67;:::i;:::-;17205:74;;17288:93;17377:3;17288:93;:::i;:::-;17406:2;17401:3;17397:12;17390:19;;17049:366;;;:::o;17421:398::-;17580:3;17601:83;17682:1;17677:3;17601:83;:::i;:::-;17594:90;;17693:93;17782:3;17693:93;:::i;:::-;17811:1;17806:3;17802:11;17795:18;;17421:398;;;:::o;17825:366::-;17967:3;17988:67;18052:2;18047:3;17988:67;:::i;:::-;17981:74;;18064:93;18153:3;18064:93;:::i;:::-;18182:2;18177:3;18173:12;18166:19;;17825:366;;;:::o;18197:::-;18339:3;18360:67;18424:2;18419:3;18360:67;:::i;:::-;18353:74;;18436:93;18525:3;18436:93;:::i;:::-;18554:2;18549:3;18545:12;18538:19;;18197:366;;;:::o;18569:::-;18711:3;18732:67;18796:2;18791:3;18732:67;:::i;:::-;18725:74;;18808:93;18897:3;18808:93;:::i;:::-;18926:2;18921:3;18917:12;18910:19;;18569:366;;;:::o;18941:108::-;19018:24;19036:5;19018:24;:::i;:::-;19013:3;19006:37;18941:108;;:::o;19055:118::-;19142:24;19160:5;19142:24;:::i;:::-;19137:3;19130:37;19055:118;;:::o;19179:695::-;19457:3;19479:92;19567:3;19558:6;19479:92;:::i;:::-;19472:99;;19588:95;19679:3;19670:6;19588:95;:::i;:::-;19581:102;;19700:148;19844:3;19700:148;:::i;:::-;19693:155;;19865:3;19858:10;;19179:695;;;;;:::o;19880:379::-;20064:3;20086:147;20229:3;20086:147;:::i;:::-;20079:154;;20250:3;20243:10;;19880:379;;;:::o;20265:222::-;20358:4;20396:2;20385:9;20381:18;20373:26;;20409:71;20477:1;20466:9;20462:17;20453:6;20409:71;:::i;:::-;20265:222;;;;:::o;20493:640::-;20688:4;20726:3;20715:9;20711:19;20703:27;;20740:71;20808:1;20797:9;20793:17;20784:6;20740:71;:::i;:::-;20821:72;20889:2;20878:9;20874:18;20865:6;20821:72;:::i;:::-;20903;20971:2;20960:9;20956:18;20947:6;20903:72;:::i;:::-;21022:9;21016:4;21012:20;21007:2;20996:9;20992:18;20985:48;21050:76;21121:4;21112:6;21050:76;:::i;:::-;21042:84;;20493:640;;;;;;;:::o;21139:373::-;21282:4;21320:2;21309:9;21305:18;21297:26;;21369:9;21363:4;21359:20;21355:1;21344:9;21340:17;21333:47;21397:108;21500:4;21491:6;21397:108;:::i;:::-;21389:116;;21139:373;;;;:::o;21518:210::-;21605:4;21643:2;21632:9;21628:18;21620:26;;21656:65;21718:1;21707:9;21703:17;21694:6;21656:65;:::i;:::-;21518:210;;;;:::o;21734:313::-;21847:4;21885:2;21874:9;21870:18;21862:26;;21934:9;21928:4;21924:20;21920:1;21909:9;21905:17;21898:47;21962:78;22035:4;22026:6;21962:78;:::i;:::-;21954:86;;21734:313;;;;:::o;22053:419::-;22219:4;22257:2;22246:9;22242:18;22234:26;;22306:9;22300:4;22296:20;22292:1;22281:9;22277:17;22270:47;22334:131;22460:4;22334:131;:::i;:::-;22326:139;;22053:419;;;:::o;22478:::-;22644:4;22682:2;22671:9;22667:18;22659:26;;22731:9;22725:4;22721:20;22717:1;22706:9;22702:17;22695:47;22759:131;22885:4;22759:131;:::i;:::-;22751:139;;22478:419;;;:::o;22903:::-;23069:4;23107:2;23096:9;23092:18;23084:26;;23156:9;23150:4;23146:20;23142:1;23131:9;23127:17;23120:47;23184:131;23310:4;23184:131;:::i;:::-;23176:139;;22903:419;;;:::o;23328:::-;23494:4;23532:2;23521:9;23517:18;23509:26;;23581:9;23575:4;23571:20;23567:1;23556:9;23552:17;23545:47;23609:131;23735:4;23609:131;:::i;:::-;23601:139;;23328:419;;;:::o;23753:::-;23919:4;23957:2;23946:9;23942:18;23934:26;;24006:9;24000:4;23996:20;23992:1;23981:9;23977:17;23970:47;24034:131;24160:4;24034:131;:::i;:::-;24026:139;;23753:419;;;:::o;24178:::-;24344:4;24382:2;24371:9;24367:18;24359:26;;24431:9;24425:4;24421:20;24417:1;24406:9;24402:17;24395:47;24459:131;24585:4;24459:131;:::i;:::-;24451:139;;24178:419;;;:::o;24603:::-;24769:4;24807:2;24796:9;24792:18;24784:26;;24856:9;24850:4;24846:20;24842:1;24831:9;24827:17;24820:47;24884:131;25010:4;24884:131;:::i;:::-;24876:139;;24603:419;;;:::o;25028:::-;25194:4;25232:2;25221:9;25217:18;25209:26;;25281:9;25275:4;25271:20;25267:1;25256:9;25252:17;25245:47;25309:131;25435:4;25309:131;:::i;:::-;25301:139;;25028:419;;;:::o;25453:::-;25619:4;25657:2;25646:9;25642:18;25634:26;;25706:9;25700:4;25696:20;25692:1;25681:9;25677:17;25670:47;25734:131;25860:4;25734:131;:::i;:::-;25726:139;;25453:419;;;:::o;25878:::-;26044:4;26082:2;26071:9;26067:18;26059:26;;26131:9;26125:4;26121:20;26117:1;26106:9;26102:17;26095:47;26159:131;26285:4;26159:131;:::i;:::-;26151:139;;25878:419;;;:::o;26303:::-;26469:4;26507:2;26496:9;26492:18;26484:26;;26556:9;26550:4;26546:20;26542:1;26531:9;26527:17;26520:47;26584:131;26710:4;26584:131;:::i;:::-;26576:139;;26303:419;;;:::o;26728:::-;26894:4;26932:2;26921:9;26917:18;26909:26;;26981:9;26975:4;26971:20;26967:1;26956:9;26952:17;26945:47;27009:131;27135:4;27009:131;:::i;:::-;27001:139;;26728:419;;;:::o;27153:::-;27319:4;27357:2;27346:9;27342:18;27334:26;;27406:9;27400:4;27396:20;27392:1;27381:9;27377:17;27370:47;27434:131;27560:4;27434:131;:::i;:::-;27426:139;;27153:419;;;:::o;27578:::-;27744:4;27782:2;27771:9;27767:18;27759:26;;27831:9;27825:4;27821:20;27817:1;27806:9;27802:17;27795:47;27859:131;27985:4;27859:131;:::i;:::-;27851:139;;27578:419;;;:::o;28003:::-;28169:4;28207:2;28196:9;28192:18;28184:26;;28256:9;28250:4;28246:20;28242:1;28231:9;28227:17;28220:47;28284:131;28410:4;28284:131;:::i;:::-;28276:139;;28003:419;;;:::o;28428:::-;28594:4;28632:2;28621:9;28617:18;28609:26;;28681:9;28675:4;28671:20;28667:1;28656:9;28652:17;28645:47;28709:131;28835:4;28709:131;:::i;:::-;28701:139;;28428:419;;;:::o;28853:::-;29019:4;29057:2;29046:9;29042:18;29034:26;;29106:9;29100:4;29096:20;29092:1;29081:9;29077:17;29070:47;29134:131;29260:4;29134:131;:::i;:::-;29126:139;;28853:419;;;:::o;29278:222::-;29371:4;29409:2;29398:9;29394:18;29386:26;;29422:71;29490:1;29479:9;29475:17;29466:6;29422:71;:::i;:::-;29278:222;;;;:::o;29506:129::-;29540:6;29567:20;;:::i;:::-;29557:30;;29596:33;29624:4;29616:6;29596:33;:::i;:::-;29506:129;;;:::o;29641:75::-;29674:6;29707:2;29701:9;29691:19;;29641:75;:::o;29722:307::-;29783:4;29873:18;29865:6;29862:30;29859:56;;;29895:18;;:::i;:::-;29859:56;29933:29;29955:6;29933:29;:::i;:::-;29925:37;;30017:4;30011;30007:15;29999:23;;29722:307;;;:::o;30035:308::-;30097:4;30187:18;30179:6;30176:30;30173:56;;;30209:18;;:::i;:::-;30173:56;30247:29;30269:6;30247:29;:::i;:::-;30239:37;;30331:4;30325;30321:15;30313:23;;30035:308;;;:::o;30349:132::-;30416:4;30439:3;30431:11;;30469:4;30464:3;30460:14;30452:22;;30349:132;;;:::o;30487:141::-;30536:4;30559:3;30551:11;;30582:3;30579:1;30572:14;30616:4;30613:1;30603:18;30595:26;;30487:141;;;:::o;30634:114::-;30701:6;30735:5;30729:12;30719:22;;30634:114;;;:::o;30754:98::-;30805:6;30839:5;30833:12;30823:22;;30754:98;;;:::o;30858:99::-;30910:6;30944:5;30938:12;30928:22;;30858:99;;;:::o;30963:113::-;31033:4;31065;31060:3;31056:14;31048:22;;30963:113;;;:::o;31082:184::-;31181:11;31215:6;31210:3;31203:19;31255:4;31250:3;31246:14;31231:29;;31082:184;;;;:::o;31272:168::-;31355:11;31389:6;31384:3;31377:19;31429:4;31424:3;31420:14;31405:29;;31272:168;;;;:::o;31446:147::-;31547:11;31584:3;31569:18;;31446:147;;;;:::o;31599:169::-;31683:11;31717:6;31712:3;31705:19;31757:4;31752:3;31748:14;31733:29;;31599:169;;;;:::o;31774:148::-;31876:11;31913:3;31898:18;;31774:148;;;;:::o;31928:305::-;31968:3;31987:20;32005:1;31987:20;:::i;:::-;31982:25;;32021:20;32039:1;32021:20;:::i;:::-;32016:25;;32175:1;32107:66;32103:74;32100:1;32097:81;32094:107;;;32181:18;;:::i;:::-;32094:107;32225:1;32222;32218:9;32211:16;;31928:305;;;;:::o;32239:185::-;32279:1;32296:20;32314:1;32296:20;:::i;:::-;32291:25;;32330:20;32348:1;32330:20;:::i;:::-;32325:25;;32369:1;32359:35;;32374:18;;:::i;:::-;32359:35;32416:1;32413;32409:9;32404:14;;32239:185;;;;:::o;32430:348::-;32470:7;32493:20;32511:1;32493:20;:::i;:::-;32488:25;;32527:20;32545:1;32527:20;:::i;:::-;32522:25;;32715:1;32647:66;32643:74;32640:1;32637:81;32632:1;32625:9;32618:17;32614:105;32611:131;;;32722:18;;:::i;:::-;32611:131;32770:1;32767;32763:9;32752:20;;32430:348;;;;:::o;32784:191::-;32824:4;32844:20;32862:1;32844:20;:::i;:::-;32839:25;;32878:20;32896:1;32878:20;:::i;:::-;32873:25;;32917:1;32914;32911:8;32908:34;;;32922:18;;:::i;:::-;32908:34;32967:1;32964;32960:9;32952:17;;32784:191;;;;:::o;32981:96::-;33018:7;33047:24;33065:5;33047:24;:::i;:::-;33036:35;;32981:96;;;:::o;33083:90::-;33117:7;33160:5;33153:13;33146:21;33135:32;;33083:90;;;:::o;33179:149::-;33215:7;33255:66;33248:5;33244:78;33233:89;;33179:149;;;:::o;33334:126::-;33371:7;33411:42;33404:5;33400:54;33389:65;;33334:126;;;:::o;33466:77::-;33503:7;33532:5;33521:16;;33466:77;;;:::o;33549:154::-;33633:6;33628:3;33623;33610:30;33695:1;33686:6;33681:3;33677:16;33670:27;33549:154;;;:::o;33709:307::-;33777:1;33787:113;33801:6;33798:1;33795:13;33787:113;;;33886:1;33881:3;33877:11;33871:18;33867:1;33862:3;33858:11;33851:39;33823:2;33820:1;33816:10;33811:15;;33787:113;;;33918:6;33915:1;33912:13;33909:101;;;33998:1;33989:6;33984:3;33980:16;33973:27;33909:101;33758:258;33709:307;;;:::o;34022:320::-;34066:6;34103:1;34097:4;34093:12;34083:22;;34150:1;34144:4;34140:12;34171:18;34161:81;;34227:4;34219:6;34215:17;34205:27;;34161:81;34289:2;34281:6;34278:14;34258:18;34255:38;34252:84;;;34308:18;;:::i;:::-;34252:84;34073:269;34022:320;;;:::o;34348:281::-;34431:27;34453:4;34431:27;:::i;:::-;34423:6;34419:40;34561:6;34549:10;34546:22;34525:18;34513:10;34510:34;34507:62;34504:88;;;34572:18;;:::i;:::-;34504:88;34612:10;34608:2;34601:22;34391:238;34348:281;;:::o;34635:233::-;34674:3;34697:24;34715:5;34697:24;:::i;:::-;34688:33;;34743:66;34736:5;34733:77;34730:103;;;34813:18;;:::i;:::-;34730:103;34860:1;34853:5;34849:13;34842:20;;34635:233;;;:::o;34874:176::-;34906:1;34923:20;34941:1;34923:20;:::i;:::-;34918:25;;34957:20;34975:1;34957:20;:::i;:::-;34952:25;;34996:1;34986:35;;35001:18;;:::i;:::-;34986:35;35042:1;35039;35035:9;35030:14;;34874:176;;;;:::o;35056:180::-;35104:77;35101:1;35094:88;35201:4;35198:1;35191:15;35225:4;35222:1;35215:15;35242:180;35290:77;35287:1;35280:88;35387:4;35384:1;35377:15;35411:4;35408:1;35401:15;35428:180;35476:77;35473:1;35466:88;35573:4;35570:1;35563:15;35597:4;35594:1;35587:15;35614:180;35662:77;35659:1;35652:88;35759:4;35756:1;35749:15;35783:4;35780:1;35773:15;35800:180;35848:77;35845:1;35838:88;35945:4;35942:1;35935:15;35969:4;35966:1;35959:15;35986:117;36095:1;36092;36085:12;36109:117;36218:1;36215;36208:12;36232:117;36341:1;36338;36331:12;36355:117;36464:1;36461;36454:12;36478:102;36519:6;36570:2;36566:7;36561:2;36554:5;36550:14;36546:28;36536:38;;36478:102;;;:::o;36586:161::-;36726:13;36722:1;36714:6;36710:14;36703:37;36586:161;:::o;36753:225::-;36893:34;36889:1;36881:6;36877:14;36870:58;36962:8;36957:2;36949:6;36945:15;36938:33;36753:225;:::o;36984:165::-;37124:17;37120:1;37112:6;37108:14;37101:41;36984:165;:::o;37155:169::-;37295:21;37291:1;37283:6;37279:14;37272:45;37155:169;:::o;37330:::-;37470:21;37466:1;37458:6;37454:14;37447:45;37330:169;:::o;37505:182::-;37645:34;37641:1;37633:6;37629:14;37622:58;37505:182;:::o;37693:168::-;37833:20;37829:1;37821:6;37817:14;37810:44;37693:168;:::o;37867:155::-;38007:7;38003:1;37995:6;37991:14;37984:31;37867:155;:::o;38028:182::-;38168:34;38164:1;38156:6;38152:14;38145:58;38028:182;:::o;38216:169::-;38356:21;38352:1;38344:6;38340:14;38333:45;38216:169;:::o;38391:234::-;38531:34;38527:1;38519:6;38515:14;38508:58;38600:17;38595:2;38587:6;38583:15;38576:42;38391:234;:::o;38631:168::-;38771:20;38767:1;38759:6;38755:14;38748:44;38631:168;:::o;38805:169::-;38945:21;38941:1;38933:6;38929:14;38922:45;38805:169;:::o;38980:170::-;39120:22;39116:1;39108:6;39104:14;39097:46;38980:170;:::o;39156:167::-;39296:19;39292:1;39284:6;39280:14;39273:43;39156:167;:::o;39329:114::-;;:::o;39449:168::-;39589:20;39585:1;39577:6;39573:14;39566:44;39449:168;:::o;39623:172::-;39763:24;39759:1;39751:6;39747:14;39740:48;39623:172;:::o;39801:171::-;39941:23;39937:1;39929:6;39925:14;39918:47;39801:171;:::o;39978:122::-;40051:24;40069:5;40051:24;:::i;:::-;40044:5;40041:35;40031:63;;40090:1;40087;40080:12;40031:63;39978:122;:::o;40106:116::-;40176:21;40191:5;40176:21;:::i;:::-;40169:5;40166:32;40156:60;;40212:1;40209;40202:12;40156:60;40106:116;:::o;40228:120::-;40300:23;40317:5;40300:23;:::i;:::-;40293:5;40290:34;40280:62;;40338:1;40335;40328:12;40280:62;40228:120;:::o;40354:122::-;40427:24;40445:5;40427:24;:::i;:::-;40420:5;40417:35;40407:63;;40466:1;40463;40456:12;40407:63;40354:122;:::o

Swarm Source

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