ETH Price: $3,420.76 (-1.60%)
Gas: 7 Gwei

Token

WallyMan (WallyMan)
 

Overview

Max Total Supply

163 WallyMan

Holders

160

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WallyMan
0xe0d12f8c51390b635859ba820033b3182bc61100
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:
WallyMan

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// 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: test.sol



pragma solidity ^0.8.13;




contract WallyMan is Ownable, ERC721A {
    uint256 public maxSupply                    = 1063;
    uint256 public maxFreeSupply                = 400;
    
    uint256 public maxPerTxDuringMint           = 5;
    uint256 public maxPerAddressDuringMint      = 10;
    uint256 public maxPerAddressDuringFreeMint  = 1;
    
    uint256 public price                        = 0.005 ether;
    bool    public saleIsActive                 = false;
    

    string private _baseTokenURI;

    mapping(address => uint256) public freeMintedAmount;
    mapping(address => uint256) public mintedAmount;

    constructor() ERC721A("WallyMan", "WallyMan") {
        _safeMint(msg.sender, 1);
    }

    modifier mintCompliance() {
        require(saleIsActive, "Sale is not active yet.");
        require(tx.origin == msg.sender, "Caller cannot be a contract.");
        _;
    }

    function mint(uint256 _quantity) external payable mintCompliance() {
        require(
            maxSupply >= totalSupply() + _quantity,
            "Exceeds max supply."
        );
        uint256 _mintedAmount = mintedAmount[msg.sender];
        require(
            _mintedAmount + _quantity <= maxPerAddressDuringMint,
            "Exceeds max mints per address!"
        );
        require(
            _quantity > 0 && _quantity <= maxPerTxDuringMint,
            "Invalid mint amount."
        );
        mintedAmount[msg.sender] = _mintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
        refundIfOver(price * _quantity);
    }

    function freeMint(uint256 _quantity) external mintCompliance() {
        require(
            maxFreeSupply >= totalSupply() + _quantity, 
            "Exceeds max free supply."
        );
        uint256 _freeMintedAmount = freeMintedAmount[msg.sender];
        require(
            _freeMintedAmount + _quantity <= maxPerAddressDuringFreeMint,
            "Exceeds max free mints per address!"
        );
        freeMintedAmount[msg.sender] = _freeMintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function refundIfOver(uint256 _price) private {
        require(msg.value >= _price, "Not enough ETH sent.");
        if (msg.value > _price) {
            payable(msg.sender).transfer(msg.value - _price);
        }
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setMaxPerTx(uint256 _amount) external onlyOwner {
        maxPerTxDuringMint = _amount;
    }

    function setMaxPerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringMint = _amount;
    }

    function setMaxFreePerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringFreeMint = _amount;
    }

    function flipSale() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    
    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[{"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":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610427600955610190600a556005600b55600a600c556001600d556611c37937e08000600e556000600f60006101000a81548160ff0219169083151502179055503480156200005257600080fd5b506040518060400160405280600881526020017f57616c6c794d616e0000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f57616c6c794d616e000000000000000000000000000000000000000000000000815250620000df620000d36200014260201b60201c565b6200014a60201b60201c565b8160039080519060200190620000f7929190620006a6565b50806004908051906020019062000110929190620006a6565b50620001216200020e60201b60201c565b60018190555050506200013c3360016200021360201b60201c565b620009a6565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b620002358282604051806020016040528060008152506200023960201b60201c565b5050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603620002a7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303620002e2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002f760008583866200051d60201b60201c565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000364600185146200052360201b60201c565b901b60a042901b6200037c866200052d60201b60201c565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146200048d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200043960008784806001019550876200053760201b60201c565b62000470576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620003c25782600154146200048757600080fd5b620004f9565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200048e575b8160018190555050506200051760008583866200069860201b60201c565b50505050565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005656200069e60201b60201c565b8786866040518563ffffffff1660e01b81526004016200058994939291906200085a565b6020604051808303816000875af1925050508015620005c857506040513d601f19601f82011682018060405250810190620005c5919062000910565b60015b62000645573d8060008114620005fb576040519150601f19603f3d011682016040523d82523d6000602084013e62000600565b606091505b5060008151036200063d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b828054620006b49062000971565b90600052602060002090601f016020900481019282620006d8576000855562000724565b82601f10620006f357805160ff191683800117855562000724565b8280016001018555821562000724579182015b828111156200072357825182559160200191906001019062000706565b5b50905062000733919062000737565b5090565b5b808211156200075257600081600090555060010162000738565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007838262000756565b9050919050565b620007958162000776565b82525050565b6000819050919050565b620007b0816200079b565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b83811015620007f2578082015181840152602081019050620007d5565b8381111562000802576000848401525b50505050565b6000601f19601f8301169050919050565b60006200082682620007b6565b620008328185620007c1565b935062000844818560208601620007d2565b6200084f8162000808565b840191505092915050565b60006080820190506200087160008301876200078a565b6200088060208301866200078a565b6200088f6040830185620007a5565b8181036060830152620008a3818462000819565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620008ea81620008b3565b8114620008f657600080fd5b50565b6000815190506200090a81620008df565b92915050565b600060208284031215620009295762000928620008ae565b5b60006200093984828501620008f9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200098a57607f821691505b602082108103620009a0576200099f62000942565b5b50919050565b6135c880620009b66000396000f3fe6080604052600436106102045760003560e01c80638bc35c2f11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb011461071e578063e985e9c514610749578063eb8d244414610786578063f2fde38b146107b1578063fbbf8cc3146107da57610204565b8063bbb6431914610664578063c6f6f2161461068d578063c87b56dd146106b6578063d3464cbd146106f357610204565b806396b10201116100e757806396b102011461058e578063a035b1fe146105cb578063a0712d68146105f6578063a22cb46514610612578063b88d4fde1461063b57610204565b80638bc35c2f146104e45780638da5cb5b1461050f57806391b7f5ed1461053a57806395d89b411461056357610204565b806342842e0e1161019b57806370a082311161016a57806370a0823114610427578063715018a6146104645780637ba5e6211461047b5780637bddd65b146104925780637c928fe9146104bb57610204565b806342842e0e1461036d578063475133341461039657806355f804b3146103c15780636352211e146103ea57610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632e0fd6eb1461032b5780633ccfd60b1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906127a2565b610817565b60405161023d91906127ea565b60405180910390f35b34801561025257600080fd5b5061025b6108a9565b604051610268919061289e565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906128f6565b61093b565b6040516102a59190612964565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906129ab565b6109b7565b005b3480156102e357600080fd5b506102ec610b5d565b6040516102f991906129fa565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612a15565b610b74565b005b34801561033757600080fd5b50610340610b84565b60405161034d91906129fa565b60405180910390f35b34801561036257600080fd5b5061036b610b8a565b005b34801561037957600080fd5b50610394600480360381019061038f9190612a15565b610cb5565b005b3480156103a257600080fd5b506103ab610cd5565b6040516103b891906129fa565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190612acd565b610cdb565b005b3480156103f657600080fd5b50610411600480360381019061040c91906128f6565b610d6d565b60405161041e9190612964565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190612b1a565b610d7f565b60405161045b91906129fa565b60405180910390f35b34801561047057600080fd5b50610479610e37565b005b34801561048757600080fd5b50610490610ebf565b005b34801561049e57600080fd5b506104b960048036038101906104b491906128f6565b610f67565b005b3480156104c757600080fd5b506104e260048036038101906104dd91906128f6565b610fed565b005b3480156104f057600080fd5b506104f96111f2565b60405161050691906129fa565b60405180910390f35b34801561051b57600080fd5b506105246111f8565b6040516105319190612964565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c91906128f6565b611221565b005b34801561056f57600080fd5b506105786112a7565b604051610585919061289e565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612b1a565b611339565b6040516105c291906129fa565b60405180910390f35b3480156105d757600080fd5b506105e0611351565b6040516105ed91906129fa565b60405180910390f35b610610600480360381019061060b91906128f6565b611357565b005b34801561061e57600080fd5b5061063960048036038101906106349190612b73565b6115c3565b005b34801561064757600080fd5b50610662600480360381019061065d9190612ce3565b61173a565b005b34801561067057600080fd5b5061068b600480360381019061068691906128f6565b6117ad565b005b34801561069957600080fd5b506106b460048036038101906106af91906128f6565b611833565b005b3480156106c257600080fd5b506106dd60048036038101906106d891906128f6565b6118b9565b6040516106ea919061289e565b60405180910390f35b3480156106ff57600080fd5b50610708611957565b60405161071591906129fa565b60405180910390f35b34801561072a57600080fd5b5061073361195d565b60405161074091906129fa565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190612d66565b611963565b60405161077d91906127ea565b60405180910390f35b34801561079257600080fd5b5061079b6119f7565b6040516107a891906127ea565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190612b1a565b611a0a565b005b3480156107e657600080fd5b5061080160048036038101906107fc9190612b1a565b611b01565b60405161080e91906129fa565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108b890612dd5565b80601f01602080910402602001604051908101604052809291908181526020018280546108e490612dd5565b80156109315780601f1061090657610100808354040283529160200191610931565b820191906000526020600020905b81548152906001019060200180831161091457829003601f168201915b5050505050905090565b600061094682611b19565b61097c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c282611b78565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a29576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a48611c44565b73ffffffffffffffffffffffffffffffffffffffff1614610aab57610a7481610a6f611c44565b611963565b610aaa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b67611c4c565b6002546001540303905090565b610b7f838383611c51565b505050565b600d5481565b610b92611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610bb06111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90612e52565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c2c90612ea3565b60006040518083038185875af1925050503d8060008114610c69576040519150601f19603f3d011682016040523d82523d6000602084013e610c6e565b606091505b5050905080610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990612f04565b60405180910390fd5b50565b610cd08383836040518060200160405280600081525061173a565b505050565b600a5481565b610ce3611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610d016111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e90612e52565b60405180910390fd5b818160109190610d68929190612693565b505050565b6000610d7882611b78565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610de6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e3f611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610e5d6111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90612e52565b60405180910390fd5b610ebd6000612000565b565b610ec7611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610ee56111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290612e52565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b610f6f611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610f8d6111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90612e52565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff1661103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390612f70565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190612fdc565b60405180910390fd5b806110b3610b5d565b6110bd919061302b565b600a541015611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f8906130cd565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548282611154919061302b565b1115611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c9061315f565b60405180910390fd5b81816111a1919061302b565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111ee33836120c4565b5050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611229611ff8565b73ffffffffffffffffffffffffffffffffffffffff166112476111f8565b73ffffffffffffffffffffffffffffffffffffffff161461129d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129490612e52565b60405180910390fd5b80600e8190555050565b6060600480546112b690612dd5565b80601f01602080910402602001604051908101604052809291908181526020018280546112e290612dd5565b801561132f5780601f106113045761010080835404028352916020019161132f565b820191906000526020600020905b81548152906001019060200180831161131257829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff166113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d90612f70565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b90612fdc565b60405180910390fd5b8061141d610b5d565b611427919061302b565b600954101561146b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611462906131cb565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c5482826114be919061302b565b11156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690613237565b60405180910390fd5b6000821180156115115750600b548211155b611550576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611547906132a3565b60405180910390fd5b818161155c919061302b565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115a933836120c4565b6115bf82600e546115ba91906132c3565b6120e2565b5050565b6115cb611c44565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361162f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061163c611c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116e9611c44565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161172e91906127ea565b60405180910390a35050565b611745848484611c51565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117a75761177084848484612183565b6117a6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6117b5611ff8565b73ffffffffffffffffffffffffffffffffffffffff166117d36111f8565b73ffffffffffffffffffffffffffffffffffffffff1614611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090612e52565b60405180910390fd5b80600d8190555050565b61183b611ff8565b73ffffffffffffffffffffffffffffffffffffffff166118596111f8565b73ffffffffffffffffffffffffffffffffffffffff16146118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a690612e52565b60405180910390fd5b80600b8190555050565b60606118c482611b19565b6118fa576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006119046122d3565b90506000815103611924576040518060200160405280600081525061194f565b8061192e84612365565b60405160200161193f929190613359565b6040516020818303038152906040525b915050919050565b600b5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611a12611ff8565b73ffffffffffffffffffffffffffffffffffffffff16611a306111f8565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d90612e52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aec906133ef565b60405180910390fd5b611afe81612000565b50565b60126020528060005260406000206000915090505481565b600081611b24611c4c565b11158015611b33575060015482105b8015611b71575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611b87611c4c565b11611c0d57600154811015611c0c5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c0a575b60008103611c00576005600083600190039350838152602001908152602001600020549050611bd6565b8092505050611c3f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611c5c82611b78565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611cc3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611ce4611c44565b73ffffffffffffffffffffffffffffffffffffffff161480611d135750611d1285611d0d611c44565b611963565b5b80611d585750611d21611c44565b73ffffffffffffffffffffffffffffffffffffffff16611d408461093b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d91576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611df7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e0485858560016123bf565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611f01866123c5565b1717600560008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611f895760006001840190506000600560008381526020019081526020016000205403611f87576001548114611f86578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ff185858560016123cf565b5050505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120de8282604051806020016040528060008152506123d5565b5050565b80341015612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c9061345b565b60405180910390fd5b80341115612180573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612153919061347b565b9081150290604051600060405180830381858888f1935050505015801561217e573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121a9611c44565b8786866040518563ffffffff1660e01b81526004016121cb9493929190613504565b6020604051808303816000875af192505050801561220757506040513d601f19601f820116820180604052508101906122049190613565565b60015b612280573d8060008114612237576040519150601f19603f3d011682016040523d82523d6000602084013e61223c565b606091505b506000815103612278576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546122e290612dd5565b80601f016020809104026020016040519081016040528092919081815260200182805461230e90612dd5565b801561235b5780601f106123305761010080835404028352916020019161235b565b820191906000526020600020905b81548152906001019060200180831161233e57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156123ab57600183039250600a81066030018353600a8104905061238b565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612442576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361247c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61248960008583866123bf565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16124ee60018514612689565b901b60a042901b6124fe866123c5565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612602575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125b26000878480600101955087612183565b6125e8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106125435782600154146125fd57600080fd5b61266d565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612603575b81600181905550505061268360008583866123cf565b50505050565b6000819050919050565b82805461269f90612dd5565b90600052602060002090601f0160209004810192826126c15760008555612708565b82601f106126da57803560ff1916838001178555612708565b82800160010185558215612708579182015b828111156127075782358255916020019190600101906126ec565b5b5090506127159190612719565b5090565b5b8082111561273257600081600090555060010161271a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61277f8161274a565b811461278a57600080fd5b50565b60008135905061279c81612776565b92915050565b6000602082840312156127b8576127b7612740565b5b60006127c68482850161278d565b91505092915050565b60008115159050919050565b6127e4816127cf565b82525050565b60006020820190506127ff60008301846127db565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561283f578082015181840152602081019050612824565b8381111561284e576000848401525b50505050565b6000601f19601f8301169050919050565b600061287082612805565b61287a8185612810565b935061288a818560208601612821565b61289381612854565b840191505092915050565b600060208201905081810360008301526128b88184612865565b905092915050565b6000819050919050565b6128d3816128c0565b81146128de57600080fd5b50565b6000813590506128f0816128ca565b92915050565b60006020828403121561290c5761290b612740565b5b600061291a848285016128e1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061294e82612923565b9050919050565b61295e81612943565b82525050565b60006020820190506129796000830184612955565b92915050565b61298881612943565b811461299357600080fd5b50565b6000813590506129a58161297f565b92915050565b600080604083850312156129c2576129c1612740565b5b60006129d085828601612996565b92505060206129e1858286016128e1565b9150509250929050565b6129f4816128c0565b82525050565b6000602082019050612a0f60008301846129eb565b92915050565b600080600060608486031215612a2e57612a2d612740565b5b6000612a3c86828701612996565b9350506020612a4d86828701612996565b9250506040612a5e868287016128e1565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612a8d57612a8c612a68565b5b8235905067ffffffffffffffff811115612aaa57612aa9612a6d565b5b602083019150836001820283011115612ac657612ac5612a72565b5b9250929050565b60008060208385031215612ae457612ae3612740565b5b600083013567ffffffffffffffff811115612b0257612b01612745565b5b612b0e85828601612a77565b92509250509250929050565b600060208284031215612b3057612b2f612740565b5b6000612b3e84828501612996565b91505092915050565b612b50816127cf565b8114612b5b57600080fd5b50565b600081359050612b6d81612b47565b92915050565b60008060408385031215612b8a57612b89612740565b5b6000612b9885828601612996565b9250506020612ba985828601612b5e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bf082612854565b810181811067ffffffffffffffff82111715612c0f57612c0e612bb8565b5b80604052505050565b6000612c22612736565b9050612c2e8282612be7565b919050565b600067ffffffffffffffff821115612c4e57612c4d612bb8565b5b612c5782612854565b9050602081019050919050565b82818337600083830152505050565b6000612c86612c8184612c33565b612c18565b905082815260208101848484011115612ca257612ca1612bb3565b5b612cad848285612c64565b509392505050565b600082601f830112612cca57612cc9612a68565b5b8135612cda848260208601612c73565b91505092915050565b60008060008060808587031215612cfd57612cfc612740565b5b6000612d0b87828801612996565b9450506020612d1c87828801612996565b9350506040612d2d878288016128e1565b925050606085013567ffffffffffffffff811115612d4e57612d4d612745565b5b612d5a87828801612cb5565b91505092959194509250565b60008060408385031215612d7d57612d7c612740565b5b6000612d8b85828601612996565b9250506020612d9c85828601612996565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ded57607f821691505b602082108103612e0057612dff612da6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e3c602083612810565b9150612e4782612e06565b602082019050919050565b60006020820190508181036000830152612e6b81612e2f565b9050919050565b600081905092915050565b50565b6000612e8d600083612e72565b9150612e9882612e7d565b600082019050919050565b6000612eae82612e80565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612eee601083612810565b9150612ef982612eb8565b602082019050919050565b60006020820190508181036000830152612f1d81612ee1565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b6000612f5a601783612810565b9150612f6582612f24565b602082019050919050565b60006020820190508181036000830152612f8981612f4d565b9050919050565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b6000612fc6601c83612810565b9150612fd182612f90565b602082019050919050565b60006020820190508181036000830152612ff581612fb9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613036826128c0565b9150613041836128c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561307657613075612ffc565b5b828201905092915050565b7f45786365656473206d6178206672656520737570706c792e0000000000000000600082015250565b60006130b7601883612810565b91506130c282613081565b602082019050919050565b600060208201905081810360008301526130e6816130aa565b9050919050565b7f45786365656473206d61782066726565206d696e74732070657220616464726560008201527f7373210000000000000000000000000000000000000000000000000000000000602082015250565b6000613149602383612810565b9150613154826130ed565b604082019050919050565b600060208201905081810360008301526131788161313c565b9050919050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006131b5601383612810565b91506131c08261317f565b602082019050919050565b600060208201905081810360008301526131e4816131a8565b9050919050565b7f45786365656473206d6178206d696e7473207065722061646472657373210000600082015250565b6000613221601e83612810565b915061322c826131eb565b602082019050919050565b6000602082019050818103600083015261325081613214565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b600061328d601483612810565b915061329882613257565b602082019050919050565b600060208201905081810360008301526132bc81613280565b9050919050565b60006132ce826128c0565b91506132d9836128c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561331257613311612ffc565b5b828202905092915050565b600081905092915050565b600061333382612805565b61333d818561331d565b935061334d818560208601612821565b80840191505092915050565b60006133658285613328565b91506133718284613328565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133d9602683612810565b91506133e48261337d565b604082019050919050565b60006020820190508181036000830152613408816133cc565b9050919050565b7f4e6f7420656e6f756768204554482073656e742e000000000000000000000000600082015250565b6000613445601483612810565b91506134508261340f565b602082019050919050565b6000602082019050818103600083015261347481613438565b9050919050565b6000613486826128c0565b9150613491836128c0565b9250828210156134a4576134a3612ffc565b5b828203905092915050565b600081519050919050565b600082825260208201905092915050565b60006134d6826134af565b6134e081856134ba565b93506134f0818560208601612821565b6134f981612854565b840191505092915050565b60006080820190506135196000830187612955565b6135266020830186612955565b61353360408301856129eb565b818103606083015261354581846134cb565b905095945050505050565b60008151905061355f81612776565b92915050565b60006020828403121561357b5761357a612740565b5b600061358984828501613550565b9150509291505056fea2646970667358221220362eddaeb7e75fce8aef6509e4d7a621e5d291d9bf932177dd8f1740cd88495164736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80638bc35c2f11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb011461071e578063e985e9c514610749578063eb8d244414610786578063f2fde38b146107b1578063fbbf8cc3146107da57610204565b8063bbb6431914610664578063c6f6f2161461068d578063c87b56dd146106b6578063d3464cbd146106f357610204565b806396b10201116100e757806396b102011461058e578063a035b1fe146105cb578063a0712d68146105f6578063a22cb46514610612578063b88d4fde1461063b57610204565b80638bc35c2f146104e45780638da5cb5b1461050f57806391b7f5ed1461053a57806395d89b411461056357610204565b806342842e0e1161019b57806370a082311161016a57806370a0823114610427578063715018a6146104645780637ba5e6211461047b5780637bddd65b146104925780637c928fe9146104bb57610204565b806342842e0e1461036d578063475133341461039657806355f804b3146103c15780636352211e146103ea57610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632e0fd6eb1461032b5780633ccfd60b1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906127a2565b610817565b60405161023d91906127ea565b60405180910390f35b34801561025257600080fd5b5061025b6108a9565b604051610268919061289e565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906128f6565b61093b565b6040516102a59190612964565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906129ab565b6109b7565b005b3480156102e357600080fd5b506102ec610b5d565b6040516102f991906129fa565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612a15565b610b74565b005b34801561033757600080fd5b50610340610b84565b60405161034d91906129fa565b60405180910390f35b34801561036257600080fd5b5061036b610b8a565b005b34801561037957600080fd5b50610394600480360381019061038f9190612a15565b610cb5565b005b3480156103a257600080fd5b506103ab610cd5565b6040516103b891906129fa565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190612acd565b610cdb565b005b3480156103f657600080fd5b50610411600480360381019061040c91906128f6565b610d6d565b60405161041e9190612964565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190612b1a565b610d7f565b60405161045b91906129fa565b60405180910390f35b34801561047057600080fd5b50610479610e37565b005b34801561048757600080fd5b50610490610ebf565b005b34801561049e57600080fd5b506104b960048036038101906104b491906128f6565b610f67565b005b3480156104c757600080fd5b506104e260048036038101906104dd91906128f6565b610fed565b005b3480156104f057600080fd5b506104f96111f2565b60405161050691906129fa565b60405180910390f35b34801561051b57600080fd5b506105246111f8565b6040516105319190612964565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c91906128f6565b611221565b005b34801561056f57600080fd5b506105786112a7565b604051610585919061289e565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612b1a565b611339565b6040516105c291906129fa565b60405180910390f35b3480156105d757600080fd5b506105e0611351565b6040516105ed91906129fa565b60405180910390f35b610610600480360381019061060b91906128f6565b611357565b005b34801561061e57600080fd5b5061063960048036038101906106349190612b73565b6115c3565b005b34801561064757600080fd5b50610662600480360381019061065d9190612ce3565b61173a565b005b34801561067057600080fd5b5061068b600480360381019061068691906128f6565b6117ad565b005b34801561069957600080fd5b506106b460048036038101906106af91906128f6565b611833565b005b3480156106c257600080fd5b506106dd60048036038101906106d891906128f6565b6118b9565b6040516106ea919061289e565b60405180910390f35b3480156106ff57600080fd5b50610708611957565b60405161071591906129fa565b60405180910390f35b34801561072a57600080fd5b5061073361195d565b60405161074091906129fa565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190612d66565b611963565b60405161077d91906127ea565b60405180910390f35b34801561079257600080fd5b5061079b6119f7565b6040516107a891906127ea565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190612b1a565b611a0a565b005b3480156107e657600080fd5b5061080160048036038101906107fc9190612b1a565b611b01565b60405161080e91906129fa565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108b890612dd5565b80601f01602080910402602001604051908101604052809291908181526020018280546108e490612dd5565b80156109315780601f1061090657610100808354040283529160200191610931565b820191906000526020600020905b81548152906001019060200180831161091457829003601f168201915b5050505050905090565b600061094682611b19565b61097c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c282611b78565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a29576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a48611c44565b73ffffffffffffffffffffffffffffffffffffffff1614610aab57610a7481610a6f611c44565b611963565b610aaa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b67611c4c565b6002546001540303905090565b610b7f838383611c51565b505050565b600d5481565b610b92611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610bb06111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90612e52565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c2c90612ea3565b60006040518083038185875af1925050503d8060008114610c69576040519150601f19603f3d011682016040523d82523d6000602084013e610c6e565b606091505b5050905080610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990612f04565b60405180910390fd5b50565b610cd08383836040518060200160405280600081525061173a565b505050565b600a5481565b610ce3611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610d016111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e90612e52565b60405180910390fd5b818160109190610d68929190612693565b505050565b6000610d7882611b78565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610de6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e3f611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610e5d6111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90612e52565b60405180910390fd5b610ebd6000612000565b565b610ec7611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610ee56111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290612e52565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b610f6f611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610f8d6111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90612e52565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff1661103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390612f70565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190612fdc565b60405180910390fd5b806110b3610b5d565b6110bd919061302b565b600a541015611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f8906130cd565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548282611154919061302b565b1115611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c9061315f565b60405180910390fd5b81816111a1919061302b565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111ee33836120c4565b5050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611229611ff8565b73ffffffffffffffffffffffffffffffffffffffff166112476111f8565b73ffffffffffffffffffffffffffffffffffffffff161461129d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129490612e52565b60405180910390fd5b80600e8190555050565b6060600480546112b690612dd5565b80601f01602080910402602001604051908101604052809291908181526020018280546112e290612dd5565b801561132f5780601f106113045761010080835404028352916020019161132f565b820191906000526020600020905b81548152906001019060200180831161131257829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff166113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d90612f70565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b90612fdc565b60405180910390fd5b8061141d610b5d565b611427919061302b565b600954101561146b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611462906131cb565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c5482826114be919061302b565b11156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690613237565b60405180910390fd5b6000821180156115115750600b548211155b611550576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611547906132a3565b60405180910390fd5b818161155c919061302b565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115a933836120c4565b6115bf82600e546115ba91906132c3565b6120e2565b5050565b6115cb611c44565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361162f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061163c611c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116e9611c44565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161172e91906127ea565b60405180910390a35050565b611745848484611c51565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117a75761177084848484612183565b6117a6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6117b5611ff8565b73ffffffffffffffffffffffffffffffffffffffff166117d36111f8565b73ffffffffffffffffffffffffffffffffffffffff1614611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090612e52565b60405180910390fd5b80600d8190555050565b61183b611ff8565b73ffffffffffffffffffffffffffffffffffffffff166118596111f8565b73ffffffffffffffffffffffffffffffffffffffff16146118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a690612e52565b60405180910390fd5b80600b8190555050565b60606118c482611b19565b6118fa576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006119046122d3565b90506000815103611924576040518060200160405280600081525061194f565b8061192e84612365565b60405160200161193f929190613359565b6040516020818303038152906040525b915050919050565b600b5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611a12611ff8565b73ffffffffffffffffffffffffffffffffffffffff16611a306111f8565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d90612e52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aec906133ef565b60405180910390fd5b611afe81612000565b50565b60126020528060005260406000206000915090505481565b600081611b24611c4c565b11158015611b33575060015482105b8015611b71575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611b87611c4c565b11611c0d57600154811015611c0c5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c0a575b60008103611c00576005600083600190039350838152602001908152602001600020549050611bd6565b8092505050611c3f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611c5c82611b78565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611cc3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611ce4611c44565b73ffffffffffffffffffffffffffffffffffffffff161480611d135750611d1285611d0d611c44565b611963565b5b80611d585750611d21611c44565b73ffffffffffffffffffffffffffffffffffffffff16611d408461093b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d91576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611df7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e0485858560016123bf565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611f01866123c5565b1717600560008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611f895760006001840190506000600560008381526020019081526020016000205403611f87576001548114611f86578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ff185858560016123cf565b5050505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120de8282604051806020016040528060008152506123d5565b5050565b80341015612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c9061345b565b60405180910390fd5b80341115612180573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612153919061347b565b9081150290604051600060405180830381858888f1935050505015801561217e573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121a9611c44565b8786866040518563ffffffff1660e01b81526004016121cb9493929190613504565b6020604051808303816000875af192505050801561220757506040513d601f19601f820116820180604052508101906122049190613565565b60015b612280573d8060008114612237576040519150601f19603f3d011682016040523d82523d6000602084013e61223c565b606091505b506000815103612278576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546122e290612dd5565b80601f016020809104026020016040519081016040528092919081815260200182805461230e90612dd5565b801561235b5780601f106123305761010080835404028352916020019161235b565b820191906000526020600020905b81548152906001019060200180831161233e57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156123ab57600183039250600a81066030018353600a8104905061238b565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612442576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361247c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61248960008583866123bf565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16124ee60018514612689565b901b60a042901b6124fe866123c5565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612602575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125b26000878480600101955087612183565b6125e8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106125435782600154146125fd57600080fd5b61266d565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612603575b81600181905550505061268360008583866123cf565b50505050565b6000819050919050565b82805461269f90612dd5565b90600052602060002090601f0160209004810192826126c15760008555612708565b82601f106126da57803560ff1916838001178555612708565b82800160010185558215612708579182015b828111156127075782358255916020019190600101906126ec565b5b5090506127159190612719565b5090565b5b8082111561273257600081600090555060010161271a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61277f8161274a565b811461278a57600080fd5b50565b60008135905061279c81612776565b92915050565b6000602082840312156127b8576127b7612740565b5b60006127c68482850161278d565b91505092915050565b60008115159050919050565b6127e4816127cf565b82525050565b60006020820190506127ff60008301846127db565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561283f578082015181840152602081019050612824565b8381111561284e576000848401525b50505050565b6000601f19601f8301169050919050565b600061287082612805565b61287a8185612810565b935061288a818560208601612821565b61289381612854565b840191505092915050565b600060208201905081810360008301526128b88184612865565b905092915050565b6000819050919050565b6128d3816128c0565b81146128de57600080fd5b50565b6000813590506128f0816128ca565b92915050565b60006020828403121561290c5761290b612740565b5b600061291a848285016128e1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061294e82612923565b9050919050565b61295e81612943565b82525050565b60006020820190506129796000830184612955565b92915050565b61298881612943565b811461299357600080fd5b50565b6000813590506129a58161297f565b92915050565b600080604083850312156129c2576129c1612740565b5b60006129d085828601612996565b92505060206129e1858286016128e1565b9150509250929050565b6129f4816128c0565b82525050565b6000602082019050612a0f60008301846129eb565b92915050565b600080600060608486031215612a2e57612a2d612740565b5b6000612a3c86828701612996565b9350506020612a4d86828701612996565b9250506040612a5e868287016128e1565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612a8d57612a8c612a68565b5b8235905067ffffffffffffffff811115612aaa57612aa9612a6d565b5b602083019150836001820283011115612ac657612ac5612a72565b5b9250929050565b60008060208385031215612ae457612ae3612740565b5b600083013567ffffffffffffffff811115612b0257612b01612745565b5b612b0e85828601612a77565b92509250509250929050565b600060208284031215612b3057612b2f612740565b5b6000612b3e84828501612996565b91505092915050565b612b50816127cf565b8114612b5b57600080fd5b50565b600081359050612b6d81612b47565b92915050565b60008060408385031215612b8a57612b89612740565b5b6000612b9885828601612996565b9250506020612ba985828601612b5e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bf082612854565b810181811067ffffffffffffffff82111715612c0f57612c0e612bb8565b5b80604052505050565b6000612c22612736565b9050612c2e8282612be7565b919050565b600067ffffffffffffffff821115612c4e57612c4d612bb8565b5b612c5782612854565b9050602081019050919050565b82818337600083830152505050565b6000612c86612c8184612c33565b612c18565b905082815260208101848484011115612ca257612ca1612bb3565b5b612cad848285612c64565b509392505050565b600082601f830112612cca57612cc9612a68565b5b8135612cda848260208601612c73565b91505092915050565b60008060008060808587031215612cfd57612cfc612740565b5b6000612d0b87828801612996565b9450506020612d1c87828801612996565b9350506040612d2d878288016128e1565b925050606085013567ffffffffffffffff811115612d4e57612d4d612745565b5b612d5a87828801612cb5565b91505092959194509250565b60008060408385031215612d7d57612d7c612740565b5b6000612d8b85828601612996565b9250506020612d9c85828601612996565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ded57607f821691505b602082108103612e0057612dff612da6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e3c602083612810565b9150612e4782612e06565b602082019050919050565b60006020820190508181036000830152612e6b81612e2f565b9050919050565b600081905092915050565b50565b6000612e8d600083612e72565b9150612e9882612e7d565b600082019050919050565b6000612eae82612e80565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612eee601083612810565b9150612ef982612eb8565b602082019050919050565b60006020820190508181036000830152612f1d81612ee1565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b6000612f5a601783612810565b9150612f6582612f24565b602082019050919050565b60006020820190508181036000830152612f8981612f4d565b9050919050565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b6000612fc6601c83612810565b9150612fd182612f90565b602082019050919050565b60006020820190508181036000830152612ff581612fb9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613036826128c0565b9150613041836128c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561307657613075612ffc565b5b828201905092915050565b7f45786365656473206d6178206672656520737570706c792e0000000000000000600082015250565b60006130b7601883612810565b91506130c282613081565b602082019050919050565b600060208201905081810360008301526130e6816130aa565b9050919050565b7f45786365656473206d61782066726565206d696e74732070657220616464726560008201527f7373210000000000000000000000000000000000000000000000000000000000602082015250565b6000613149602383612810565b9150613154826130ed565b604082019050919050565b600060208201905081810360008301526131788161313c565b9050919050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006131b5601383612810565b91506131c08261317f565b602082019050919050565b600060208201905081810360008301526131e4816131a8565b9050919050565b7f45786365656473206d6178206d696e7473207065722061646472657373210000600082015250565b6000613221601e83612810565b915061322c826131eb565b602082019050919050565b6000602082019050818103600083015261325081613214565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b600061328d601483612810565b915061329882613257565b602082019050919050565b600060208201905081810360008301526132bc81613280565b9050919050565b60006132ce826128c0565b91506132d9836128c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561331257613311612ffc565b5b828202905092915050565b600081905092915050565b600061333382612805565b61333d818561331d565b935061334d818560208601612821565b80840191505092915050565b60006133658285613328565b91506133718284613328565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133d9602683612810565b91506133e48261337d565b604082019050919050565b60006020820190508181036000830152613408816133cc565b9050919050565b7f4e6f7420656e6f756768204554482073656e742e000000000000000000000000600082015250565b6000613445601483612810565b91506134508261340f565b602082019050919050565b6000602082019050818103600083015261347481613438565b9050919050565b6000613486826128c0565b9150613491836128c0565b9250828210156134a4576134a3612ffc565b5b828203905092915050565b600081519050919050565b600082825260208201905092915050565b60006134d6826134af565b6134e081856134ba565b93506134f0818560208601612821565b6134f981612854565b840191505092915050565b60006080820190506135196000830187612955565b6135266020830186612955565b61353360408301856129eb565b818103606083015261354581846134cb565b905095945050505050565b60008151905061355f81612776565b92915050565b60006020828403121561357b5761357a612740565b5b600061358984828501613550565b9150509291505056fea2646970667358221220362eddaeb7e75fce8aef6509e4d7a621e5d291d9bf932177dd8f1740cd88495164736f6c634300080e0033

Deployed Bytecode Sourcemap

41862:3358:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16529:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21542:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23610:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23070:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15583:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24496:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42135:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45011:206;;;;;;;;;;;;;:::i;:::-;;24737:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41964:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44769:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21331:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17208:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2639:103;;;;;;;;;;;;;:::i;:::-;;44677:84;;;;;;;;;;;;;:::i;:::-;;44425:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43441:536;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42080:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1988:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44219:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21711:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42362:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42195:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42761:672;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23886:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24993:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44547:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44313:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21886:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42026:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41907:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24265:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42259:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2897:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42420:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16529:615;16614:4;16929:10;16914:25;;:11;:25;;;;:102;;;;17006:10;16991:25;;:11;:25;;;;16914:102;:179;;;;17083:10;17068:25;;:11;:25;;;;16914:179;16894:199;;16529:615;;;:::o;21542:100::-;21596:13;21629:5;21622:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21542:100;:::o;23610:204::-;23678:7;23703:16;23711:7;23703;:16::i;:::-;23698:64;;23728:34;;;;;;;;;;;;;;23698:64;23782:15;:24;23798:7;23782:24;;;;;;;;;;;;;;;;;;;;;23775:31;;23610:204;;;:::o;23070:474::-;23143:13;23175:27;23194:7;23175:18;:27::i;:::-;23143:61;;23225:5;23219:11;;:2;:11;;;23215:48;;23239:24;;;;;;;;;;;;;;23215:48;23303:5;23280:28;;:19;:17;:19::i;:::-;:28;;;23276:175;;23328:44;23345:5;23352:19;:17;:19::i;:::-;23328:16;:44::i;:::-;23323:128;;23400:35;;;;;;;;;;;;;;23323:128;23276:175;23490:2;23463:15;:24;23479:7;23463:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;23528:7;23524:2;23508:28;;23517:5;23508:28;;;;;;;;;;;;23132:412;23070:474;;:::o;15583:315::-;15636:7;15864:15;:13;:15::i;:::-;15849:12;;15833:13;;:28;:46;15826:53;;15583:315;:::o;24496:170::-;24630:28;24640:4;24646:2;24650:7;24630:9;:28::i;:::-;24496:170;;;:::o;42135:47::-;;;;:::o;45011:206::-;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45062:12:::1;45088:10;45080:24;;45126:21;45080:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45061:101;;;45181:7;45173:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;45050:167;45011:206::o:0;24737:185::-;24875:39;24892:4;24898:2;24902:7;24875:39;;;;;;;;;;;;:16;:39::i;:::-;24737:185;;;:::o;41964:49::-;;;;:::o;44769:106::-;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44860:7:::1;;44844:13;:23;;;;;;;:::i;:::-;;44769:106:::0;;:::o;21331:144::-;21395:7;21438:27;21457:7;21438:18;:27::i;:::-;21415:52;;21331:144;;;:::o;17208:224::-;17272:7;17313:1;17296:19;;:5;:19;;;17292:60;;17324:28;;;;;;;;;;;;;;17292:60;12547:13;17370:18;:25;17389:5;17370:25;;;;;;;;;;;;;;;;:54;17363:61;;17208:224;;;:::o;2639:103::-;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2704:30:::1;2731:1;2704:18;:30::i;:::-;2639:103::o:0;44677:84::-;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44741:12:::1;;;;;;;;;;;44740:13;44725:12;;:28;;;;;;;;;;;;;;;;;;44677:84::o:0;44425:114::-;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44524:7:::1;44498:23;:33;;;;44425:114:::0;:::o;43441:536::-;42618:12;;;;;;;;;;;42610:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;42690:10;42677:23;;:9;:23;;;42669:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43570:9:::1;43554:13;:11;:13::i;:::-;:25;;;;:::i;:::-;43537:13;;:42;;43515:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;43643:25;43671:16;:28;43688:10;43671:28;;;;;;;;;;;;;;;;43643:56;;43765:27;;43752:9;43732:17;:29;;;;:::i;:::-;:60;;43710:145;;;;;;;;;;;;:::i;:::-;;;;;;;;;43917:9;43897:17;:29;;;;:::i;:::-;43866:16;:28;43883:10;43866:28;;;;;;;;;;;;;;;:60;;;;43937:32;43947:10;43959:9;43937;:32::i;:::-;43504:473;43441:536:::0;:::o;42080:48::-;;;;:::o;1988:87::-;2034:7;2061:6;;;;;;;;;;;2054:13;;1988:87;:::o;44219:86::-;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44291:6:::1;44283:5;:14;;;;44219:86:::0;:::o;21711:104::-;21767:13;21800:7;21793:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21711:104;:::o;42362:51::-;;;;;;;;;;;;;;;;;:::o;42195:57::-;;;;:::o;42761:672::-;42618:12;;;;;;;;;;;42610:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;42690:10;42677:23;;:9;:23;;;42669:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42890:9:::1;42874:13;:11;:13::i;:::-;:25;;;;:::i;:::-;42861:9;;:38;;42839:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;42957:21;42981:12;:24;42994:10;42981:24;;;;;;;;;;;;;;;;42957:48;;43067:23;;43054:9;43038:13;:25;;;;:::i;:::-;:52;;43016:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;43193:1;43181:9;:13;:48;;;;;43211:18;;43198:9;:31;;43181:48;43159:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;43331:9;43315:13;:25;;;;:::i;:::-;43288:12;:24;43301:10;43288:24;;;;;;;;;;;;;;;:52;;;;43351:32;43361:10;43373:9;43351;:32::i;:::-;43394:31;43415:9;43407:5;;:17;;;;:::i;:::-;43394:12;:31::i;:::-;42828:605;42761:672:::0;:::o;23886:308::-;23997:19;:17;:19::i;:::-;23985:31;;:8;:31;;;23981:61;;24025:17;;;;;;;;;;;;;;23981:61;24107:8;24055:18;:39;24074:19;:17;:19::i;:::-;24055:39;;;;;;;;;;;;;;;:49;24095:8;24055:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;24167:8;24131:55;;24146:19;:17;:19::i;:::-;24131:55;;;24177:8;24131:55;;;;;;:::i;:::-;;;;;;;;23886:308;;:::o;24993:396::-;25160:28;25170:4;25176:2;25180:7;25160:9;:28::i;:::-;25221:1;25203:2;:14;;;:19;25199:183;;25242:56;25273:4;25279:2;25283:7;25292:5;25242:30;:56::i;:::-;25237:145;;25326:40;;;;;;;;;;;;;;25237:145;25199:183;24993:396;;;;:::o;44547:122::-;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44654:7:::1;44624:27;:37;;;;44547:122:::0;:::o;44313:104::-;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44402:7:::1;44381:18;:28;;;;44313:104:::0;:::o;21886:318::-;21959:13;21990:16;21998:7;21990;:16::i;:::-;21985:59;;22015:29;;;;;;;;;;;;;;21985:59;22057:21;22081:10;:8;:10::i;:::-;22057:34;;22134:1;22115:7;22109:21;:26;:87;;;;;;;;;;;;;;;;;22162:7;22171:18;22181:7;22171:9;:18::i;:::-;22145:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22109:87;22102:94;;;21886:318;;;:::o;42026:47::-;;;;:::o;41907:50::-;;;;:::o;24265:164::-;24362:4;24386:18;:25;24405:5;24386:25;;;;;;;;;;;;;;;:35;24412:8;24386:35;;;;;;;;;;;;;;;;;;;;;;;;;24379:42;;24265:164;;;;:::o;42259:51::-;;;;;;;;;;;;;:::o;2897:201::-;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3006:1:::1;2986:22;;:8;:22;;::::0;2978:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3062:28;3081:8;3062:18;:28::i;:::-;2897:201:::0;:::o;42420:47::-;;;;;;;;;;;;;;;;;:::o;25644:273::-;25701:4;25757:7;25738:15;:13;:15::i;:::-;:26;;:66;;;;;25791:13;;25781:7;:23;25738:66;:152;;;;;25889:1;13317:8;25842:17;:26;25860:7;25842:26;;;;;;;;;;;;:43;:48;25738:152;25718:172;;25644:273;;;:::o;18846:1129::-;18913:7;18933:12;18948:7;18933:22;;19016:4;18997:15;:13;:15::i;:::-;:23;18993:915;;19050:13;;19043:4;:20;19039:869;;;19088:14;19105:17;:23;19123:4;19105:23;;;;;;;;;;;;19088:40;;19221:1;13317:8;19194:6;:23;:28;19190:699;;19713:113;19730:1;19720:6;:11;19713:113;;19773:17;:25;19791:6;;;;;;;19773:25;;;;;;;;;;;;19764:34;;19713:113;;;19859:6;19852:13;;;;;;19190:699;19065:843;19039:869;18993:915;19936:31;;;;;;;;;;;;;;18846:1129;;;;:::o;39626:105::-;39686:7;39713:10;39706:17;;39626:105;:::o;15106:92::-;15162:7;15106:92;:::o;30883:2515::-;30998:27;31028;31047:7;31028:18;:27::i;:::-;30998:57;;31113:4;31072:45;;31088:19;31072:45;;;31068:86;;31126:28;;;;;;;;;;;;;;31068:86;31167:22;31216:4;31193:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;31237:43;31254:4;31260:19;:17;:19::i;:::-;31237:16;:43::i;:::-;31193:87;:147;;;;31321:19;:17;:19::i;:::-;31297:43;;:20;31309:7;31297:11;:20::i;:::-;:43;;;31193:147;31167:174;;31359:17;31354:66;;31385:35;;;;;;;;;;;;;;31354:66;31449:1;31435:16;;:2;:16;;;31431:52;;31460:23;;;;;;;;;;;;;;31431:52;31496:43;31518:4;31524:2;31528:7;31537:1;31496:21;:43::i;:::-;31612:15;:24;31628:7;31612:24;;;;;;;;;;;;31605:31;;;;;;;;;;;32004:18;:24;32023:4;32004:24;;;;;;;;;;;;;;;;32002:26;;;;;;;;;;;;32073:18;:22;32092:2;32073:22;;;;;;;;;;;;;;;;32071:24;;;;;;;;;;;13599:8;13201:3;32454:15;:41;;32412:21;32430:2;32412:17;:21::i;:::-;:84;:128;32366:17;:26;32384:7;32366:26;;;;;;;;;;;:174;;;;32710:1;13599:8;32660:19;:46;:51;32656:626;;32732:19;32764:1;32754:7;:11;32732:33;;32921:1;32887:17;:30;32905:11;32887:30;;;;;;;;;;;;:35;32883:384;;33025:13;;33010:11;:28;33006:242;;33205:19;33172:17;:30;33190:11;33172:30;;;;;;;;;;;:52;;;;33006:242;32883:384;32713:569;32656:626;33329:7;33325:2;33310:27;;33319:4;33310:27;;;;;;;;;;;;33348:42;33369:4;33375:2;33379:7;33388:1;33348:20;:42::i;:::-;30987:2411;;30883:2515;;;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;3258:191::-;3332:16;3351:6;;;;;;;;;;;3332:25;;3377:8;3368:6;;:17;;;;;;;;;;;;;;;;;;3432:8;3401:40;;3422:8;3401:40;;;;;;;;;;;;3321:128;3258:191;:::o;26001:104::-;26070:27;26080:2;26084:8;26070:27;;;;;;;;;;;;:9;:27::i;:::-;26001:104;;:::o;43985:226::-;44063:6;44050:9;:19;;44042:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;44121:6;44109:9;:18;44105:99;;;44152:10;44144:28;;:48;44185:6;44173:9;:18;;;;:::i;:::-;44144:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44105:99;43985:226;:::o;37095:716::-;37258:4;37304:2;37279:45;;;37325:19;:17;:19::i;:::-;37346:4;37352:7;37361:5;37279:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37275:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37579:1;37562:6;:13;:18;37558:235;;37608:40;;;;;;;;;;;;;;37558:235;37751:6;37745:13;37736:6;37732:2;37728:15;37721:38;37275:529;37448:54;;;37438:64;;;:6;:64;;;;37431:71;;;37095:716;;;;;;:::o;44883:114::-;44943:13;44976;44969:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44883:114;:::o;39837:1959::-;39894:17;40315:3;40308:4;40302:11;40298:21;40291:28;;40406:3;40400:4;40393:17;40512:3;40969:5;41099:1;41094:3;41090:11;41083:18;;41236:2;41230:4;41226:13;41222:2;41218:22;41213:3;41205:36;41277:2;41271:4;41267:13;41259:21;;40860:682;41296:4;40860:682;;;41471:1;41466:3;41462:11;41455:18;;41522:2;41516:4;41512:13;41508:2;41504:22;41499:3;41491:36;41392:2;41386:4;41382:13;41374:21;;40860:682;;;40864:431;41593:3;41588;41584:13;41708:2;41703:3;41699:12;41692:19;;41771:6;41766:3;41759:19;39933:1856;;39837:1959;;;:::o;38459:159::-;;;;;:::o;22631:148::-;22695:14;22756:5;22746:15;;22631:148;;;:::o;39277:158::-;;;;;:::o;26478:2236::-;26601:20;26624:13;;26601:36;;26666:1;26652:16;;:2;:16;;;26648:48;;26677:19;;;;;;;;;;;;;;26648:48;26723:1;26711:8;:13;26707:44;;26733:18;;;;;;;;;;;;;;26707:44;26764:61;26794:1;26798:2;26802:12;26816:8;26764:21;:61::i;:::-;27368:1;12684:2;27339:1;:25;;27338:31;27326:8;:44;27300:18;:22;27319:2;27300:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;13464:3;27769:29;27796:1;27784:8;:13;27769:14;:29::i;:::-;:56;;13201:3;27706:15;:41;;27664:21;27682:2;27664:17;:21::i;:::-;:84;:162;27613:17;:31;27631:12;27613:31;;;;;;;;;;;:213;;;;27843:20;27866:12;27843:35;;27893:11;27922:8;27907:12;:23;27893:37;;27969:1;27951:2;:14;;;:19;27947:635;;27991:313;28047:12;28043:2;28022:38;;28039:1;28022:38;;;;;;;;;;;;28088:69;28127:1;28131:2;28135:14;;;;;;28151:5;28088:30;:69::i;:::-;28083:174;;28193:40;;;;;;;;;;;;;;28083:174;28299:3;28284:12;:18;27991:313;;28385:12;28368:13;;:29;28364:43;;28399:8;;;28364:43;27947:635;;;28448:119;28504:14;;;;;;28500:2;28479:40;;28496:1;28479:40;;;;;;;;;;;;28562:3;28547:12;:18;28448:119;;27947:635;28612:12;28596:13;:28;;;;27077:1559;;28646:60;28675:1;28679:2;28683:12;28697:8;28646:20;:60::i;:::-;26590:2124;26478:2236;;;:::o;22866:142::-;22924:14;22985:5;22975:15;;22866:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:117::-;8571:1;8568;8561:12;8585:180;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:281;8854:27;8876:4;8854:27;:::i;:::-;8846:6;8842:40;8984:6;8972:10;8969:22;8948:18;8936:10;8933:34;8930:62;8927:88;;;8995:18;;:::i;:::-;8927:88;9035:10;9031:2;9024:22;8814:238;8771:281;;:::o;9058:129::-;9092:6;9119:20;;:::i;:::-;9109:30;;9148:33;9176:4;9168:6;9148:33;:::i;:::-;9058:129;;;:::o;9193:307::-;9254:4;9344:18;9336:6;9333:30;9330:56;;;9366:18;;:::i;:::-;9330:56;9404:29;9426:6;9404:29;:::i;:::-;9396:37;;9488:4;9482;9478:15;9470:23;;9193:307;;;:::o;9506:154::-;9590:6;9585:3;9580;9567:30;9652:1;9643:6;9638:3;9634:16;9627:27;9506:154;;;:::o;9666:410::-;9743:5;9768:65;9784:48;9825:6;9784:48;:::i;:::-;9768:65;:::i;:::-;9759:74;;9856:6;9849:5;9842:21;9894:4;9887:5;9883:16;9932:3;9923:6;9918:3;9914:16;9911:25;9908:112;;;9939:79;;:::i;:::-;9908:112;10029:41;10063:6;10058:3;10053;10029:41;:::i;:::-;9749:327;9666:410;;;;;:::o;10095:338::-;10150:5;10199:3;10192:4;10184:6;10180:17;10176:27;10166:122;;10207:79;;:::i;:::-;10166:122;10324:6;10311:20;10349:78;10423:3;10415:6;10408:4;10400:6;10396:17;10349:78;:::i;:::-;10340:87;;10156:277;10095:338;;;;:::o;10439:943::-;10534:6;10542;10550;10558;10607:3;10595:9;10586:7;10582:23;10578:33;10575:120;;;10614:79;;:::i;:::-;10575:120;10734:1;10759:53;10804:7;10795:6;10784:9;10780:22;10759:53;:::i;:::-;10749:63;;10705:117;10861:2;10887:53;10932:7;10923:6;10912:9;10908:22;10887:53;:::i;:::-;10877:63;;10832:118;10989:2;11015:53;11060:7;11051:6;11040:9;11036:22;11015:53;:::i;:::-;11005:63;;10960:118;11145:2;11134:9;11130:18;11117:32;11176:18;11168:6;11165:30;11162:117;;;11198:79;;:::i;:::-;11162:117;11303:62;11357:7;11348:6;11337:9;11333:22;11303:62;:::i;:::-;11293:72;;11088:287;10439:943;;;;;;;:::o;11388:474::-;11456:6;11464;11513:2;11501:9;11492:7;11488:23;11484:32;11481:119;;;11519:79;;:::i;:::-;11481:119;11639:1;11664:53;11709:7;11700:6;11689:9;11685:22;11664:53;:::i;:::-;11654:63;;11610:117;11766:2;11792:53;11837:7;11828:6;11817:9;11813:22;11792:53;:::i;:::-;11782:63;;11737:118;11388:474;;;;;:::o;11868:180::-;11916:77;11913:1;11906:88;12013:4;12010:1;12003:15;12037:4;12034:1;12027:15;12054:320;12098:6;12135:1;12129:4;12125:12;12115:22;;12182:1;12176:4;12172:12;12203:18;12193:81;;12259:4;12251:6;12247:17;12237:27;;12193:81;12321:2;12313:6;12310:14;12290:18;12287:38;12284:84;;12340:18;;:::i;:::-;12284:84;12105:269;12054:320;;;:::o;12380:182::-;12520:34;12516:1;12508:6;12504:14;12497:58;12380:182;:::o;12568:366::-;12710:3;12731:67;12795:2;12790:3;12731:67;:::i;:::-;12724:74;;12807:93;12896:3;12807:93;:::i;:::-;12925:2;12920:3;12916:12;12909:19;;12568:366;;;:::o;12940:419::-;13106:4;13144:2;13133:9;13129:18;13121:26;;13193:9;13187:4;13183:20;13179:1;13168:9;13164:17;13157:47;13221:131;13347:4;13221:131;:::i;:::-;13213:139;;12940:419;;;:::o;13365:147::-;13466:11;13503:3;13488:18;;13365:147;;;;:::o;13518:114::-;;:::o;13638:398::-;13797:3;13818:83;13899:1;13894:3;13818:83;:::i;:::-;13811:90;;13910:93;13999:3;13910:93;:::i;:::-;14028:1;14023:3;14019:11;14012:18;;13638:398;;;:::o;14042:379::-;14226:3;14248:147;14391:3;14248:147;:::i;:::-;14241:154;;14412:3;14405:10;;14042:379;;;:::o;14427:166::-;14567:18;14563:1;14555:6;14551:14;14544:42;14427:166;:::o;14599:366::-;14741:3;14762:67;14826:2;14821:3;14762:67;:::i;:::-;14755:74;;14838:93;14927:3;14838:93;:::i;:::-;14956:2;14951:3;14947:12;14940:19;;14599:366;;;:::o;14971:419::-;15137:4;15175:2;15164:9;15160:18;15152:26;;15224:9;15218:4;15214:20;15210:1;15199:9;15195:17;15188:47;15252:131;15378:4;15252:131;:::i;:::-;15244:139;;14971:419;;;:::o;15396:173::-;15536:25;15532:1;15524:6;15520:14;15513:49;15396:173;:::o;15575:366::-;15717:3;15738:67;15802:2;15797:3;15738:67;:::i;:::-;15731:74;;15814:93;15903:3;15814:93;:::i;:::-;15932:2;15927:3;15923:12;15916:19;;15575:366;;;:::o;15947:419::-;16113:4;16151:2;16140:9;16136:18;16128:26;;16200:9;16194:4;16190:20;16186:1;16175:9;16171:17;16164:47;16228:131;16354:4;16228:131;:::i;:::-;16220:139;;15947:419;;;:::o;16372:178::-;16512:30;16508:1;16500:6;16496:14;16489:54;16372:178;:::o;16556:366::-;16698:3;16719:67;16783:2;16778:3;16719:67;:::i;:::-;16712:74;;16795:93;16884:3;16795:93;:::i;:::-;16913:2;16908:3;16904:12;16897:19;;16556:366;;;:::o;16928:419::-;17094:4;17132:2;17121:9;17117:18;17109:26;;17181:9;17175:4;17171:20;17167:1;17156:9;17152:17;17145:47;17209:131;17335:4;17209:131;:::i;:::-;17201:139;;16928:419;;;:::o;17353:180::-;17401:77;17398:1;17391:88;17498:4;17495:1;17488:15;17522:4;17519:1;17512:15;17539:305;17579:3;17598:20;17616:1;17598:20;:::i;:::-;17593:25;;17632:20;17650:1;17632:20;:::i;:::-;17627:25;;17786:1;17718:66;17714:74;17711:1;17708:81;17705:107;;;17792:18;;:::i;:::-;17705:107;17836:1;17833;17829:9;17822:16;;17539:305;;;;:::o;17850:174::-;17990:26;17986:1;17978:6;17974:14;17967:50;17850:174;:::o;18030:366::-;18172:3;18193:67;18257:2;18252:3;18193:67;:::i;:::-;18186:74;;18269:93;18358:3;18269:93;:::i;:::-;18387:2;18382:3;18378:12;18371:19;;18030:366;;;:::o;18402:419::-;18568:4;18606:2;18595:9;18591:18;18583:26;;18655:9;18649:4;18645:20;18641:1;18630:9;18626:17;18619:47;18683:131;18809:4;18683:131;:::i;:::-;18675:139;;18402:419;;;:::o;18827:222::-;18967:34;18963:1;18955:6;18951:14;18944:58;19036:5;19031:2;19023:6;19019:15;19012:30;18827:222;:::o;19055:366::-;19197:3;19218:67;19282:2;19277:3;19218:67;:::i;:::-;19211:74;;19294:93;19383:3;19294:93;:::i;:::-;19412:2;19407:3;19403:12;19396:19;;19055:366;;;:::o;19427:419::-;19593:4;19631:2;19620:9;19616:18;19608:26;;19680:9;19674:4;19670:20;19666:1;19655:9;19651:17;19644:47;19708:131;19834:4;19708:131;:::i;:::-;19700:139;;19427:419;;;:::o;19852:169::-;19992:21;19988:1;19980:6;19976:14;19969:45;19852:169;:::o;20027:366::-;20169:3;20190:67;20254:2;20249:3;20190:67;:::i;:::-;20183:74;;20266:93;20355:3;20266:93;:::i;:::-;20384:2;20379:3;20375:12;20368:19;;20027:366;;;:::o;20399:419::-;20565:4;20603:2;20592:9;20588:18;20580:26;;20652:9;20646:4;20642:20;20638:1;20627:9;20623:17;20616:47;20680:131;20806:4;20680:131;:::i;:::-;20672:139;;20399:419;;;:::o;20824:180::-;20964:32;20960:1;20952:6;20948:14;20941:56;20824:180;:::o;21010:366::-;21152:3;21173:67;21237:2;21232:3;21173:67;:::i;:::-;21166:74;;21249:93;21338:3;21249:93;:::i;:::-;21367:2;21362:3;21358:12;21351:19;;21010:366;;;:::o;21382:419::-;21548:4;21586:2;21575:9;21571:18;21563:26;;21635:9;21629:4;21625:20;21621:1;21610:9;21606:17;21599:47;21663:131;21789:4;21663:131;:::i;:::-;21655:139;;21382:419;;;:::o;21807:170::-;21947:22;21943:1;21935:6;21931:14;21924:46;21807:170;:::o;21983:366::-;22125:3;22146:67;22210:2;22205:3;22146:67;:::i;:::-;22139:74;;22222:93;22311:3;22222:93;:::i;:::-;22340:2;22335:3;22331:12;22324:19;;21983:366;;;:::o;22355:419::-;22521:4;22559:2;22548:9;22544:18;22536:26;;22608:9;22602:4;22598:20;22594:1;22583:9;22579:17;22572:47;22636:131;22762:4;22636:131;:::i;:::-;22628:139;;22355:419;;;:::o;22780:348::-;22820:7;22843:20;22861:1;22843:20;:::i;:::-;22838:25;;22877:20;22895:1;22877:20;:::i;:::-;22872:25;;23065:1;22997:66;22993:74;22990:1;22987:81;22982:1;22975:9;22968:17;22964:105;22961:131;;;23072:18;;:::i;:::-;22961:131;23120:1;23117;23113:9;23102:20;;22780:348;;;;:::o;23134:148::-;23236:11;23273:3;23258:18;;23134:148;;;;:::o;23288:377::-;23394:3;23422:39;23455:5;23422:39;:::i;:::-;23477:89;23559:6;23554:3;23477:89;:::i;:::-;23470:96;;23575:52;23620:6;23615:3;23608:4;23601:5;23597:16;23575:52;:::i;:::-;23652:6;23647:3;23643:16;23636:23;;23398:267;23288:377;;;;:::o;23671:435::-;23851:3;23873:95;23964:3;23955:6;23873:95;:::i;:::-;23866:102;;23985:95;24076:3;24067:6;23985:95;:::i;:::-;23978:102;;24097:3;24090:10;;23671:435;;;;;:::o;24112:225::-;24252:34;24248:1;24240:6;24236:14;24229:58;24321:8;24316:2;24308:6;24304:15;24297:33;24112:225;:::o;24343:366::-;24485:3;24506:67;24570:2;24565:3;24506:67;:::i;:::-;24499:74;;24582:93;24671:3;24582:93;:::i;:::-;24700:2;24695:3;24691:12;24684:19;;24343:366;;;:::o;24715:419::-;24881:4;24919:2;24908:9;24904:18;24896:26;;24968:9;24962:4;24958:20;24954:1;24943:9;24939:17;24932:47;24996:131;25122:4;24996:131;:::i;:::-;24988:139;;24715:419;;;:::o;25140:170::-;25280:22;25276:1;25268:6;25264:14;25257:46;25140:170;:::o;25316:366::-;25458:3;25479:67;25543:2;25538:3;25479:67;:::i;:::-;25472:74;;25555:93;25644:3;25555:93;:::i;:::-;25673:2;25668:3;25664:12;25657:19;;25316:366;;;:::o;25688:419::-;25854:4;25892:2;25881:9;25877:18;25869:26;;25941:9;25935:4;25931:20;25927:1;25916:9;25912:17;25905:47;25969:131;26095:4;25969:131;:::i;:::-;25961:139;;25688:419;;;:::o;26113:191::-;26153:4;26173:20;26191:1;26173:20;:::i;:::-;26168:25;;26207:20;26225:1;26207:20;:::i;:::-;26202:25;;26246:1;26243;26240:8;26237:34;;;26251:18;;:::i;:::-;26237:34;26296:1;26293;26289:9;26281:17;;26113:191;;;;:::o;26310:98::-;26361:6;26395:5;26389:12;26379:22;;26310:98;;;:::o;26414:168::-;26497:11;26531:6;26526:3;26519:19;26571:4;26566:3;26562:14;26547:29;;26414:168;;;;:::o;26588:360::-;26674:3;26702:38;26734:5;26702:38;:::i;:::-;26756:70;26819:6;26814:3;26756:70;:::i;:::-;26749:77;;26835:52;26880:6;26875:3;26868:4;26861:5;26857:16;26835:52;:::i;:::-;26912:29;26934:6;26912:29;:::i;:::-;26907:3;26903:39;26896:46;;26678:270;26588:360;;;;:::o;26954:640::-;27149:4;27187:3;27176:9;27172:19;27164:27;;27201:71;27269:1;27258:9;27254:17;27245:6;27201:71;:::i;:::-;27282:72;27350:2;27339:9;27335:18;27326:6;27282:72;:::i;:::-;27364;27432:2;27421:9;27417:18;27408:6;27364:72;:::i;:::-;27483:9;27477:4;27473:20;27468:2;27457:9;27453:18;27446:48;27511:76;27582:4;27573:6;27511:76;:::i;:::-;27503:84;;26954:640;;;;;;;:::o;27600:141::-;27656:5;27687:6;27681:13;27672:22;;27703:32;27729:5;27703:32;:::i;:::-;27600:141;;;;:::o;27747:349::-;27816:6;27865:2;27853:9;27844:7;27840:23;27836:32;27833:119;;;27871:79;;:::i;:::-;27833:119;27991:1;28016:63;28071:7;28062:6;28051:9;28047:22;28016:63;:::i;:::-;28006:73;;27962:127;27747:349;;;;:::o

Swarm Source

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