ETH Price: $2,391.37 (-0.95%)

Token

Ugly Orangutan (UO)
 

Overview

Max Total Supply

3,333 UO

Holders

838

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 UO
0xfc409154f2940b6cae2a1a91059f54cd8b392e76
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:
UglyOrangutan

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

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

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

// File: contracts/UglyOrangutan.sol


pragma solidity ^0.8.4;




contract UglyOrangutan is ERC721A, Ownable, ReentrancyGuard {
  string public uriPrefix = 'https://aquamarine-naval-barracuda-611.mypinata.cloud/ipfs/QmZGuzRVBwmXZCLLx41m4SCYGXpqBRoB6aLU58VF65NGBY/';

  uint256 public cost = 0.003 ether;
  uint256 public maxSupply = 3333;
  uint256 public maxMintAmountPerTx = 3;

  bool public paused = true;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol
  ) ERC721A(_tokenName, _tokenSymbol) {
    _safeMint(msg.sender, 10);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    if (totalSupply() + _mintAmount > 1000) {
      require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    }
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');

    _safeMint(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _toString(_tokenId)))
        : '';
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":"maxMintAmountPerTx","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":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060a00160405280606a8152602001620037c9606a9139600a908051906020019062000035929190620006b6565b50660aa87bee538000600b55610d05600c556003600d556001600e60006101000a81548160ff0219169083151502179055503480156200007457600080fd5b50604051620038333803806200383383398181016040528101906200009a91906200082d565b81818160029080519060200190620000b4929190620006b6565b508060039080519060200190620000cd929190620006b6565b50620000de6200012960201b60201c565b600081905550505062000106620000fa6200012e60201b60201c565b6200013660201b60201c565b60016009819055506200012133600a620001fc60201b60201c565b505062000b8d565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200021e8282604051806020016040528060008152506200022260201b60201c565b5050565b620002348383620002d360201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14620002ce57600080549050600083820390505b6200027d6000868380600101945086620004bc60201b60201c565b620002b4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811062000262578160005414620002cb57600080fd5b50505b505050565b600080549050600082141562000315576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200032a60008483856200062e60201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620003b9836200039b60008660006200063460201b60201c565b620003ac856200066460201b60201c565b176200067460201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200045c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506200041f565b50600082141562000499576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620004b760008483856200069f60201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620004ea620006a560201b60201c565b8786866040518563ffffffff1660e01b81526004016200050e949392919062000915565b602060405180830381600087803b1580156200052957600080fd5b505af19250505080156200055d57506040513d601f19601f820116820180604052508101906200055a9190620007fb565b60015b620005db573d806000811462000590576040519150601f19603f3d011682016040523d82523d6000602084013e62000595565b606091505b50600081511415620005d3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e862000653868684620006ad60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b828054620006c49062000a84565b90600052602060002090601f016020900481019282620006e8576000855562000734565b82601f106200070357805160ff191683800117855562000734565b8280016001018555821562000734579182015b828111156200073357825182559160200191906001019062000716565b5b50905062000743919062000747565b5090565b5b808211156200076257600081600090555060010162000748565b5090565b60006200077d620007778462000992565b62000969565b9050828152602081018484840111156200079c576200079b62000b53565b5b620007a984828562000a4e565b509392505050565b600081519050620007c28162000b73565b92915050565b600082601f830112620007e057620007df62000b4e565b5b8151620007f284826020860162000766565b91505092915050565b60006020828403121562000814576200081362000b5d565b5b60006200082484828501620007b1565b91505092915050565b6000806040838503121562000847576200084662000b5d565b5b600083015167ffffffffffffffff81111562000868576200086762000b58565b5b6200087685828601620007c8565b925050602083015167ffffffffffffffff8111156200089a576200089962000b58565b5b620008a885828601620007c8565b9150509250929050565b620008bd81620009e4565b82525050565b6000620008d082620009c8565b620008dc8185620009d3565b9350620008ee81856020860162000a4e565b620008f98162000b62565b840191505092915050565b6200090f8162000a44565b82525050565b60006080820190506200092c6000830187620008b2565b6200093b6020830186620008b2565b6200094a604083018562000904565b81810360608301526200095e8184620008c3565b905095945050505050565b60006200097562000988565b905062000983828262000aba565b919050565b6000604051905090565b600067ffffffffffffffff821115620009b057620009af62000b1f565b5b620009bb8262000b62565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b6000620009f18262000a24565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000a6e57808201518184015260208101905062000a51565b8381111562000a7e576000848401525b50505050565b6000600282049050600182168062000a9d57607f821691505b6020821081141562000ab45762000ab362000af0565b5b50919050565b62000ac58262000b62565b810181811067ffffffffffffffff8211171562000ae75762000ae662000b1f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000b7e81620009f8565b811462000b8a57600080fd5b50565b612c2c8062000b9d6000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb01146105a3578063e985e9c5146105ce578063efbd73f41461060b578063f2fde38b14610634576101b7565b8063a22cb46514610521578063b88d4fde1461054a578063c87b56dd14610566576101b7565b80638da5cb5b116100c65780638da5cb5b1461048457806394354fd0146104af57806395d89b41146104da578063a0712d6814610505576101b7565b806370a0823114610407578063715018a6146104445780637ec4a6591461045b576101b7565b806323b872dd1161015957806344a0d68a1161013357806344a0d68a1461034b5780635c975abb1461037457806362b99ad41461039f5780636352211e146103ca576101b7565b806323b872dd146102fc5780633ccfd60b1461031857806342842e0e1461032f576101b7565b8063095ea7b311610195578063095ea7b31461026157806313faede61461027d57806316c38b3c146102a857806318160ddd146102d1576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906121a0565b61065d565b6040516101f0919061255b565b60405180910390f35b34801561020557600080fd5b5061020e6106ef565b60405161021b9190612576565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612243565b610781565b60405161025891906124f4565b60405180910390f35b61027b60048036038101906102769190612133565b610800565b005b34801561028957600080fd5b50610292610944565b60405161029f9190612698565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612173565b61094a565b005b3480156102dd57600080fd5b506102e661096f565b6040516102f39190612698565b60405180910390f35b6103166004803603810190610311919061201d565b610986565b005b34801561032457600080fd5b5061032d610cab565b005b6103496004803603810190610344919061201d565b610d89565b005b34801561035757600080fd5b50610372600480360381019061036d9190612243565b610da9565b005b34801561038057600080fd5b50610389610dbb565b604051610396919061255b565b60405180910390f35b3480156103ab57600080fd5b506103b4610dce565b6040516103c19190612576565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612243565b610e5c565b6040516103fe91906124f4565b60405180910390f35b34801561041357600080fd5b5061042e60048036038101906104299190611fb0565b610e6e565b60405161043b9190612698565b60405180910390f35b34801561045057600080fd5b50610459610f27565b005b34801561046757600080fd5b50610482600480360381019061047d91906121fa565b610f3b565b005b34801561049057600080fd5b50610499610f5d565b6040516104a691906124f4565b60405180910390f35b3480156104bb57600080fd5b506104c4610f87565b6040516104d19190612698565b60405180910390f35b3480156104e657600080fd5b506104ef610f8d565b6040516104fc9190612576565b60405180910390f35b61051f600480360381019061051a9190612243565b61101f565b005b34801561052d57600080fd5b50610548600480360381019061054391906120f3565b611195565b005b610564600480360381019061055f9190612070565b6112a0565b005b34801561057257600080fd5b5061058d60048036038101906105889190612243565b611313565b60405161059a9190612576565b60405180910390f35b3480156105af57600080fd5b506105b86113ba565b6040516105c59190612698565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f09190611fdd565b6113c0565b604051610602919061255b565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d9190612270565b611454565b005b34801561064057600080fd5b5061065b60048036038101906106569190611fb0565b611514565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106fe906128ee565b80601f016020809104026020016040519081016040528092919081815260200182805461072a906128ee565b80156107775780601f1061074c57610100808354040283529160200191610777565b820191906000526020600020905b81548152906001019060200180831161075a57829003601f168201915b5050505050905090565b600061078c82611598565b6107c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080b82610e5c565b90508073ffffffffffffffffffffffffffffffffffffffff1661082c6115f7565b73ffffffffffffffffffffffffffffffffffffffff161461088f57610858816108536115f7565b6113c0565b61088e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6109526115ff565b80600e60006101000a81548160ff02191690831515021790555050565b600061097961167d565b6001546000540303905090565b600061099182611682565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0484611750565b91509150610a1a8187610a156115f7565b611777565b610a6657610a2f86610a2a6115f7565b6113c0565b610a65576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610acd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ada86868660016117bb565b8015610ae557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bb385610b8f8888876117c1565b7c0200000000000000000000000000000000000000000000000000000000176117e9565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c3b576000600185019050600060046000838152602001908152602001600020541415610c39576000548114610c38578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ca38686866001611814565b505050505050565b610cb36115ff565b60026009541415610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090612658565b60405180910390fd5b60026009819055506000610d0b610f5d565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d2e906124df565b60006040518083038185875af1925050503d8060008114610d6b576040519150601f19603f3d011682016040523d82523d6000602084013e610d70565b606091505b5050905080610d7e57600080fd5b506001600981905550565b610da4838383604051806020016040528060008152506112a0565b505050565b610db16115ff565b80600b8190555050565b600e60009054906101000a900460ff1681565b600a8054610ddb906128ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610e07906128ee565b8015610e545780601f10610e2957610100808354040283529160200191610e54565b820191906000526020600020905b815481529060010190602001808311610e3757829003601f168201915b505050505081565b6000610e6782611682565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ed6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f2f6115ff565b610f39600061181a565b565b610f436115ff565b80600a9080519060200190610f59929190611dc4565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b606060038054610f9c906128ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc8906128ee565b80156110155780601f10610fea57610100808354040283529160200191611015565b820191906000526020600020905b815481529060010190602001808311610ff857829003601f168201915b5050505050905090565b806000811180156110325750600d548111155b611071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611068906125b8565b60405180910390fd5b600c548161107d61096f565b6110879190612788565b11156110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf90612638565b60405180910390fd5b816103e8816110d561096f565b6110df9190612788565b11156111365780600b546110f391906127de565b341015611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c90612678565b60405180910390fd5b5b600e60009054906101000a900460ff1615611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906125f8565b60405180910390fd5b61119033846118e0565b505050565b80600760006111a26115f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661124f6115f7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611294919061255b565b60405180910390a35050565b6112ab848484610986565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461130d576112d6848484846118fe565b61130c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061131e82611598565b61135d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135490612618565b60405180910390fd5b6000611367611a5e565b9050600081511161138757604051806020016040528060008152506113b2565b8061139184611af0565b6040516020016113a29291906124bb565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156114675750600d548111155b6114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d906125b8565b60405180910390fd5b600c54816114b261096f565b6114bc9190612788565b11156114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f490612638565b60405180910390fd5b6115056115ff565b61150f82846118e0565b505050565b61151c6115ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390612598565b60405180910390fd5b6115958161181a565b50565b6000816115a361167d565b111580156115b2575060005482105b80156115f0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611607611b49565b73ffffffffffffffffffffffffffffffffffffffff16611625610f5d565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611672906125d8565b60405180910390fd5b565b600090565b6000808290508061169161167d565b11611719576000548110156117185760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611716575b600081141561170c5760046000836001900393508381526020019081526020016000205490506116e1565b809250505061174b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117d8868684611b51565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118fa828260405180602001604052806000815250611b5a565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119246115f7565b8786866040518563ffffffff1660e01b8152600401611946949392919061250f565b602060405180830381600087803b15801561196057600080fd5b505af192505050801561199157506040513d601f19601f8201168201806040525081019061198e91906121cd565b60015b611a0b573d80600081146119c1576040519150601f19603f3d011682016040523d82523d6000602084013e6119c6565b606091505b50600081511415611a03576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611a6d906128ee565b80601f0160208091040260200160405190810160405280929190818152602001828054611a99906128ee565b8015611ae65780601f10611abb57610100808354040283529160200191611ae6565b820191906000526020600020905b815481529060010190602001808311611ac957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611b3457600184039350600a81066030018453600a8104905080611b2f57611b34565b611b09565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611b648383611bf7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bf257600080549050600083820390505b611ba460008683806001019450866118fe565b611bda576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611b91578160005414611bef57600080fd5b50505b505050565b6000805490506000821415611c38576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c4560008483856117bb565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611cbc83611cad60008660006117c1565b611cb685611db4565b176117e9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611d5d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d22565b506000821415611d99576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611daf6000848385611814565b505050565b60006001821460e11b9050919050565b828054611dd0906128ee565b90600052602060002090601f016020900481019282611df25760008555611e39565b82601f10611e0b57805160ff1916838001178555611e39565b82800160010185558215611e39579182015b82811115611e38578251825591602001919060010190611e1d565b5b509050611e469190611e4a565b5090565b5b80821115611e63576000816000905550600101611e4b565b5090565b6000611e7a611e75846126d8565b6126b3565b905082815260208101848484011115611e9657611e956129e3565b5b611ea18482856128ac565b509392505050565b6000611ebc611eb784612709565b6126b3565b905082815260208101848484011115611ed857611ed76129e3565b5b611ee38482856128ac565b509392505050565b600081359050611efa81612b9a565b92915050565b600081359050611f0f81612bb1565b92915050565b600081359050611f2481612bc8565b92915050565b600081519050611f3981612bc8565b92915050565b600082601f830112611f5457611f536129de565b5b8135611f64848260208601611e67565b91505092915050565b600082601f830112611f8257611f816129de565b5b8135611f92848260208601611ea9565b91505092915050565b600081359050611faa81612bdf565b92915050565b600060208284031215611fc657611fc56129ed565b5b6000611fd484828501611eeb565b91505092915050565b60008060408385031215611ff457611ff36129ed565b5b600061200285828601611eeb565b925050602061201385828601611eeb565b9150509250929050565b600080600060608486031215612036576120356129ed565b5b600061204486828701611eeb565b935050602061205586828701611eeb565b925050604061206686828701611f9b565b9150509250925092565b6000806000806080858703121561208a576120896129ed565b5b600061209887828801611eeb565b94505060206120a987828801611eeb565b93505060406120ba87828801611f9b565b925050606085013567ffffffffffffffff8111156120db576120da6129e8565b5b6120e787828801611f3f565b91505092959194509250565b6000806040838503121561210a576121096129ed565b5b600061211885828601611eeb565b925050602061212985828601611f00565b9150509250929050565b6000806040838503121561214a576121496129ed565b5b600061215885828601611eeb565b925050602061216985828601611f9b565b9150509250929050565b600060208284031215612189576121886129ed565b5b600061219784828501611f00565b91505092915050565b6000602082840312156121b6576121b56129ed565b5b60006121c484828501611f15565b91505092915050565b6000602082840312156121e3576121e26129ed565b5b60006121f184828501611f2a565b91505092915050565b6000602082840312156122105761220f6129ed565b5b600082013567ffffffffffffffff81111561222e5761222d6129e8565b5b61223a84828501611f6d565b91505092915050565b600060208284031215612259576122586129ed565b5b600061226784828501611f9b565b91505092915050565b60008060408385031215612287576122866129ed565b5b600061229585828601611f9b565b92505060206122a685828601611eeb565b9150509250929050565b6122b981612838565b82525050565b6122c88161284a565b82525050565b60006122d98261273a565b6122e38185612750565b93506122f38185602086016128bb565b6122fc816129f2565b840191505092915050565b600061231282612745565b61231c818561276c565b935061232c8185602086016128bb565b612335816129f2565b840191505092915050565b600061234b82612745565b612355818561277d565b93506123658185602086016128bb565b80840191505092915050565b600061237e60268361276c565b915061238982612a03565b604082019050919050565b60006123a160148361276c565b91506123ac82612a52565b602082019050919050565b60006123c460208361276c565b91506123cf82612a7b565b602082019050919050565b60006123e760178361276c565b91506123f282612aa4565b602082019050919050565b600061240a602f8361276c565b915061241582612acd565b604082019050919050565b600061242d600083612761565b915061243882612b1c565b600082019050919050565b600061245060148361276c565b915061245b82612b1f565b602082019050919050565b6000612473601f8361276c565b915061247e82612b48565b602082019050919050565b600061249660138361276c565b91506124a182612b71565b602082019050919050565b6124b5816128a2565b82525050565b60006124c78285612340565b91506124d38284612340565b91508190509392505050565b60006124ea82612420565b9150819050919050565b600060208201905061250960008301846122b0565b92915050565b600060808201905061252460008301876122b0565b61253160208301866122b0565b61253e60408301856124ac565b818103606083015261255081846122ce565b905095945050505050565b600060208201905061257060008301846122bf565b92915050565b600060208201905081810360008301526125908184612307565b905092915050565b600060208201905081810360008301526125b181612371565b9050919050565b600060208201905081810360008301526125d181612394565b9050919050565b600060208201905081810360008301526125f1816123b7565b9050919050565b60006020820190508181036000830152612611816123da565b9050919050565b60006020820190508181036000830152612631816123fd565b9050919050565b6000602082019050818103600083015261265181612443565b9050919050565b6000602082019050818103600083015261267181612466565b9050919050565b6000602082019050818103600083015261269181612489565b9050919050565b60006020820190506126ad60008301846124ac565b92915050565b60006126bd6126ce565b90506126c98282612920565b919050565b6000604051905090565b600067ffffffffffffffff8211156126f3576126f26129af565b5b6126fc826129f2565b9050602081019050919050565b600067ffffffffffffffff821115612724576127236129af565b5b61272d826129f2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612793826128a2565b915061279e836128a2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127d3576127d2612951565b5b828201905092915050565b60006127e9826128a2565b91506127f4836128a2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561282d5761282c612951565b5b828202905092915050565b600061284382612882565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156128d95780820151818401526020810190506128be565b838111156128e8576000848401525b50505050565b6000600282049050600182168061290657607f821691505b6020821081141561291a57612919612980565b5b50919050565b612929826129f2565b810181811067ffffffffffffffff82111715612948576129476129af565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b612ba381612838565b8114612bae57600080fd5b50565b612bba8161284a565b8114612bc557600080fd5b50565b612bd181612856565b8114612bdc57600080fd5b50565b612be8816128a2565b8114612bf357600080fd5b5056fea264697066735822122079c4e5f43fb9ea7fc8a98a8309f79401d8f262e8c52ac81472a47ada9107263b64736f6c6343000807003368747470733a2f2f617175616d6172696e652d6e6176616c2d6261727261637564612d3631312e6d7970696e6174612e636c6f75642f697066732f516d5a47757a525642776d585a434c4c7834316d345343594758707142526f4236614c553538564636354e4742592f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e55676c79204f72616e677574616e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002554f000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb01146105a3578063e985e9c5146105ce578063efbd73f41461060b578063f2fde38b14610634576101b7565b8063a22cb46514610521578063b88d4fde1461054a578063c87b56dd14610566576101b7565b80638da5cb5b116100c65780638da5cb5b1461048457806394354fd0146104af57806395d89b41146104da578063a0712d6814610505576101b7565b806370a0823114610407578063715018a6146104445780637ec4a6591461045b576101b7565b806323b872dd1161015957806344a0d68a1161013357806344a0d68a1461034b5780635c975abb1461037457806362b99ad41461039f5780636352211e146103ca576101b7565b806323b872dd146102fc5780633ccfd60b1461031857806342842e0e1461032f576101b7565b8063095ea7b311610195578063095ea7b31461026157806313faede61461027d57806316c38b3c146102a857806318160ddd146102d1576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906121a0565b61065d565b6040516101f0919061255b565b60405180910390f35b34801561020557600080fd5b5061020e6106ef565b60405161021b9190612576565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612243565b610781565b60405161025891906124f4565b60405180910390f35b61027b60048036038101906102769190612133565b610800565b005b34801561028957600080fd5b50610292610944565b60405161029f9190612698565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612173565b61094a565b005b3480156102dd57600080fd5b506102e661096f565b6040516102f39190612698565b60405180910390f35b6103166004803603810190610311919061201d565b610986565b005b34801561032457600080fd5b5061032d610cab565b005b6103496004803603810190610344919061201d565b610d89565b005b34801561035757600080fd5b50610372600480360381019061036d9190612243565b610da9565b005b34801561038057600080fd5b50610389610dbb565b604051610396919061255b565b60405180910390f35b3480156103ab57600080fd5b506103b4610dce565b6040516103c19190612576565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612243565b610e5c565b6040516103fe91906124f4565b60405180910390f35b34801561041357600080fd5b5061042e60048036038101906104299190611fb0565b610e6e565b60405161043b9190612698565b60405180910390f35b34801561045057600080fd5b50610459610f27565b005b34801561046757600080fd5b50610482600480360381019061047d91906121fa565b610f3b565b005b34801561049057600080fd5b50610499610f5d565b6040516104a691906124f4565b60405180910390f35b3480156104bb57600080fd5b506104c4610f87565b6040516104d19190612698565b60405180910390f35b3480156104e657600080fd5b506104ef610f8d565b6040516104fc9190612576565b60405180910390f35b61051f600480360381019061051a9190612243565b61101f565b005b34801561052d57600080fd5b50610548600480360381019061054391906120f3565b611195565b005b610564600480360381019061055f9190612070565b6112a0565b005b34801561057257600080fd5b5061058d60048036038101906105889190612243565b611313565b60405161059a9190612576565b60405180910390f35b3480156105af57600080fd5b506105b86113ba565b6040516105c59190612698565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f09190611fdd565b6113c0565b604051610602919061255b565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d9190612270565b611454565b005b34801561064057600080fd5b5061065b60048036038101906106569190611fb0565b611514565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106fe906128ee565b80601f016020809104026020016040519081016040528092919081815260200182805461072a906128ee565b80156107775780601f1061074c57610100808354040283529160200191610777565b820191906000526020600020905b81548152906001019060200180831161075a57829003601f168201915b5050505050905090565b600061078c82611598565b6107c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080b82610e5c565b90508073ffffffffffffffffffffffffffffffffffffffff1661082c6115f7565b73ffffffffffffffffffffffffffffffffffffffff161461088f57610858816108536115f7565b6113c0565b61088e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6109526115ff565b80600e60006101000a81548160ff02191690831515021790555050565b600061097961167d565b6001546000540303905090565b600061099182611682565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0484611750565b91509150610a1a8187610a156115f7565b611777565b610a6657610a2f86610a2a6115f7565b6113c0565b610a65576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610acd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ada86868660016117bb565b8015610ae557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bb385610b8f8888876117c1565b7c0200000000000000000000000000000000000000000000000000000000176117e9565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c3b576000600185019050600060046000838152602001908152602001600020541415610c39576000548114610c38578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ca38686866001611814565b505050505050565b610cb36115ff565b60026009541415610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090612658565b60405180910390fd5b60026009819055506000610d0b610f5d565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d2e906124df565b60006040518083038185875af1925050503d8060008114610d6b576040519150601f19603f3d011682016040523d82523d6000602084013e610d70565b606091505b5050905080610d7e57600080fd5b506001600981905550565b610da4838383604051806020016040528060008152506112a0565b505050565b610db16115ff565b80600b8190555050565b600e60009054906101000a900460ff1681565b600a8054610ddb906128ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610e07906128ee565b8015610e545780601f10610e2957610100808354040283529160200191610e54565b820191906000526020600020905b815481529060010190602001808311610e3757829003601f168201915b505050505081565b6000610e6782611682565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ed6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f2f6115ff565b610f39600061181a565b565b610f436115ff565b80600a9080519060200190610f59929190611dc4565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b606060038054610f9c906128ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc8906128ee565b80156110155780601f10610fea57610100808354040283529160200191611015565b820191906000526020600020905b815481529060010190602001808311610ff857829003601f168201915b5050505050905090565b806000811180156110325750600d548111155b611071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611068906125b8565b60405180910390fd5b600c548161107d61096f565b6110879190612788565b11156110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf90612638565b60405180910390fd5b816103e8816110d561096f565b6110df9190612788565b11156111365780600b546110f391906127de565b341015611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c90612678565b60405180910390fd5b5b600e60009054906101000a900460ff1615611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906125f8565b60405180910390fd5b61119033846118e0565b505050565b80600760006111a26115f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661124f6115f7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611294919061255b565b60405180910390a35050565b6112ab848484610986565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461130d576112d6848484846118fe565b61130c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061131e82611598565b61135d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135490612618565b60405180910390fd5b6000611367611a5e565b9050600081511161138757604051806020016040528060008152506113b2565b8061139184611af0565b6040516020016113a29291906124bb565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156114675750600d548111155b6114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d906125b8565b60405180910390fd5b600c54816114b261096f565b6114bc9190612788565b11156114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f490612638565b60405180910390fd5b6115056115ff565b61150f82846118e0565b505050565b61151c6115ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390612598565b60405180910390fd5b6115958161181a565b50565b6000816115a361167d565b111580156115b2575060005482105b80156115f0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611607611b49565b73ffffffffffffffffffffffffffffffffffffffff16611625610f5d565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611672906125d8565b60405180910390fd5b565b600090565b6000808290508061169161167d565b11611719576000548110156117185760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611716575b600081141561170c5760046000836001900393508381526020019081526020016000205490506116e1565b809250505061174b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117d8868684611b51565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118fa828260405180602001604052806000815250611b5a565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119246115f7565b8786866040518563ffffffff1660e01b8152600401611946949392919061250f565b602060405180830381600087803b15801561196057600080fd5b505af192505050801561199157506040513d601f19601f8201168201806040525081019061198e91906121cd565b60015b611a0b573d80600081146119c1576040519150601f19603f3d011682016040523d82523d6000602084013e6119c6565b606091505b50600081511415611a03576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611a6d906128ee565b80601f0160208091040260200160405190810160405280929190818152602001828054611a99906128ee565b8015611ae65780601f10611abb57610100808354040283529160200191611ae6565b820191906000526020600020905b815481529060010190602001808311611ac957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611b3457600184039350600a81066030018453600a8104905080611b2f57611b34565b611b09565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611b648383611bf7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bf257600080549050600083820390505b611ba460008683806001019450866118fe565b611bda576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611b91578160005414611bef57600080fd5b50505b505050565b6000805490506000821415611c38576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c4560008483856117bb565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611cbc83611cad60008660006117c1565b611cb685611db4565b176117e9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611d5d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d22565b506000821415611d99576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611daf6000848385611814565b505050565b60006001821460e11b9050919050565b828054611dd0906128ee565b90600052602060002090601f016020900481019282611df25760008555611e39565b82601f10611e0b57805160ff1916838001178555611e39565b82800160010185558215611e39579182015b82811115611e38578251825591602001919060010190611e1d565b5b509050611e469190611e4a565b5090565b5b80821115611e63576000816000905550600101611e4b565b5090565b6000611e7a611e75846126d8565b6126b3565b905082815260208101848484011115611e9657611e956129e3565b5b611ea18482856128ac565b509392505050565b6000611ebc611eb784612709565b6126b3565b905082815260208101848484011115611ed857611ed76129e3565b5b611ee38482856128ac565b509392505050565b600081359050611efa81612b9a565b92915050565b600081359050611f0f81612bb1565b92915050565b600081359050611f2481612bc8565b92915050565b600081519050611f3981612bc8565b92915050565b600082601f830112611f5457611f536129de565b5b8135611f64848260208601611e67565b91505092915050565b600082601f830112611f8257611f816129de565b5b8135611f92848260208601611ea9565b91505092915050565b600081359050611faa81612bdf565b92915050565b600060208284031215611fc657611fc56129ed565b5b6000611fd484828501611eeb565b91505092915050565b60008060408385031215611ff457611ff36129ed565b5b600061200285828601611eeb565b925050602061201385828601611eeb565b9150509250929050565b600080600060608486031215612036576120356129ed565b5b600061204486828701611eeb565b935050602061205586828701611eeb565b925050604061206686828701611f9b565b9150509250925092565b6000806000806080858703121561208a576120896129ed565b5b600061209887828801611eeb565b94505060206120a987828801611eeb565b93505060406120ba87828801611f9b565b925050606085013567ffffffffffffffff8111156120db576120da6129e8565b5b6120e787828801611f3f565b91505092959194509250565b6000806040838503121561210a576121096129ed565b5b600061211885828601611eeb565b925050602061212985828601611f00565b9150509250929050565b6000806040838503121561214a576121496129ed565b5b600061215885828601611eeb565b925050602061216985828601611f9b565b9150509250929050565b600060208284031215612189576121886129ed565b5b600061219784828501611f00565b91505092915050565b6000602082840312156121b6576121b56129ed565b5b60006121c484828501611f15565b91505092915050565b6000602082840312156121e3576121e26129ed565b5b60006121f184828501611f2a565b91505092915050565b6000602082840312156122105761220f6129ed565b5b600082013567ffffffffffffffff81111561222e5761222d6129e8565b5b61223a84828501611f6d565b91505092915050565b600060208284031215612259576122586129ed565b5b600061226784828501611f9b565b91505092915050565b60008060408385031215612287576122866129ed565b5b600061229585828601611f9b565b92505060206122a685828601611eeb565b9150509250929050565b6122b981612838565b82525050565b6122c88161284a565b82525050565b60006122d98261273a565b6122e38185612750565b93506122f38185602086016128bb565b6122fc816129f2565b840191505092915050565b600061231282612745565b61231c818561276c565b935061232c8185602086016128bb565b612335816129f2565b840191505092915050565b600061234b82612745565b612355818561277d565b93506123658185602086016128bb565b80840191505092915050565b600061237e60268361276c565b915061238982612a03565b604082019050919050565b60006123a160148361276c565b91506123ac82612a52565b602082019050919050565b60006123c460208361276c565b91506123cf82612a7b565b602082019050919050565b60006123e760178361276c565b91506123f282612aa4565b602082019050919050565b600061240a602f8361276c565b915061241582612acd565b604082019050919050565b600061242d600083612761565b915061243882612b1c565b600082019050919050565b600061245060148361276c565b915061245b82612b1f565b602082019050919050565b6000612473601f8361276c565b915061247e82612b48565b602082019050919050565b600061249660138361276c565b91506124a182612b71565b602082019050919050565b6124b5816128a2565b82525050565b60006124c78285612340565b91506124d38284612340565b91508190509392505050565b60006124ea82612420565b9150819050919050565b600060208201905061250960008301846122b0565b92915050565b600060808201905061252460008301876122b0565b61253160208301866122b0565b61253e60408301856124ac565b818103606083015261255081846122ce565b905095945050505050565b600060208201905061257060008301846122bf565b92915050565b600060208201905081810360008301526125908184612307565b905092915050565b600060208201905081810360008301526125b181612371565b9050919050565b600060208201905081810360008301526125d181612394565b9050919050565b600060208201905081810360008301526125f1816123b7565b9050919050565b60006020820190508181036000830152612611816123da565b9050919050565b60006020820190508181036000830152612631816123fd565b9050919050565b6000602082019050818103600083015261265181612443565b9050919050565b6000602082019050818103600083015261267181612466565b9050919050565b6000602082019050818103600083015261269181612489565b9050919050565b60006020820190506126ad60008301846124ac565b92915050565b60006126bd6126ce565b90506126c98282612920565b919050565b6000604051905090565b600067ffffffffffffffff8211156126f3576126f26129af565b5b6126fc826129f2565b9050602081019050919050565b600067ffffffffffffffff821115612724576127236129af565b5b61272d826129f2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612793826128a2565b915061279e836128a2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127d3576127d2612951565b5b828201905092915050565b60006127e9826128a2565b91506127f4836128a2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561282d5761282c612951565b5b828202905092915050565b600061284382612882565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156128d95780820151818401526020810190506128be565b838111156128e8576000848401525b50505050565b6000600282049050600182168061290657607f821691505b6020821081141561291a57612919612980565b5b50919050565b612929826129f2565b810181811067ffffffffffffffff82111715612948576129476129af565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b612ba381612838565b8114612bae57600080fd5b50565b612bba8161284a565b8114612bc557600080fd5b50565b612bd181612856565b8114612bdc57600080fd5b50565b612be8816128a2565b8114612bf357600080fd5b5056fea264697066735822122079c4e5f43fb9ea7fc8a98a8309f79401d8f262e8c52ac81472a47ada9107263b64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e55676c79204f72616e677574616e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002554f000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Ugly Orangutan
Arg [1] : _tokenSymbol (string): UO

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 55676c79204f72616e677574616e000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 554f000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

57895:2227:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24789:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25691:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32182:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31615:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58101:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59776:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21442:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35821:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59859:150;;;;;;;;;;;;;:::i;:::-;;38742:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59590:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58219:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57960:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27084:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22626:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5568:103;;;;;;;;;;;;;:::i;:::-;;59670:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4920:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58175:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25867:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58843:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32740:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39533:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59222:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58139:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33131:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59061:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5826:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24789:639;24874:4;25213:10;25198:25;;:11;:25;;;;:102;;;;25290:10;25275:25;;:11;:25;;;;25198:102;:179;;;;25367:10;25352:25;;:11;:25;;;;25198:179;25178:199;;24789:639;;;:::o;25691:100::-;25745:13;25778:5;25771:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25691:100;:::o;32182:218::-;32258:7;32283:16;32291:7;32283;:16::i;:::-;32278:64;;32308:34;;;;;;;;;;;;;;32278:64;32362:15;:24;32378:7;32362:24;;;;;;;;;;;:30;;;;;;;;;;;;32355:37;;32182:218;;;:::o;31615:408::-;31704:13;31720:16;31728:7;31720;:16::i;:::-;31704:32;;31776:5;31753:28;;:19;:17;:19::i;:::-;:28;;;31749:175;;31801:44;31818:5;31825:19;:17;:19::i;:::-;31801:16;:44::i;:::-;31796:128;;31873:35;;;;;;;;;;;;;;31796:128;31749:175;31969:2;31936:15;:24;31952:7;31936:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32007:7;32003:2;31987:28;;31996:5;31987:28;;;;;;;;;;;;31693:330;31615:408;;:::o;58101:33::-;;;;:::o;59776:77::-;4806:13;:11;:13::i;:::-;59841:6:::1;59832;;:15;;;;;;;;;;;;;;;;;;59776:77:::0;:::o;21442:323::-;21503:7;21731:15;:13;:15::i;:::-;21716:12;;21700:13;;:28;:46;21693:53;;21442:323;:::o;35821:2825::-;35963:27;35993;36012:7;35993:18;:27::i;:::-;35963:57;;36078:4;36037:45;;36053:19;36037:45;;;36033:86;;36091:28;;;;;;;;;;;;;;36033:86;36133:27;36162:23;36189:35;36216:7;36189:26;:35::i;:::-;36132:92;;;;36324:68;36349:15;36366:4;36372:19;:17;:19::i;:::-;36324:24;:68::i;:::-;36319:180;;36412:43;36429:4;36435:19;:17;:19::i;:::-;36412:16;:43::i;:::-;36407:92;;36464:35;;;;;;;;;;;;;;36407:92;36319:180;36530:1;36516:16;;:2;:16;;;36512:52;;;36541:23;;;;;;;;;;;;;;36512:52;36577:43;36599:4;36605:2;36609:7;36618:1;36577:21;:43::i;:::-;36713:15;36710:160;;;36853:1;36832:19;36825:30;36710:160;37250:18;:24;37269:4;37250:24;;;;;;;;;;;;;;;;37248:26;;;;;;;;;;;;37319:18;:22;37338:2;37319:22;;;;;;;;;;;;;;;;37317:24;;;;;;;;;;;37641:146;37678:2;37727:45;37742:4;37748:2;37752:19;37727:14;:45::i;:::-;17841:8;37699:73;37641:18;:146::i;:::-;37612:17;:26;37630:7;37612:26;;;;;;;;;;;:175;;;;37958:1;17841:8;37907:19;:47;:52;37903:627;;;37980:19;38012:1;38002:7;:11;37980:33;;38169:1;38135:17;:30;38153:11;38135:30;;;;;;;;;;;;:35;38131:384;;;38273:13;;38258:11;:28;38254:242;;38453:19;38420:17;:30;38438:11;38420:30;;;;;;;;;;;:52;;;;38254:242;38131:384;37961:569;37903:627;38577:7;38573:2;38558:27;;38567:4;38558:27;;;;;;;;;;;;38596:42;38617:4;38623:2;38627:7;38636:1;38596:20;:42::i;:::-;35952:2694;;;35821:2825;;;:::o;59859:150::-;4806:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;59917:7:::2;59938;:5;:7::i;:::-;59930:21;;59959;59930:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59916:69;;;60000:2;59992:11;;;::::0;::::2;;59909:100;1801:1:::1;2755:7;:22;;;;59859:150::o:0;38742:193::-;38888:39;38905:4;38911:2;38915:7;38888:39;;;;;;;;;;;;:16;:39::i;:::-;38742:193;;;:::o;59590:74::-;4806:13;:11;:13::i;:::-;59653:5:::1;59646:4;:12;;;;59590:74:::0;:::o;58219:25::-;;;;;;;;;;;;;:::o;57960:134::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27084:152::-;27156:7;27199:27;27218:7;27199:18;:27::i;:::-;27176:52;;27084:152;;;:::o;22626:233::-;22698:7;22739:1;22722:19;;:5;:19;;;22718:60;;;22750:28;;;;;;;;;;;;;;22718:60;16785:13;22796:18;:25;22815:5;22796:25;;;;;;;;;;;;;;;;:55;22789:62;;22626:233;;;:::o;5568:103::-;4806:13;:11;:13::i;:::-;5633:30:::1;5660:1;5633:18;:30::i;:::-;5568:103::o:0;59670:100::-;4806:13;:11;:13::i;:::-;59754:10:::1;59742:9;:22;;;;;;;;;;;;:::i;:::-;;59670:100:::0;:::o;4920:87::-;4966:7;4993:6;;;;;;;;;;;4986:13;;4920:87;:::o;58175:37::-;;;;:::o;25867:104::-;25923:13;25956:7;25949:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25867:104;:::o;58843:210::-;58908:11;58484:1;58470:11;:15;:52;;;;;58504:18;;58489:11;:33;;58470:52;58462:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58593:9;;58578:11;58562:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58554:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58941:11:::1;58738:4;58724:11;58708:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:34;58704:120;;;58781:11;58774:4;;:18;;;;:::i;:::-;58761:9;:31;;58753:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;58704:120;58970:6:::2;;;;;;;;;;;58969:7;58961:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;59013:34;59023:10;59035:11;59013:9;:34::i;:::-;58634:1:::1;58843:210:::0;;:::o;32740:234::-;32887:8;32835:18;:39;32854:19;:17;:19::i;:::-;32835:39;;;;;;;;;;;;;;;:49;32875:8;32835:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32947:8;32911:55;;32926:19;:17;:19::i;:::-;32911:55;;;32957:8;32911:55;;;;;;:::i;:::-;;;;;;;;32740:234;;:::o;39533:407::-;39708:31;39721:4;39727:2;39731:7;39708:12;:31::i;:::-;39772:1;39754:2;:14;;;:19;39750:183;;39793:56;39824:4;39830:2;39834:7;39843:5;39793:30;:56::i;:::-;39788:145;;39877:40;;;;;;;;;;;;;;39788:145;39750:183;39533:407;;;;:::o;59222:362::-;59296:13;59326:17;59334:8;59326:7;:17::i;:::-;59318:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;59404:28;59435:10;:8;:10::i;:::-;59404:41;;59490:1;59465:14;59459:28;:32;:119;;;;;;;;;;;;;;;;;59527:14;59543:19;59553:8;59543:9;:19::i;:::-;59510:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59459:119;59452:126;;;59222:362;;;:::o;58139:31::-;;;;:::o;33131:164::-;33228:4;33252:18;:25;33271:5;33252:25;;;;;;;;;;;;;;;:35;33278:8;33252:35;;;;;;;;;;;;;;;;;;;;;;;;;33245:42;;33131:164;;;;:::o;59061:155::-;59147:11;58484:1;58470:11;:15;:52;;;;;58504:18;;58489:11;:33;;58470:52;58462:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58593:9;;58578:11;58562:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58554:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4806:13:::1;:11;:13::i;:::-;59177:33:::2;59187:9;59198:11;59177:9;:33::i;:::-;59061:155:::0;;;:::o;5826:201::-;4806:13;:11;:13::i;:::-;5935:1:::1;5915:22;;:8;:22;;;;5907:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5991:28;6010:8;5991:18;:28::i;:::-;5826:201:::0;:::o;33553:282::-;33618:4;33674:7;33655:15;:13;:15::i;:::-;:26;;:66;;;;;33708:13;;33698:7;:23;33655:66;:153;;;;;33807:1;17561:8;33759:17;:26;33777:7;33759:26;;;;;;;;;;;;:44;:49;33655:153;33635:173;;33553:282;;;:::o;55861:105::-;55921:7;55948:10;55941:17;;55861:105;:::o;5085:132::-;5160:12;:10;:12::i;:::-;5149:23;;:7;:5;:7::i;:::-;:23;;;5141:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5085:132::o;20958:92::-;21014:7;20958:92;:::o;28239:1275::-;28306:7;28326:12;28341:7;28326:22;;28409:4;28390:15;:13;:15::i;:::-;:23;28386:1061;;28443:13;;28436:4;:20;28432:1015;;;28481:14;28498:17;:23;28516:4;28498:23;;;;;;;;;;;;28481:40;;28615:1;17561:8;28587:6;:24;:29;28583:845;;;29252:113;29269:1;29259:6;:11;29252:113;;;29312:17;:25;29330:6;;;;;;;29312:25;;;;;;;;;;;;29303:34;;29252:113;;;29398:6;29391:13;;;;;;28583:845;28458:989;28432:1015;28386:1061;29475:31;;;;;;;;;;;;;;28239:1275;;;;:::o;34716:485::-;34818:27;34847:23;34888:38;34929:15;:24;34945:7;34929:24;;;;;;;;;;;34888:65;;35106:18;35083:41;;35163:19;35157:26;35138:45;;35068:126;34716:485;;;:::o;33944:659::-;34093:11;34258:16;34251:5;34247:28;34238:37;;34418:16;34407:9;34403:32;34390:45;;34568:15;34557:9;34554:30;34546:5;34535:9;34532:20;34529:56;34519:66;;33944:659;;;;;:::o;40602:159::-;;;;;:::o;55170:311::-;55305:7;55325:16;17965:3;55351:19;:41;;55325:68;;17965:3;55419:31;55430:4;55436:2;55440:9;55419:10;:31::i;:::-;55411:40;;:62;;55404:69;;;55170:311;;;;;:::o;30062:450::-;30142:14;30310:16;30303:5;30299:28;30290:37;;30487:5;30473:11;30448:23;30444:41;30441:52;30434:5;30431:63;30421:73;;30062:450;;;;:::o;41426:158::-;;;;;:::o;6187:191::-;6261:16;6280:6;;;;;;;;;;;6261:25;;6306:8;6297:6;;:17;;;;;;;;;;;;;;;;;;6361:8;6330:40;;6351:8;6330:40;;;;;;;;;;;;6250:128;6187:191;:::o;49693:112::-;49770:27;49780:2;49784:8;49770:27;;;;;;;;;;;;:9;:27::i;:::-;49693:112;;:::o;42024:716::-;42187:4;42233:2;42208:45;;;42254:19;:17;:19::i;:::-;42275:4;42281:7;42290:5;42208:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42204:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42508:1;42491:6;:13;:18;42487:235;;;42537:40;;;;;;;;;;;;;;42487:235;42680:6;42674:13;42665:6;42661:2;42657:15;42650:38;42204:529;42377:54;;;42367:64;;;:6;:64;;;;42360:71;;;42024:716;;;;;;:::o;60015:104::-;60075:13;60104:9;60097:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60015:104;:::o;56068:1745::-;56133:17;56567:4;56560;56554:11;56550:22;56659:1;56653:4;56646:15;56734:4;56731:1;56727:12;56720:19;;56816:1;56811:3;56804:14;56920:3;57159:5;57141:428;57167:1;57141:428;;;57207:1;57202:3;57198:11;57191:18;;57378:2;57372:4;57368:13;57364:2;57360:22;57355:3;57347:36;57472:2;57466:4;57462:13;57454:21;;57539:4;57529:25;;57547:5;;57529:25;57141:428;;;57145:21;57608:3;57603;57599:13;57723:4;57718:3;57714:14;57707:21;;57788:6;57783:3;57776:19;56172:1634;;;56068:1745;;;:::o;3471:98::-;3524:7;3551:10;3544:17;;3471:98;:::o;54871:147::-;55008:6;54871:147;;;;;:::o;48920:689::-;49051:19;49057:2;49061:8;49051:5;:19::i;:::-;49130:1;49112:2;:14;;;:19;49108:483;;49152:11;49166:13;;49152:27;;49198:13;49220:8;49214:3;:14;49198:30;;49247:233;49278:62;49317:1;49321:2;49325:7;;;;;;49334:5;49278:30;:62::i;:::-;49273:167;;49376:40;;;;;;;;;;;;;;49273:167;49475:3;49467:5;:11;49247:233;;49562:3;49545:13;;:20;49541:34;;49567:8;;;49541:34;49133:458;;49108:483;48920:689;;;:::o;43202:2966::-;43275:20;43298:13;;43275:36;;43338:1;43326:8;:13;43322:44;;;43348:18;;;;;;;;;;;;;;43322:44;43379:61;43409:1;43413:2;43417:12;43431:8;43379:21;:61::i;:::-;43923:1;16923:2;43893:1;:26;;43892:32;43880:8;:45;43854:18;:22;43873:2;43854:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44202:139;44239:2;44293:33;44316:1;44320:2;44324:1;44293:14;:33::i;:::-;44260:30;44281:8;44260:20;:30::i;:::-;:66;44202:18;:139::i;:::-;44168:17;:31;44186:12;44168:31;;;;;;;;;;;:173;;;;44358:16;44389:11;44418:8;44403:12;:23;44389:37;;44939:16;44935:2;44931:25;44919:37;;45311:12;45271:8;45230:1;45168:25;45109:1;45048;45021:335;45682:1;45668:12;45664:20;45622:346;45723:3;45714:7;45711:16;45622:346;;45941:7;45931:8;45928:1;45901:25;45898:1;45895;45890:59;45776:1;45767:7;45763:15;45752:26;;45622:346;;;45626:77;46013:1;46001:8;:13;45997:45;;;46023:19;;;;;;;;;;;;;;45997:45;46075:3;46059:13;:19;;;;43628:2462;;46100:60;46129:1;46133:2;46137:12;46151:8;46100:20;:60::i;:::-;43264:2904;43202:2966;;:::o;30614:324::-;30684:14;30917:1;30907:8;30904:15;30878:24;30874:46;30864:56;;30614:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9325:366::-;9467:3;9488:67;9552:2;9547:3;9488:67;:::i;:::-;9481:74;;9564:93;9653:3;9564:93;:::i;:::-;9682:2;9677:3;9673:12;9666:19;;9325:366;;;:::o;9697:::-;9839:3;9860:67;9924:2;9919:3;9860:67;:::i;:::-;9853:74;;9936:93;10025:3;9936:93;:::i;:::-;10054:2;10049:3;10045:12;10038:19;;9697:366;;;:::o;10069:::-;10211:3;10232:67;10296:2;10291:3;10232:67;:::i;:::-;10225:74;;10308:93;10397:3;10308:93;:::i;:::-;10426:2;10421:3;10417:12;10410:19;;10069:366;;;:::o;10441:::-;10583:3;10604:67;10668:2;10663:3;10604:67;:::i;:::-;10597:74;;10680:93;10769:3;10680:93;:::i;:::-;10798:2;10793:3;10789:12;10782:19;;10441:366;;;:::o;10813:::-;10955:3;10976:67;11040:2;11035:3;10976:67;:::i;:::-;10969:74;;11052:93;11141:3;11052:93;:::i;:::-;11170:2;11165:3;11161:12;11154:19;;10813:366;;;:::o;11185:398::-;11344:3;11365:83;11446:1;11441:3;11365:83;:::i;:::-;11358:90;;11457:93;11546:3;11457:93;:::i;:::-;11575:1;11570:3;11566:11;11559:18;;11185:398;;;:::o;11589:366::-;11731:3;11752:67;11816:2;11811:3;11752:67;:::i;:::-;11745:74;;11828:93;11917:3;11828:93;:::i;:::-;11946:2;11941:3;11937:12;11930:19;;11589:366;;;:::o;11961:::-;12103:3;12124:67;12188:2;12183:3;12124:67;:::i;:::-;12117:74;;12200:93;12289:3;12200:93;:::i;:::-;12318:2;12313:3;12309:12;12302:19;;11961:366;;;:::o;12333:::-;12475:3;12496:67;12560:2;12555:3;12496:67;:::i;:::-;12489:74;;12572:93;12661:3;12572:93;:::i;:::-;12690:2;12685:3;12681:12;12674:19;;12333:366;;;:::o;12705:118::-;12792:24;12810:5;12792:24;:::i;:::-;12787:3;12780:37;12705:118;;:::o;12829:435::-;13009:3;13031:95;13122:3;13113:6;13031:95;:::i;:::-;13024:102;;13143:95;13234:3;13225:6;13143:95;:::i;:::-;13136:102;;13255:3;13248:10;;12829:435;;;;;:::o;13270:379::-;13454:3;13476:147;13619:3;13476:147;:::i;:::-;13469:154;;13640:3;13633:10;;13270:379;;;:::o;13655:222::-;13748:4;13786:2;13775:9;13771:18;13763:26;;13799:71;13867:1;13856:9;13852:17;13843:6;13799:71;:::i;:::-;13655:222;;;;:::o;13883:640::-;14078:4;14116:3;14105:9;14101:19;14093:27;;14130:71;14198:1;14187:9;14183:17;14174:6;14130:71;:::i;:::-;14211:72;14279:2;14268:9;14264:18;14255:6;14211:72;:::i;:::-;14293;14361:2;14350:9;14346:18;14337:6;14293:72;:::i;:::-;14412:9;14406:4;14402:20;14397:2;14386:9;14382:18;14375:48;14440:76;14511:4;14502:6;14440:76;:::i;:::-;14432:84;;13883:640;;;;;;;:::o;14529:210::-;14616:4;14654:2;14643:9;14639:18;14631:26;;14667:65;14729:1;14718:9;14714:17;14705:6;14667:65;:::i;:::-;14529:210;;;;:::o;14745:313::-;14858:4;14896:2;14885:9;14881:18;14873:26;;14945:9;14939:4;14935:20;14931:1;14920:9;14916:17;14909:47;14973:78;15046:4;15037:6;14973:78;:::i;:::-;14965:86;;14745:313;;;;:::o;15064:419::-;15230:4;15268:2;15257:9;15253:18;15245:26;;15317:9;15311:4;15307:20;15303:1;15292:9;15288:17;15281:47;15345:131;15471:4;15345:131;:::i;:::-;15337:139;;15064:419;;;:::o;15489:::-;15655:4;15693:2;15682:9;15678:18;15670:26;;15742:9;15736:4;15732:20;15728:1;15717:9;15713:17;15706:47;15770:131;15896:4;15770:131;:::i;:::-;15762:139;;15489:419;;;:::o;15914:::-;16080:4;16118:2;16107:9;16103:18;16095:26;;16167:9;16161:4;16157:20;16153:1;16142:9;16138:17;16131:47;16195:131;16321:4;16195:131;:::i;:::-;16187:139;;15914:419;;;:::o;16339:::-;16505:4;16543:2;16532:9;16528:18;16520:26;;16592:9;16586:4;16582:20;16578:1;16567:9;16563:17;16556:47;16620:131;16746:4;16620:131;:::i;:::-;16612:139;;16339:419;;;:::o;16764:::-;16930:4;16968:2;16957:9;16953:18;16945:26;;17017:9;17011:4;17007:20;17003:1;16992:9;16988:17;16981:47;17045:131;17171:4;17045:131;:::i;:::-;17037:139;;16764:419;;;:::o;17189:::-;17355:4;17393:2;17382:9;17378:18;17370:26;;17442:9;17436:4;17432:20;17428:1;17417:9;17413:17;17406:47;17470:131;17596:4;17470:131;:::i;:::-;17462:139;;17189:419;;;:::o;17614:::-;17780:4;17818:2;17807:9;17803:18;17795:26;;17867:9;17861:4;17857:20;17853:1;17842:9;17838:17;17831:47;17895:131;18021:4;17895:131;:::i;:::-;17887:139;;17614:419;;;:::o;18039:::-;18205:4;18243:2;18232:9;18228:18;18220:26;;18292:9;18286:4;18282:20;18278:1;18267:9;18263:17;18256:47;18320:131;18446:4;18320:131;:::i;:::-;18312:139;;18039:419;;;:::o;18464:222::-;18557:4;18595:2;18584:9;18580:18;18572:26;;18608:71;18676:1;18665:9;18661:17;18652:6;18608:71;:::i;:::-;18464:222;;;;:::o;18692:129::-;18726:6;18753:20;;:::i;:::-;18743:30;;18782:33;18810:4;18802:6;18782:33;:::i;:::-;18692:129;;;:::o;18827:75::-;18860:6;18893:2;18887:9;18877:19;;18827:75;:::o;18908:307::-;18969:4;19059:18;19051:6;19048:30;19045:56;;;19081:18;;:::i;:::-;19045:56;19119:29;19141:6;19119:29;:::i;:::-;19111:37;;19203:4;19197;19193:15;19185:23;;18908:307;;;:::o;19221:308::-;19283:4;19373:18;19365:6;19362:30;19359:56;;;19395:18;;:::i;:::-;19359:56;19433:29;19455:6;19433:29;:::i;:::-;19425:37;;19517:4;19511;19507:15;19499:23;;19221:308;;;:::o;19535:98::-;19586:6;19620:5;19614:12;19604:22;;19535:98;;;:::o;19639:99::-;19691:6;19725:5;19719:12;19709:22;;19639:99;;;:::o;19744:168::-;19827:11;19861:6;19856:3;19849:19;19901:4;19896:3;19892:14;19877:29;;19744:168;;;;:::o;19918:147::-;20019:11;20056:3;20041:18;;19918:147;;;;:::o;20071:169::-;20155:11;20189:6;20184:3;20177:19;20229:4;20224:3;20220:14;20205:29;;20071:169;;;;:::o;20246:148::-;20348:11;20385:3;20370:18;;20246:148;;;;:::o;20400:305::-;20440:3;20459:20;20477:1;20459:20;:::i;:::-;20454:25;;20493:20;20511:1;20493:20;:::i;:::-;20488:25;;20647:1;20579:66;20575:74;20572:1;20569:81;20566:107;;;20653:18;;:::i;:::-;20566:107;20697:1;20694;20690:9;20683:16;;20400:305;;;;:::o;20711:348::-;20751:7;20774:20;20792:1;20774:20;:::i;:::-;20769:25;;20808:20;20826:1;20808:20;:::i;:::-;20803:25;;20996:1;20928:66;20924:74;20921:1;20918:81;20913:1;20906:9;20899:17;20895:105;20892:131;;;21003:18;;:::i;:::-;20892:131;21051:1;21048;21044:9;21033:20;;20711:348;;;;:::o;21065:96::-;21102:7;21131:24;21149:5;21131:24;:::i;:::-;21120:35;;21065:96;;;:::o;21167:90::-;21201:7;21244:5;21237:13;21230:21;21219:32;;21167:90;;;:::o;21263:149::-;21299:7;21339:66;21332:5;21328:78;21317:89;;21263:149;;;:::o;21418:126::-;21455:7;21495:42;21488:5;21484:54;21473:65;;21418:126;;;:::o;21550:77::-;21587:7;21616:5;21605:16;;21550:77;;;:::o;21633:154::-;21717:6;21712:3;21707;21694:30;21779:1;21770:6;21765:3;21761:16;21754:27;21633:154;;;:::o;21793:307::-;21861:1;21871:113;21885:6;21882:1;21879:13;21871:113;;;21970:1;21965:3;21961:11;21955:18;21951:1;21946:3;21942:11;21935:39;21907:2;21904:1;21900:10;21895:15;;21871:113;;;22002:6;21999:1;21996:13;21993:101;;;22082:1;22073:6;22068:3;22064:16;22057:27;21993:101;21842:258;21793:307;;;:::o;22106:320::-;22150:6;22187:1;22181:4;22177:12;22167:22;;22234:1;22228:4;22224:12;22255:18;22245:81;;22311:4;22303:6;22299:17;22289:27;;22245:81;22373:2;22365:6;22362:14;22342:18;22339:38;22336:84;;;22392:18;;:::i;:::-;22336:84;22157:269;22106:320;;;:::o;22432:281::-;22515:27;22537:4;22515:27;:::i;:::-;22507:6;22503:40;22645:6;22633:10;22630:22;22609:18;22597:10;22594:34;22591:62;22588:88;;;22656:18;;:::i;:::-;22588:88;22696:10;22692:2;22685:22;22475:238;22432:281;;:::o;22719:180::-;22767:77;22764:1;22757:88;22864:4;22861:1;22854:15;22888:4;22885:1;22878:15;22905:180;22953:77;22950:1;22943:88;23050:4;23047:1;23040:15;23074:4;23071:1;23064:15;23091:180;23139:77;23136:1;23129:88;23236:4;23233:1;23226:15;23260:4;23257:1;23250:15;23277:117;23386:1;23383;23376:12;23400:117;23509:1;23506;23499:12;23523:117;23632:1;23629;23622:12;23646:117;23755:1;23752;23745:12;23769:102;23810:6;23861:2;23857:7;23852:2;23845:5;23841:14;23837:28;23827:38;;23769:102;;;:::o;23877:225::-;24017:34;24013:1;24005:6;24001:14;23994:58;24086:8;24081:2;24073:6;24069:15;24062:33;23877:225;:::o;24108:170::-;24248:22;24244:1;24236:6;24232:14;24225:46;24108:170;:::o;24284:182::-;24424:34;24420:1;24412:6;24408:14;24401:58;24284:182;:::o;24472:173::-;24612:25;24608:1;24600:6;24596:14;24589:49;24472:173;:::o;24651:234::-;24791:34;24787:1;24779:6;24775:14;24768:58;24860:17;24855:2;24847:6;24843:15;24836:42;24651:234;:::o;24891:114::-;;:::o;25011:170::-;25151:22;25147:1;25139:6;25135:14;25128:46;25011:170;:::o;25187:181::-;25327:33;25323:1;25315:6;25311:14;25304:57;25187:181;:::o;25374:169::-;25514:21;25510:1;25502:6;25498:14;25491:45;25374:169;:::o;25549:122::-;25622:24;25640:5;25622:24;:::i;:::-;25615:5;25612:35;25602:63;;25661:1;25658;25651:12;25602:63;25549:122;:::o;25677:116::-;25747:21;25762:5;25747:21;:::i;:::-;25740:5;25737:32;25727:60;;25783:1;25780;25773:12;25727:60;25677:116;:::o;25799:120::-;25871:23;25888:5;25871:23;:::i;:::-;25864:5;25861:34;25851:62;;25909:1;25906;25899:12;25851:62;25799:120;:::o;25925:122::-;25998:24;26016:5;25998:24;:::i;:::-;25991:5;25988:35;25978:63;;26037:1;26034;26027:12;25978:63;25925:122;:::o

Swarm Source

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