ETH Price: $2,407.38 (-0.45%)

Arcus (ARCUS)
 

Overview

TokenID

7

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Arcus: a dense, horizontal, roll-shaped cloud sometimes occurring at the lower front portion of a cumulonimbus. This is a collection of 1/1's crafted by Dutch artist Rik Oostenbroek over the course of the past 5 years. Feel free to visit https://rikoostenbroek.com/arcus-collection

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Arcus

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-20
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol
pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/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/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol
pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: @openzeppelin/contracts/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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


pragma solidity ^0.8.0;
////////////////////////////////////////////////////
//     █████  ██████   ██████ ██    ██ ███████    //
//    ██   ██ ██   ██ ██      ██    ██ ██         //
//    ███████ ██████  ██      ██    ██ ███████    //
//    ██   ██ ██   ██ ██      ██    ██      ██    //
//    ██   ██ ██   ██  ██████  ██████  ███████    //
////////////////////////////////////////////////////
contract Arcus is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    
    modifier contractIsNotFrozen() {
        require(_isFrozen == false, "This function can not be called anymore");
        
        _;
    }
    
    uint256 public maxArcus = 55;
    string private _baseTokenURI;
    bool private _isFrozen;
    
    constructor(string memory initialBaseURI) ERC721("Arcus", "ARCUS") {
        setBaseTokenURI(initialBaseURI);
        _isFrozen = false;
    }
    
    function decreaseMaxArcus(uint16 decreaseByAmount) public onlyOwner contractIsNotFrozen {
        require(decreaseByAmount > 0, "Should be decreased by at least one");
        require(maxArcus.sub(decreaseByAmount) >= totalSupply(), "Amount cannot be decreased as it has already been minted");

        maxArcus = maxArcus.sub(decreaseByAmount);
    }
    
    function setBaseTokenURI(string memory baseURI) public onlyOwner contractIsNotFrozen {
        _baseTokenURI = baseURI;
    }
    
    function mintTokensToAddress(address _address, uint16 numberOfTokens) public onlyOwner contractIsNotFrozen
    {
        require(numberOfTokens > 0, "At least one token should be minted");
        require(_address != address(0), "ERC721: mint to the zero address");
        require(totalSupply().add(numberOfTokens) <= maxArcus, "No tokens left to be minted");

        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply().add(1);
            if (totalSupply() <= maxArcus) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }
    
    function freezeSmartContract() public onlyOwner {
        if (totalSupply() < maxArcus) {
            maxArcus = totalSupply();
        }
        _isFrozen = true;
    }
   
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initialBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"decreaseByAmount","type":"uint16"}],"name":"decreaseMaxArcus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeSmartContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxArcus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint16","name":"numberOfTokens","type":"uint16"}],"name":"mintTokensToAddress","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseTokenURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526037600b553480156200001657600080fd5b5060405162002375380380620023758339810160408190526200003991620002b6565b60405180604001604052806005815260200164417263757360d81b81525060405180604001604052806005815260200164415243555360d81b81525081600090805190602001906200008d92919062000210565b508051620000a390600190602084019062000210565b505050620000c0620000ba620000dc60201b60201c565b620000e0565b620000cb8162000132565b50600d805460ff19169055620003e5565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600d5460ff1615620001f75760405162461bcd60e51b815260206004820152602760248201527f546869732066756e6374696f6e2063616e206e6f742062652063616c6c656420604482015266616e796d6f726560c81b606482015260840162000189565b80516200020c90600c90602084019062000210565b5050565b8280546200021e9062000392565b90600052602060002090601f0160209004810192826200024257600085556200028d565b82601f106200025d57805160ff19168380011785556200028d565b828001600101855582156200028d579182015b828111156200028d57825182559160200191906001019062000270565b506200029b9291506200029f565b5090565b5b808211156200029b5760008155600101620002a0565b60006020808385031215620002ca57600080fd5b82516001600160401b0380821115620002e257600080fd5b818501915085601f830112620002f757600080fd5b8151818111156200030c576200030c620003cf565b604051601f8201601f19908116603f01168101908382118183101715620003375762000337620003cf565b8160405282815288868487010111156200035057600080fd5b600093505b8284101562000374578484018601518185018701529285019262000355565b82841115620003865760008684830101525b98975050505050505050565b600181811c90821680620003a757607f821691505b60208210811415620003c957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611f8080620003f56000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80634f6ccce7116100c3578063a22cb4651161007c578063a22cb465146102c1578063b4b2b18b146102d4578063b88d4fde146102dc578063c87b56dd146102ef578063e985e9c514610302578063f2fde38b1461033e57600080fd5b80634f6ccce7146102675780636352211e1461027a57806370a082311461028d578063715018a6146102a05780638da5cb5b146102a857806395d89b41146102b957600080fd5b806323b872dd1161011557806323b872dd146101ff5780632eac9631146102125780632f745c591461022557806330176e1314610238578063393ff3b21461024b57806342842e0e1461025457600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c55780631321acac146101da57806318160ddd146101ed575b600080fd5b61017061016b366004611b6c565b610351565b60405190151581526020015b60405180910390f35b61018d61037c565b60405161017c9190611cbb565b6101ad6101a8366004611c0a565b61040e565b6040516001600160a01b03909116815260200161017c565b6101d86101d3366004611b42565b6104a8565b005b6101d86101e8366004611b18565b6105be565b6008545b60405190815260200161017c565b6101d861020d366004611a24565b610778565b6101d8610220366004611bef565b6107a9565b6101f1610233366004611b42565b6108f5565b6101d8610246366004611ba6565b61098b565b6101f1600b5481565b6101d8610262366004611a24565b6109ef565b6101f1610275366004611c0a565b610a0a565b6101ad610288366004611c0a565b610a9d565b6101f161029b3660046119d6565b610b14565b6101d8610b9b565b600a546001600160a01b03166101ad565b61018d610bd1565b6101d86102cf366004611adc565b610be0565b6101d8610ca5565b6101d86102ea366004611a60565b610cf1565b61018d6102fd366004611c0a565b610d29565b6101706103103660046119f1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101d861034c3660046119d6565b610e04565b60006001600160e01b0319821663780e9d6360e01b1480610376575061037682610e9f565b92915050565b60606000805461038b90611e5c565b80601f01602080910402602001604051908101604052809291908181526020018280546103b790611e5c565b80156104045780601f106103d957610100808354040283529160200191610404565b820191906000526020600020905b8154815290600101906020018083116103e757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661048c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104b382610a9d565b9050806001600160a01b0316836001600160a01b031614156105215760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610483565b336001600160a01b038216148061053d575061053d8133610310565b6105af5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610483565b6105b98383610eef565b505050565b600a546001600160a01b031633146105e85760405162461bcd60e51b815260040161048390611d67565b600d5460ff161561060b5760405162461bcd60e51b815260040161048390611d20565b60008161ffff161161066b5760405162461bcd60e51b815260206004820152602360248201527f4174206c65617374206f6e6520746f6b656e2073686f756c64206265206d696e6044820152621d195960ea1b6064820152608401610483565b6001600160a01b0382166106c15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610483565b600b546106db8261ffff166106d560085490565b90610f5d565b11156107295760405162461bcd60e51b815260206004820152601b60248201527f4e6f20746f6b656e73206c65667420746f206265206d696e74656400000000006044820152606401610483565b60005b8161ffff168110156105b957600061074860016106d560085490565b9050600b5461075660085490565b11610765576107653382610f69565b508061077081611e97565b91505061072c565b6107823382610f83565b61079e5760405162461bcd60e51b815260040161048390611d9c565b6105b983838361107a565b600a546001600160a01b031633146107d35760405162461bcd60e51b815260040161048390611d67565b600d5460ff16156107f65760405162461bcd60e51b815260040161048390611d20565b60008161ffff16116108565760405162461bcd60e51b815260206004820152602360248201527f53686f756c6420626520646563726561736564206279206174206c65617374206044820152626f6e6560e81b6064820152608401610483565b600854600b5461086a9061ffff8416611225565b10156108de5760405162461bcd60e51b815260206004820152603860248201527f416d6f756e742063616e6e6f742062652064656372656173656420617320697460448201527f2068617320616c7265616479206265656e206d696e74656400000000000000006064820152608401610483565b600b546108ef9061ffff8316611225565b600b5550565b600061090083610b14565b82106109625760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610483565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109b55760405162461bcd60e51b815260040161048390611d67565b600d5460ff16156109d85760405162461bcd60e51b815260040161048390611d20565b80516109eb90600c906020840190611899565b5050565b6105b983838360405180602001604052806000815250610cf1565b6000610a1560085490565b8210610a785760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610483565b60088281548110610a8b57610a8b611f08565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103765760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610483565b60006001600160a01b038216610b7f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610483565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610bc55760405162461bcd60e51b815260040161048390611d67565b610bcf6000611231565b565b60606001805461038b90611e5c565b6001600160a01b038216331415610c395760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610483565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314610ccf5760405162461bcd60e51b815260040161048390611d67565b600b546008541015610ce257600854600b555b600d805460ff19166001179055565b610cfb3383610f83565b610d175760405162461bcd60e51b815260040161048390611d9c565b610d2384848484611283565b50505050565b6000818152600260205260409020546060906001600160a01b0316610da85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610483565b6000610db26112b6565b90506000815111610dd25760405180602001604052806000815250610dfd565b80610ddc846112c5565b604051602001610ded929190611c4f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610e2e5760405162461bcd60e51b815260040161048390611d67565b6001600160a01b038116610e935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610483565b610e9c81611231565b50565b60006001600160e01b031982166380ac58cd60e01b1480610ed057506001600160e01b03198216635b5e139f60e01b145b8061037657506301ffc9a760e01b6001600160e01b0319831614610376565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f2482610a9d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610dfd8284611ded565b6109eb8282604051806020016040528060008152506113c3565b6000818152600260205260408120546001600160a01b0316610ffc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610483565b600061100783610a9d565b9050806001600160a01b0316846001600160a01b031614806110425750836001600160a01b03166110378461040e565b6001600160a01b0316145b8061107257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661108d82610a9d565b6001600160a01b0316146110f55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610483565b6001600160a01b0382166111575760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610483565b6111628383836113f6565b61116d600082610eef565b6001600160a01b0383166000908152600360205260408120805460019290611196908490611e19565b90915550506001600160a01b03821660009081526003602052604081208054600192906111c4908490611ded565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610dfd8284611e19565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61128e84848461107a565b61129a848484846114ae565b610d235760405162461bcd60e51b815260040161048390611cce565b6060600c805461038b90611e5c565b6060816112e95750506040805180820190915260018152600360fc1b602082015290565b8160005b811561131357806112fd81611e97565b915061130c9050600a83611e05565b91506112ed565b60008167ffffffffffffffff81111561132e5761132e611f1e565b6040519080825280601f01601f191660200182016040528015611358576020820181803683370190505b5090505b84156110725761136d600183611e19565b915061137a600a86611eb2565b611385906030611ded565b60f81b81838151811061139a5761139a611f08565b60200101906001600160f81b031916908160001a9053506113bc600a86611e05565b945061135c565b6113cd83836115bb565b6113da60008484846114ae565b6105b95760405162461bcd60e51b815260040161048390611cce565b6001600160a01b0383166114515761144c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611474565b816001600160a01b0316836001600160a01b031614611474576114748382611709565b6001600160a01b03821661148b576105b9816117a6565b826001600160a01b0316826001600160a01b0316146105b9576105b98282611855565b60006001600160a01b0384163b156115b057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114f2903390899088908890600401611c7e565b602060405180830381600087803b15801561150c57600080fd5b505af192505050801561153c575060408051601f3d908101601f1916820190925261153991810190611b89565b60015b611596573d80801561156a576040519150601f19603f3d011682016040523d82523d6000602084013e61156f565b606091505b50805161158e5760405162461bcd60e51b815260040161048390611cce565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611072565b506001949350505050565b6001600160a01b0382166116115760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610483565b6000818152600260205260409020546001600160a01b0316156116765760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610483565b611682600083836113f6565b6001600160a01b03821660009081526003602052604081208054600192906116ab908490611ded565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161171684610b14565b6117209190611e19565b600083815260076020526040902054909150808214611773576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906117b890600190611e19565b600083815260096020526040812054600880549394509092849081106117e0576117e0611f08565b90600052602060002001549050806008838154811061180157611801611f08565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061183957611839611ef2565b6001900381819060005260206000200160009055905550505050565b600061186083610b14565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546118a590611e5c565b90600052602060002090601f0160209004810192826118c7576000855561190d565b82601f106118e057805160ff191683800117855561190d565b8280016001018555821561190d579182015b8281111561190d5782518255916020019190600101906118f2565b5061191992915061191d565b5090565b5b80821115611919576000815560010161191e565b600067ffffffffffffffff8084111561194d5761194d611f1e565b604051601f8501601f19908116603f0116810190828211818310171561197557611975611f1e565b8160405280935085815286868601111561198e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146119bf57600080fd5b919050565b803561ffff811681146119bf57600080fd5b6000602082840312156119e857600080fd5b610dfd826119a8565b60008060408385031215611a0457600080fd5b611a0d836119a8565b9150611a1b602084016119a8565b90509250929050565b600080600060608486031215611a3957600080fd5b611a42846119a8565b9250611a50602085016119a8565b9150604084013590509250925092565b60008060008060808587031215611a7657600080fd5b611a7f856119a8565b9350611a8d602086016119a8565b925060408501359150606085013567ffffffffffffffff811115611ab057600080fd5b8501601f81018713611ac157600080fd5b611ad087823560208401611932565b91505092959194509250565b60008060408385031215611aef57600080fd5b611af8836119a8565b915060208301358015158114611b0d57600080fd5b809150509250929050565b60008060408385031215611b2b57600080fd5b611b34836119a8565b9150611a1b602084016119c4565b60008060408385031215611b5557600080fd5b611b5e836119a8565b946020939093013593505050565b600060208284031215611b7e57600080fd5b8135610dfd81611f34565b600060208284031215611b9b57600080fd5b8151610dfd81611f34565b600060208284031215611bb857600080fd5b813567ffffffffffffffff811115611bcf57600080fd5b8201601f81018413611be057600080fd5b61107284823560208401611932565b600060208284031215611c0157600080fd5b610dfd826119c4565b600060208284031215611c1c57600080fd5b5035919050565b60008151808452611c3b816020860160208601611e30565b601f01601f19169290920160200192915050565b60008351611c61818460208801611e30565b835190830190611c75818360208801611e30565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cb190830184611c23565b9695505050505050565b602081526000610dfd6020830184611c23565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f546869732066756e6374696f6e2063616e206e6f742062652063616c6c656420604082015266616e796d6f726560c81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e0057611e00611ec6565b500190565b600082611e1457611e14611edc565b500490565b600082821015611e2b57611e2b611ec6565b500390565b60005b83811015611e4b578181015183820152602001611e33565b83811115610d235750506000910152565b600181811c90821680611e7057607f821691505b60208210811415611e9157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611eab57611eab611ec6565b5060010190565b600082611ec157611ec1611edc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e9c57600080fdfea2646970667358221220c0043aadbd25828618ac17ec0f7dc86572cee5564f8651aa2b3e3ed7579c0fb764736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569683464746a357776766c656a776a6b6e76326b6f35787a6677666e72656d7866746a377776693262763433687370676a637333692f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80634f6ccce7116100c3578063a22cb4651161007c578063a22cb465146102c1578063b4b2b18b146102d4578063b88d4fde146102dc578063c87b56dd146102ef578063e985e9c514610302578063f2fde38b1461033e57600080fd5b80634f6ccce7146102675780636352211e1461027a57806370a082311461028d578063715018a6146102a05780638da5cb5b146102a857806395d89b41146102b957600080fd5b806323b872dd1161011557806323b872dd146101ff5780632eac9631146102125780632f745c591461022557806330176e1314610238578063393ff3b21461024b57806342842e0e1461025457600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c55780631321acac146101da57806318160ddd146101ed575b600080fd5b61017061016b366004611b6c565b610351565b60405190151581526020015b60405180910390f35b61018d61037c565b60405161017c9190611cbb565b6101ad6101a8366004611c0a565b61040e565b6040516001600160a01b03909116815260200161017c565b6101d86101d3366004611b42565b6104a8565b005b6101d86101e8366004611b18565b6105be565b6008545b60405190815260200161017c565b6101d861020d366004611a24565b610778565b6101d8610220366004611bef565b6107a9565b6101f1610233366004611b42565b6108f5565b6101d8610246366004611ba6565b61098b565b6101f1600b5481565b6101d8610262366004611a24565b6109ef565b6101f1610275366004611c0a565b610a0a565b6101ad610288366004611c0a565b610a9d565b6101f161029b3660046119d6565b610b14565b6101d8610b9b565b600a546001600160a01b03166101ad565b61018d610bd1565b6101d86102cf366004611adc565b610be0565b6101d8610ca5565b6101d86102ea366004611a60565b610cf1565b61018d6102fd366004611c0a565b610d29565b6101706103103660046119f1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101d861034c3660046119d6565b610e04565b60006001600160e01b0319821663780e9d6360e01b1480610376575061037682610e9f565b92915050565b60606000805461038b90611e5c565b80601f01602080910402602001604051908101604052809291908181526020018280546103b790611e5c565b80156104045780601f106103d957610100808354040283529160200191610404565b820191906000526020600020905b8154815290600101906020018083116103e757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661048c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104b382610a9d565b9050806001600160a01b0316836001600160a01b031614156105215760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610483565b336001600160a01b038216148061053d575061053d8133610310565b6105af5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610483565b6105b98383610eef565b505050565b600a546001600160a01b031633146105e85760405162461bcd60e51b815260040161048390611d67565b600d5460ff161561060b5760405162461bcd60e51b815260040161048390611d20565b60008161ffff161161066b5760405162461bcd60e51b815260206004820152602360248201527f4174206c65617374206f6e6520746f6b656e2073686f756c64206265206d696e6044820152621d195960ea1b6064820152608401610483565b6001600160a01b0382166106c15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610483565b600b546106db8261ffff166106d560085490565b90610f5d565b11156107295760405162461bcd60e51b815260206004820152601b60248201527f4e6f20746f6b656e73206c65667420746f206265206d696e74656400000000006044820152606401610483565b60005b8161ffff168110156105b957600061074860016106d560085490565b9050600b5461075660085490565b11610765576107653382610f69565b508061077081611e97565b91505061072c565b6107823382610f83565b61079e5760405162461bcd60e51b815260040161048390611d9c565b6105b983838361107a565b600a546001600160a01b031633146107d35760405162461bcd60e51b815260040161048390611d67565b600d5460ff16156107f65760405162461bcd60e51b815260040161048390611d20565b60008161ffff16116108565760405162461bcd60e51b815260206004820152602360248201527f53686f756c6420626520646563726561736564206279206174206c65617374206044820152626f6e6560e81b6064820152608401610483565b600854600b5461086a9061ffff8416611225565b10156108de5760405162461bcd60e51b815260206004820152603860248201527f416d6f756e742063616e6e6f742062652064656372656173656420617320697460448201527f2068617320616c7265616479206265656e206d696e74656400000000000000006064820152608401610483565b600b546108ef9061ffff8316611225565b600b5550565b600061090083610b14565b82106109625760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610483565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109b55760405162461bcd60e51b815260040161048390611d67565b600d5460ff16156109d85760405162461bcd60e51b815260040161048390611d20565b80516109eb90600c906020840190611899565b5050565b6105b983838360405180602001604052806000815250610cf1565b6000610a1560085490565b8210610a785760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610483565b60088281548110610a8b57610a8b611f08565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103765760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610483565b60006001600160a01b038216610b7f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610483565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610bc55760405162461bcd60e51b815260040161048390611d67565b610bcf6000611231565b565b60606001805461038b90611e5c565b6001600160a01b038216331415610c395760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610483565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314610ccf5760405162461bcd60e51b815260040161048390611d67565b600b546008541015610ce257600854600b555b600d805460ff19166001179055565b610cfb3383610f83565b610d175760405162461bcd60e51b815260040161048390611d9c565b610d2384848484611283565b50505050565b6000818152600260205260409020546060906001600160a01b0316610da85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610483565b6000610db26112b6565b90506000815111610dd25760405180602001604052806000815250610dfd565b80610ddc846112c5565b604051602001610ded929190611c4f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610e2e5760405162461bcd60e51b815260040161048390611d67565b6001600160a01b038116610e935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610483565b610e9c81611231565b50565b60006001600160e01b031982166380ac58cd60e01b1480610ed057506001600160e01b03198216635b5e139f60e01b145b8061037657506301ffc9a760e01b6001600160e01b0319831614610376565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f2482610a9d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610dfd8284611ded565b6109eb8282604051806020016040528060008152506113c3565b6000818152600260205260408120546001600160a01b0316610ffc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610483565b600061100783610a9d565b9050806001600160a01b0316846001600160a01b031614806110425750836001600160a01b03166110378461040e565b6001600160a01b0316145b8061107257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661108d82610a9d565b6001600160a01b0316146110f55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610483565b6001600160a01b0382166111575760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610483565b6111628383836113f6565b61116d600082610eef565b6001600160a01b0383166000908152600360205260408120805460019290611196908490611e19565b90915550506001600160a01b03821660009081526003602052604081208054600192906111c4908490611ded565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610dfd8284611e19565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61128e84848461107a565b61129a848484846114ae565b610d235760405162461bcd60e51b815260040161048390611cce565b6060600c805461038b90611e5c565b6060816112e95750506040805180820190915260018152600360fc1b602082015290565b8160005b811561131357806112fd81611e97565b915061130c9050600a83611e05565b91506112ed565b60008167ffffffffffffffff81111561132e5761132e611f1e565b6040519080825280601f01601f191660200182016040528015611358576020820181803683370190505b5090505b84156110725761136d600183611e19565b915061137a600a86611eb2565b611385906030611ded565b60f81b81838151811061139a5761139a611f08565b60200101906001600160f81b031916908160001a9053506113bc600a86611e05565b945061135c565b6113cd83836115bb565b6113da60008484846114ae565b6105b95760405162461bcd60e51b815260040161048390611cce565b6001600160a01b0383166114515761144c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611474565b816001600160a01b0316836001600160a01b031614611474576114748382611709565b6001600160a01b03821661148b576105b9816117a6565b826001600160a01b0316826001600160a01b0316146105b9576105b98282611855565b60006001600160a01b0384163b156115b057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114f2903390899088908890600401611c7e565b602060405180830381600087803b15801561150c57600080fd5b505af192505050801561153c575060408051601f3d908101601f1916820190925261153991810190611b89565b60015b611596573d80801561156a576040519150601f19603f3d011682016040523d82523d6000602084013e61156f565b606091505b50805161158e5760405162461bcd60e51b815260040161048390611cce565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611072565b506001949350505050565b6001600160a01b0382166116115760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610483565b6000818152600260205260409020546001600160a01b0316156116765760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610483565b611682600083836113f6565b6001600160a01b03821660009081526003602052604081208054600192906116ab908490611ded565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161171684610b14565b6117209190611e19565b600083815260076020526040902054909150808214611773576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906117b890600190611e19565b600083815260096020526040812054600880549394509092849081106117e0576117e0611f08565b90600052602060002001549050806008838154811061180157611801611f08565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061183957611839611ef2565b6001900381819060005260206000200160009055905550505050565b600061186083610b14565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546118a590611e5c565b90600052602060002090601f0160209004810192826118c7576000855561190d565b82601f106118e057805160ff191683800117855561190d565b8280016001018555821561190d579182015b8281111561190d5782518255916020019190600101906118f2565b5061191992915061191d565b5090565b5b80821115611919576000815560010161191e565b600067ffffffffffffffff8084111561194d5761194d611f1e565b604051601f8501601f19908116603f0116810190828211818310171561197557611975611f1e565b8160405280935085815286868601111561198e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146119bf57600080fd5b919050565b803561ffff811681146119bf57600080fd5b6000602082840312156119e857600080fd5b610dfd826119a8565b60008060408385031215611a0457600080fd5b611a0d836119a8565b9150611a1b602084016119a8565b90509250929050565b600080600060608486031215611a3957600080fd5b611a42846119a8565b9250611a50602085016119a8565b9150604084013590509250925092565b60008060008060808587031215611a7657600080fd5b611a7f856119a8565b9350611a8d602086016119a8565b925060408501359150606085013567ffffffffffffffff811115611ab057600080fd5b8501601f81018713611ac157600080fd5b611ad087823560208401611932565b91505092959194509250565b60008060408385031215611aef57600080fd5b611af8836119a8565b915060208301358015158114611b0d57600080fd5b809150509250929050565b60008060408385031215611b2b57600080fd5b611b34836119a8565b9150611a1b602084016119c4565b60008060408385031215611b5557600080fd5b611b5e836119a8565b946020939093013593505050565b600060208284031215611b7e57600080fd5b8135610dfd81611f34565b600060208284031215611b9b57600080fd5b8151610dfd81611f34565b600060208284031215611bb857600080fd5b813567ffffffffffffffff811115611bcf57600080fd5b8201601f81018413611be057600080fd5b61107284823560208401611932565b600060208284031215611c0157600080fd5b610dfd826119c4565b600060208284031215611c1c57600080fd5b5035919050565b60008151808452611c3b816020860160208601611e30565b601f01601f19169290920160200192915050565b60008351611c61818460208801611e30565b835190830190611c75818360208801611e30565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cb190830184611c23565b9695505050505050565b602081526000610dfd6020830184611c23565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f546869732066756e6374696f6e2063616e206e6f742062652063616c6c656420604082015266616e796d6f726560c81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e0057611e00611ec6565b500190565b600082611e1457611e14611edc565b500490565b600082821015611e2b57611e2b611ec6565b500390565b60005b83811015611e4b578181015183820152602001611e33565b83811115610d235750506000910152565b600181811c90821680611e7057607f821691505b60208210811415611e9157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611eab57611eab611ec6565b5060010190565b600082611ec157611ec1611edc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e9c57600080fdfea2646970667358221220c0043aadbd25828618ac17ec0f7dc86572cee5564f8651aa2b3e3ed7579c0fb764736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569683464746a357776766c656a776a6b6e76326b6f35787a6677666e72656d7866746a377776693262763433687370676a637333692f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialBaseURI (string): ipfs://bafybeih4dtj5wvvlejwjknv2ko5xzfwfnremxftj7wvi2bv43hspgjcs3i/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f62616679626569683464746a357776766c656a776a6b6e7632
Arg [3] : 6b6f35787a6677666e72656d7866746a377776693262763433687370676a6373
Arg [4] : 33692f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50640:1927:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41591:224;;;;;;:::i;:::-;;:::i;:::-;;;6262:14:1;;6255:22;6237:41;;6225:2;6210:18;41591:224:0;;;;;;;;29493:100;;;:::i;:::-;;;;;;;:::i;31052:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5560:32:1;;;5542:51;;5530:2;5515:18;31052:221:0;5396:203:1;30575:411:0;;;;;;:::i;:::-;;:::i;:::-;;51653:600;;;;;;:::i;:::-;;:::i;42231:113::-;42319:10;:17;42231:113;;;15863:25:1;;;15851:2;15836:18;42231:113:0;15717:177:1;31942:339:0;;;;;;:::i;:::-;;:::i;51146:356::-;;;;;;:::i;:::-;;:::i;41899:256::-;;;;;;:::i;:::-;;:::i;51514:127::-;;;;;;:::i;:::-;;:::i;50884:28::-;;;;;;32352:185;;;;;;:::i;:::-;;:::i;42421:233::-;;;;;;:::i;:::-;;:::i;29187:239::-;;;;;;:::i;:::-;;:::i;28917:208::-;;;;;;:::i;:::-;;:::i;49380:94::-;;;:::i;48729:87::-;48802:6;;-1:-1:-1;;;;;48802:6:0;48729:87;;29662:104;;;:::i;31345:295::-;;;;;;:::i;:::-;;:::i;52265:174::-;;;:::i;32608:328::-;;;;;;:::i;:::-;;:::i;29837:334::-;;;;;;:::i;:::-;;:::i;31711:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;31832:25:0;;;31808:4;31832:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31711:164;49629:192;;;;;;:::i;:::-;;:::i;41591:224::-;41693:4;-1:-1:-1;;;;;;41717:50:0;;-1:-1:-1;;;41717:50:0;;:90;;;41771:36;41795:11;41771:23;:36::i;:::-;41710:97;41591:224;-1:-1:-1;;41591:224:0:o;29493:100::-;29547:13;29580:5;29573:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29493:100;:::o;31052:221::-;31128:7;34535:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34535:16:0;31148:73;;;;-1:-1:-1;;;31148:73:0;;11901:2:1;31148:73:0;;;11883:21:1;11940:2;11920:18;;;11913:30;11979:34;11959:18;;;11952:62;-1:-1:-1;;;12030:18:1;;;12023:42;12082:19;;31148:73:0;;;;;;;;;-1:-1:-1;31241:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31241:24:0;;31052:221::o;30575:411::-;30656:13;30672:23;30687:7;30672:14;:23::i;:::-;30656:39;;30720:5;-1:-1:-1;;;;;30714:11:0;:2;-1:-1:-1;;;;;30714:11:0;;;30706:57;;;;-1:-1:-1;;;30706:57:0;;13501:2:1;30706:57:0;;;13483:21:1;13540:2;13520:18;;;13513:30;13579:34;13559:18;;;13552:62;-1:-1:-1;;;13630:18:1;;;13623:31;13671:19;;30706:57:0;13299:397:1;30706:57:0;27102:10;-1:-1:-1;;;;;30798:21:0;;;;:62;;-1:-1:-1;30823:37:0;30840:5;27102:10;31711:164;:::i;30823:37::-;30776:168;;;;-1:-1:-1;;;30776:168:0;;10294:2:1;30776:168:0;;;10276:21:1;10333:2;10313:18;;;10306:30;10372:34;10352:18;;;10345:62;10443:26;10423:18;;;10416:54;10487:19;;30776:168:0;10092:420:1;30776:168:0;30957:21;30966:2;30970:7;30957:8;:21::i;:::-;30645:341;30575:411;;:::o;51653:600::-;48802:6;;-1:-1:-1;;;;;48802:6:0;27102:10;48949:23;48941:68;;;;-1:-1:-1;;;48941:68:0;;;;;;;:::i;:::-;50780:9:::1;::::0;::::1;;:18;50772:70;;;;-1:-1:-1::0;;;50772:70:0::1;;;;;;;:::i;:::-;51801:1:::2;51784:14;:18;;;51776:66;;;::::0;-1:-1:-1;;;51776:66:0;;15159:2:1;51776:66:0::2;::::0;::::2;15141:21:1::0;15198:2;15178:18;;;15171:30;15237:34;15217:18;;;15210:62;-1:-1:-1;;;15288:18:1;;;15281:33;15331:19;;51776:66:0::2;14957:399:1::0;51776:66:0::2;-1:-1:-1::0;;;;;51861:22:0;::::2;51853:67;;;::::0;-1:-1:-1;;;51853:67:0;;11540:2:1;51853:67:0::2;::::0;::::2;11522:21:1::0;;;11559:18;;;11552:30;11618:34;11598:18;;;11591:62;11670:18;;51853:67:0::2;11338:356:1::0;51853:67:0::2;51976:8;;51939:33;51957:14;51939:33;;:13;42319:10:::0;:17;;42231:113;51939:13:::2;:17:::0;::::2;:33::i;:::-;:45;;51931:85;;;::::0;-1:-1:-1;;;51931:85:0;;15563:2:1;51931:85:0::2;::::0;::::2;15545:21:1::0;15602:2;15582:18;;;15575:30;15641:29;15621:18;;;15614:57;15688:18;;51931:85:0::2;15361:351:1::0;51931:85:0::2;52033:6;52029:217;52049:14;52045:18;;:1;:18;52029:217;;;52085:14;52102:20;52120:1;52102:13;42319:10:::0;:17;;42231:113;52102:20:::2;52085:37;;52158:8;;52141:13;42319:10:::0;:17;;42231:113;52141:13:::2;:25;52137:98;;52187:32;52197:10;52209:9;52187;:32::i;:::-;-1:-1:-1::0;52065:3:0;::::2;::::0;::::2;:::i;:::-;;;;52029:217;;31942:339:::0;32137:41;27102:10;32170:7;32137:18;:41::i;:::-;32129:103;;;;-1:-1:-1;;;32129:103:0;;;;;;;:::i;:::-;32245:28;32255:4;32261:2;32265:7;32245:9;:28::i;51146:356::-;48802:6;;-1:-1:-1;;;;;48802:6:0;27102:10;48949:23;48941:68;;;;-1:-1:-1;;;48941:68:0;;;;;;;:::i;:::-;50780:9:::1;::::0;::::1;;:18;50772:70;;;;-1:-1:-1::0;;;50772:70:0::1;;;;;;;:::i;:::-;51272:1:::2;51253:16;:20;;;51245:68;;;::::0;-1:-1:-1;;;51245:68:0;;6715:2:1;51245:68:0::2;::::0;::::2;6697:21:1::0;6754:2;6734:18;;;6727:30;6793:34;6773:18;;;6766:62;-1:-1:-1;;;6844:18:1;;;6837:33;6887:19;;51245:68:0::2;6513:399:1::0;51245:68:0::2;42319:10:::0;:17;51332:8:::2;::::0;:30:::2;::::0;::::2;::::0;::::2;:12;:30::i;:::-;:47;;51324:116;;;::::0;-1:-1:-1;;;51324:116:0;;14734:2:1;51324:116:0::2;::::0;::::2;14716:21:1::0;14773:2;14753:18;;;14746:30;14812:34;14792:18;;;14785:62;14883:26;14863:18;;;14856:54;14927:19;;51324:116:0::2;14532:420:1::0;51324:116:0::2;51464:8;::::0;:30:::2;::::0;::::2;::::0;::::2;:12;:30::i;:::-;51453:8;:41:::0;-1:-1:-1;51146:356:0:o;41899:256::-;41996:7;42032:23;42049:5;42032:16;:23::i;:::-;42024:5;:31;42016:87;;;;-1:-1:-1;;;42016:87:0;;7119:2:1;42016:87:0;;;7101:21:1;7158:2;7138:18;;;7131:30;7197:34;7177:18;;;7170:62;-1:-1:-1;;;7248:18:1;;;7241:41;7299:19;;42016:87:0;6917:407:1;42016:87:0;-1:-1:-1;;;;;;42121:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41899:256::o;51514:127::-;48802:6;;-1:-1:-1;;;;;48802:6:0;27102:10;48949:23;48941:68;;;;-1:-1:-1;;;48941:68:0;;;;;;;:::i;:::-;50780:9:::1;::::0;::::1;;:18;50772:70;;;;-1:-1:-1::0;;;50772:70:0::1;;;;;;;:::i;:::-;51610:23:::0;;::::2;::::0;:13:::2;::::0;:23:::2;::::0;::::2;::::0;::::2;:::i;:::-;;51514:127:::0;:::o;32352:185::-;32490:39;32507:4;32513:2;32517:7;32490:39;;;;;;;;;;;;:16;:39::i;42421:233::-;42496:7;42532:30;42319:10;:17;;42231:113;42532:30;42524:5;:38;42516:95;;;;-1:-1:-1;;;42516:95:0;;14321:2:1;42516:95:0;;;14303:21:1;14360:2;14340:18;;;14333:30;14399:34;14379:18;;;14372:62;-1:-1:-1;;;14450:18:1;;;14443:42;14502:19;;42516:95:0;14119:408:1;42516:95:0;42629:10;42640:5;42629:17;;;;;;;;:::i;:::-;;;;;;;;;42622:24;;42421:233;;;:::o;29187:239::-;29259:7;29295:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29295:16:0;29330:19;29322:73;;;;-1:-1:-1;;;29322:73:0;;11130:2:1;29322:73:0;;;11112:21:1;11169:2;11149:18;;;11142:30;11208:34;11188:18;;;11181:62;-1:-1:-1;;;11259:18:1;;;11252:39;11308:19;;29322:73:0;10928:405:1;28917:208:0;28989:7;-1:-1:-1;;;;;29017:19:0;;29009:74;;;;-1:-1:-1;;;29009:74:0;;10719:2:1;29009:74:0;;;10701:21:1;10758:2;10738:18;;;10731:30;10797:34;10777:18;;;10770:62;-1:-1:-1;;;10848:18:1;;;10841:40;10898:19;;29009:74:0;10517:406:1;29009:74:0;-1:-1:-1;;;;;;29101:16:0;;;;;:9;:16;;;;;;;28917:208::o;49380:94::-;48802:6;;-1:-1:-1;;;;;48802:6:0;27102:10;48949:23;48941:68;;;;-1:-1:-1;;;48941:68:0;;;;;;;:::i;:::-;49445:21:::1;49463:1;49445:9;:21::i;:::-;49380:94::o:0;29662:104::-;29718:13;29751:7;29744:14;;;;;:::i;31345:295::-;-1:-1:-1;;;;;31448:24:0;;27102:10;31448:24;;31440:62;;;;-1:-1:-1;;;31440:62:0;;9119:2:1;31440:62:0;;;9101:21:1;9158:2;9138:18;;;9131:30;9197:27;9177:18;;;9170:55;9242:18;;31440:62:0;8917:349:1;31440:62:0;27102:10;31515:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31515:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31515:53:0;;;;;;;;;;31584:48;;6237:41:1;;;31515:42:0;;27102:10;31584:48;;6210:18:1;31584:48:0;;;;;;;31345:295;;:::o;52265:174::-;48802:6;;-1:-1:-1;;;;;48802:6:0;27102:10;48949:23;48941:68;;;;-1:-1:-1;;;48941:68:0;;;;;;;:::i;:::-;52344:8:::1;::::0;42319:10;:17;52328:24:::1;52324:81;;;42319:10:::0;:17;52369:8:::1;:24:::0;52324:81:::1;52415:9;:16:::0;;-1:-1:-1;;52415:16:0::1;52427:4;52415:16;::::0;;52265:174::o;32608:328::-;32783:41;27102:10;32816:7;32783:18;:41::i;:::-;32775:103;;;;-1:-1:-1;;;32775:103:0;;;;;;;:::i;:::-;32889:39;32903:4;32909:2;32913:7;32922:5;32889:13;:39::i;:::-;32608:328;;;;:::o;29837:334::-;34511:4;34535:16;;;:7;:16;;;;;;29910:13;;-1:-1:-1;;;;;34535:16:0;29936:76;;;;-1:-1:-1;;;29936:76:0;;13085:2:1;29936:76:0;;;13067:21:1;13124:2;13104:18;;;13097:30;13163:34;13143:18;;;13136:62;-1:-1:-1;;;13214:18:1;;;13207:45;13269:19;;29936:76:0;12883:411:1;29936:76:0;30025:21;30049:10;:8;:10::i;:::-;30025:34;;30101:1;30083:7;30077:21;:25;:86;;;;;;;;;;;;;;;;;30129:7;30138:18;:7;:16;:18::i;:::-;30112:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30077:86;30070:93;29837:334;-1:-1:-1;;;29837:334:0:o;49629:192::-;48802:6;;-1:-1:-1;;;;;48802:6:0;27102:10;48949:23;48941:68;;;;-1:-1:-1;;;48941:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49718:22:0;::::1;49710:73;;;::::0;-1:-1:-1;;;49710:73:0;;7950:2:1;49710:73:0::1;::::0;::::1;7932:21:1::0;7989:2;7969:18;;;7962:30;8028:34;8008:18;;;8001:62;-1:-1:-1;;;8079:18:1;;;8072:36;8125:19;;49710:73:0::1;7748:402:1::0;49710:73:0::1;49794:19;49804:8;49794:9;:19::i;:::-;49629:192:::0;:::o;28548:305::-;28650:4;-1:-1:-1;;;;;;28687:40:0;;-1:-1:-1;;;28687:40:0;;:105;;-1:-1:-1;;;;;;;28744:48:0;;-1:-1:-1;;;28744:48:0;28687:105;:158;;;-1:-1:-1;;;;;;;;;;12890:40:0;;;28809:36;12781:157;38428:174;38503:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38503:29:0;-1:-1:-1;;;;;38503:29:0;;;;;;;;:24;;38557:23;38503:24;38557:14;:23::i;:::-;-1:-1:-1;;;;;38548:46:0;;;;;;;;;;;38428:174;;:::o;22238:98::-;22296:7;22323:5;22327:1;22323;:5;:::i;35430:110::-;35506:26;35516:2;35520:7;35506:26;;;;;;;;;;;;:9;:26::i;34740:348::-;34833:4;34535:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34535:16:0;34850:73;;;;-1:-1:-1;;;34850:73:0;;9473:2:1;34850:73:0;;;9455:21:1;9512:2;9492:18;;;9485:30;9551:34;9531:18;;;9524:62;-1:-1:-1;;;9602:18:1;;;9595:42;9654:19;;34850:73:0;9271:408:1;34850:73:0;34934:13;34950:23;34965:7;34950:14;:23::i;:::-;34934:39;;35003:5;-1:-1:-1;;;;;34992:16:0;:7;-1:-1:-1;;;;;34992:16:0;;:51;;;;35036:7;-1:-1:-1;;;;;35012:31:0;:20;35024:7;35012:11;:20::i;:::-;-1:-1:-1;;;;;35012:31:0;;34992:51;:87;;;-1:-1:-1;;;;;;31832:25:0;;;31808:4;31832:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35047:32;34984:96;34740:348;-1:-1:-1;;;;34740:348:0:o;37732:578::-;37891:4;-1:-1:-1;;;;;37864:31:0;:23;37879:7;37864:14;:23::i;:::-;-1:-1:-1;;;;;37864:31:0;;37856:85;;;;-1:-1:-1;;;37856:85:0;;12675:2:1;37856:85:0;;;12657:21:1;12714:2;12694:18;;;12687:30;12753:34;12733:18;;;12726:62;-1:-1:-1;;;12804:18:1;;;12797:39;12853:19;;37856:85:0;12473:405:1;37856:85:0;-1:-1:-1;;;;;37960:16:0;;37952:65;;;;-1:-1:-1;;;37952:65:0;;8714:2:1;37952:65:0;;;8696:21:1;8753:2;8733:18;;;8726:30;8792:34;8772:18;;;8765:62;-1:-1:-1;;;8843:18:1;;;8836:34;8887:19;;37952:65:0;8512:400:1;37952:65:0;38030:39;38051:4;38057:2;38061:7;38030:20;:39::i;:::-;38134:29;38151:1;38155:7;38134:8;:29::i;:::-;-1:-1:-1;;;;;38176:15:0;;;;;;:9;:15;;;;;:20;;38195:1;;38176:15;:20;;38195:1;;38176:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38207:13:0;;;;;;:9;:13;;;;;:18;;38224:1;;38207:13;:18;;38224:1;;38207:18;:::i;:::-;;;;-1:-1:-1;;38236:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38236:21:0;-1:-1:-1;;;;;38236:21:0;;;;;;;;;38275:27;;38236:16;;38275:27;;;;;;;37732:578;;;:::o;22619:98::-;22677:7;22704:5;22708:1;22704;:5;:::i;49829:173::-;49904:6;;;-1:-1:-1;;;;;49921:17:0;;;-1:-1:-1;;;;;;49921:17:0;;;;;;;49954:40;;49904:6;;;49921:17;49904:6;;49954:40;;49885:16;;49954:40;49874:128;49829:173;:::o;33818:315::-;33975:28;33985:4;33991:2;33995:7;33975:9;:28::i;:::-;34022:48;34045:4;34051:2;34055:7;34064:5;34022:22;:48::i;:::-;34014:111;;;;-1:-1:-1;;;34014:111:0;;;;;;;:::i;52450:114::-;52510:13;52543;52536:20;;;;;:::i;340:723::-;396:13;617:10;613:53;;-1:-1:-1;;644:10:0;;;;;;;;;;;;-1:-1:-1;;;644:10:0;;;;;340:723::o;613:53::-;691:5;676:12;732:78;739:9;;732:78;;765:8;;;;:::i;:::-;;-1:-1:-1;788:10:0;;-1:-1:-1;796:2:0;788:10;;:::i;:::-;;;732:78;;;820:19;852:6;842:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;842:17:0;;820:39;;870:154;877:10;;870:154;;904:11;914:1;904:11;;:::i;:::-;;-1:-1:-1;973:10:0;981:2;973:5;:10;:::i;:::-;960:24;;:2;:24;:::i;:::-;947:39;;930:6;937;930:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;930:56:0;;;;;;;;-1:-1:-1;1001:11:0;1010:2;1001:11;;:::i;:::-;;;870:154;;35767:321;35897:18;35903:2;35907:7;35897:5;:18::i;:::-;35948:54;35979:1;35983:2;35987:7;35996:5;35948:22;:54::i;:::-;35926:154;;;;-1:-1:-1;;;35926:154:0;;;;;;;:::i;43267:589::-;-1:-1:-1;;;;;43473:18:0;;43469:187;;43508:40;43540:7;44683:10;:17;;44656:24;;;;:15;:24;;;;;:44;;;44711:24;;;;;;;;;;;;44579:164;43508:40;43469:187;;;43578:2;-1:-1:-1;;;;;43570:10:0;:4;-1:-1:-1;;;;;43570:10:0;;43566:90;;43597:47;43630:4;43636:7;43597:32;:47::i;:::-;-1:-1:-1;;;;;43670:16:0;;43666:183;;43703:45;43740:7;43703:36;:45::i;43666:183::-;43776:4;-1:-1:-1;;;;;43770:10:0;:2;-1:-1:-1;;;;;43770:10:0;;43766:83;;43797:40;43825:2;43829:7;43797:27;:40::i;39167:799::-;39322:4;-1:-1:-1;;;;;39343:13:0;;3182:20;3230:8;39339:620;;39379:72;;-1:-1:-1;;;39379:72:0;;-1:-1:-1;;;;;39379:36:0;;;;;:72;;27102:10;;39430:4;;39436:7;;39445:5;;39379:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39379:72:0;;;;;;;;-1:-1:-1;;39379:72:0;;;;;;;;;;;;:::i;:::-;;;39375:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39621:13:0;;39617:272;;39664:60;;-1:-1:-1;;;39664:60:0;;;;;;;:::i;39617:272::-;39839:6;39833:13;39824:6;39820:2;39816:15;39809:38;39375:529;-1:-1:-1;;;;;;39502:51:0;-1:-1:-1;;;39502:51:0;;-1:-1:-1;39495:58:0;;39339:620;-1:-1:-1;39943:4:0;39167:799;;;;;;:::o;36424:382::-;-1:-1:-1;;;;;36504:16:0;;36496:61;;;;-1:-1:-1;;;36496:61:0;;11540:2:1;36496:61:0;;;11522:21:1;;;11559:18;;;11552:30;11618:34;11598:18;;;11591:62;11670:18;;36496:61:0;11338:356:1;36496:61:0;34511:4;34535:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34535:16:0;:30;36568:58;;;;-1:-1:-1;;;36568:58:0;;8357:2:1;36568:58:0;;;8339:21:1;8396:2;8376:18;;;8369:30;8435;8415:18;;;8408:58;8483:18;;36568:58:0;8155:352:1;36568:58:0;36639:45;36668:1;36672:2;36676:7;36639:20;:45::i;:::-;-1:-1:-1;;;;;36697:13:0;;;;;;:9;:13;;;;;:18;;36714:1;;36697:13;:18;;36714:1;;36697:18;:::i;:::-;;;;-1:-1:-1;;36726:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36726:21:0;-1:-1:-1;;;;;36726:21:0;;;;;;;;36765:33;;36726:16;;;36765:33;;36726:16;;36765:33;36424:382;;:::o;45370:988::-;45636:22;45686:1;45661:22;45678:4;45661:16;:22::i;:::-;:26;;;;:::i;:::-;45698:18;45719:26;;;:17;:26;;;;;;45636:51;;-1:-1:-1;45852:28:0;;;45848:328;;-1:-1:-1;;;;;45919:18:0;;45897:19;45919:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45970:30;;;;;;:44;;;46087:30;;:17;:30;;;;;:43;;;45848:328;-1:-1:-1;46272:26:0;;;;:17;:26;;;;;;;;46265:33;;;-1:-1:-1;;;;;46316:18:0;;;;;:12;:18;;;;;:34;;;;;;;46309:41;45370:988::o;46653:1079::-;46931:10;:17;46906:22;;46931:21;;46951:1;;46931:21;:::i;:::-;46963:18;46984:24;;;:15;:24;;;;;;47357:10;:26;;46906:46;;-1:-1:-1;46984:24:0;;46906:46;;47357:26;;;;;;:::i;:::-;;;;;;;;;47335:48;;47421:11;47396:10;47407;47396:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47501:28;;;:15;:28;;;;;;;:41;;;47673:24;;;;;47666:31;47708:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46724:1008;;;46653:1079;:::o;44157:221::-;44242:14;44259:20;44276:2;44259:16;:20::i;:::-;-1:-1:-1;;;;;44290:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44335:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44157:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:159::-;895:20;;955:6;944:18;;934:29;;924:57;;977:1;974;967:12;992:186;1051:6;1104:2;1092:9;1083:7;1079:23;1075:32;1072:52;;;1120:1;1117;1110:12;1072:52;1143:29;1162:9;1143:29;:::i;1183:260::-;1251:6;1259;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;:::-;1341:39;;1399:38;1433:2;1422:9;1418:18;1399:38;:::i;:::-;1389:48;;1183:260;;;;;:::o;1448:328::-;1525:6;1533;1541;1594:2;1582:9;1573:7;1569:23;1565:32;1562:52;;;1610:1;1607;1600:12;1562:52;1633:29;1652:9;1633:29;:::i;:::-;1623:39;;1681:38;1715:2;1704:9;1700:18;1681:38;:::i;:::-;1671:48;;1766:2;1755:9;1751:18;1738:32;1728:42;;1448:328;;;;;:::o;1781:666::-;1876:6;1884;1892;1900;1953:3;1941:9;1932:7;1928:23;1924:33;1921:53;;;1970:1;1967;1960:12;1921:53;1993:29;2012:9;1993:29;:::i;:::-;1983:39;;2041:38;2075:2;2064:9;2060:18;2041:38;:::i;:::-;2031:48;;2126:2;2115:9;2111:18;2098:32;2088:42;;2181:2;2170:9;2166:18;2153:32;2208:18;2200:6;2197:30;2194:50;;;2240:1;2237;2230:12;2194:50;2263:22;;2316:4;2308:13;;2304:27;-1:-1:-1;2294:55:1;;2345:1;2342;2335:12;2294:55;2368:73;2433:7;2428:2;2415:16;2410:2;2406;2402:11;2368:73;:::i;:::-;2358:83;;;1781:666;;;;;;;:::o;2452:347::-;2517:6;2525;2578:2;2566:9;2557:7;2553:23;2549:32;2546:52;;;2594:1;2591;2584:12;2546:52;2617:29;2636:9;2617:29;:::i;:::-;2607:39;;2696:2;2685:9;2681:18;2668:32;2743:5;2736:13;2729:21;2722:5;2719:32;2709:60;;2765:1;2762;2755:12;2709:60;2788:5;2778:15;;;2452:347;;;;;:::o;2804:258::-;2871:6;2879;2932:2;2920:9;2911:7;2907:23;2903:32;2900:52;;;2948:1;2945;2938:12;2900:52;2971:29;2990:9;2971:29;:::i;:::-;2961:39;;3019:37;3052:2;3041:9;3037:18;3019:37;:::i;3067:254::-;3135:6;3143;3196:2;3184:9;3175:7;3171:23;3167:32;3164:52;;;3212:1;3209;3202:12;3164:52;3235:29;3254:9;3235:29;:::i;:::-;3225:39;3311:2;3296:18;;;;3283:32;;-1:-1:-1;;;3067:254:1:o;3326:245::-;3384:6;3437:2;3425:9;3416:7;3412:23;3408:32;3405:52;;;3453:1;3450;3443:12;3405:52;3492:9;3479:23;3511:30;3535:5;3511:30;:::i;3576:249::-;3645:6;3698:2;3686:9;3677:7;3673:23;3669:32;3666:52;;;3714:1;3711;3704:12;3666:52;3746:9;3740:16;3765:30;3789:5;3765:30;:::i;3830:450::-;3899:6;3952:2;3940:9;3931:7;3927:23;3923:32;3920:52;;;3968:1;3965;3958:12;3920:52;4008:9;3995:23;4041:18;4033:6;4030:30;4027:50;;;4073:1;4070;4063:12;4027:50;4096:22;;4149:4;4141:13;;4137:27;-1:-1:-1;4127:55:1;;4178:1;4175;4168:12;4127:55;4201:73;4266:7;4261:2;4248:16;4243:2;4239;4235:11;4201:73;:::i;4285:184::-;4343:6;4396:2;4384:9;4375:7;4371:23;4367:32;4364:52;;;4412:1;4409;4402:12;4364:52;4435:28;4453:9;4435:28;:::i;4474:180::-;4533:6;4586:2;4574:9;4565:7;4561:23;4557:32;4554:52;;;4602:1;4599;4592:12;4554:52;-1:-1:-1;4625:23:1;;4474:180;-1:-1:-1;4474:180:1:o;4659:257::-;4700:3;4738:5;4732:12;4765:6;4760:3;4753:19;4781:63;4837:6;4830:4;4825:3;4821:14;4814:4;4807:5;4803:16;4781:63;:::i;:::-;4898:2;4877:15;-1:-1:-1;;4873:29:1;4864:39;;;;4905:4;4860:50;;4659:257;-1:-1:-1;;4659:257:1:o;4921:470::-;5100:3;5138:6;5132:13;5154:53;5200:6;5195:3;5188:4;5180:6;5176:17;5154:53;:::i;:::-;5270:13;;5229:16;;;;5292:57;5270:13;5229:16;5326:4;5314:17;;5292:57;:::i;:::-;5365:20;;4921:470;-1:-1:-1;;;;4921:470:1:o;5604:488::-;-1:-1:-1;;;;;5873:15:1;;;5855:34;;5925:15;;5920:2;5905:18;;5898:43;5972:2;5957:18;;5950:34;;;6020:3;6015:2;6000:18;;5993:31;;;5798:4;;6041:45;;6066:19;;6058:6;6041:45;:::i;:::-;6033:53;5604:488;-1:-1:-1;;;;;;5604:488:1:o;6289:219::-;6438:2;6427:9;6420:21;6401:4;6458:44;6498:2;6487:9;6483:18;6475:6;6458:44;:::i;7329:414::-;7531:2;7513:21;;;7570:2;7550:18;;;7543:30;7609:34;7604:2;7589:18;;7582:62;-1:-1:-1;;;7675:2:1;7660:18;;7653:48;7733:3;7718:19;;7329:414::o;9684:403::-;9886:2;9868:21;;;9925:2;9905:18;;;9898:30;9964:34;9959:2;9944:18;;9937:62;-1:-1:-1;;;10030:2:1;10015:18;;10008:37;10077:3;10062:19;;9684:403::o;12112:356::-;12314:2;12296:21;;;12333:18;;;12326:30;12392:34;12387:2;12372:18;;12365:62;12459:2;12444:18;;12112:356::o;13701:413::-;13903:2;13885:21;;;13942:2;13922:18;;;13915:30;13981:34;13976:2;13961:18;;13954:62;-1:-1:-1;;;14047:2:1;14032:18;;14025:47;14104:3;14089:19;;13701:413::o;15899:128::-;15939:3;15970:1;15966:6;15963:1;15960:13;15957:39;;;15976:18;;:::i;:::-;-1:-1:-1;16012:9:1;;15899:128::o;16032:120::-;16072:1;16098;16088:35;;16103:18;;:::i;:::-;-1:-1:-1;16137:9:1;;16032:120::o;16157:125::-;16197:4;16225:1;16222;16219:8;16216:34;;;16230:18;;:::i;:::-;-1:-1:-1;16267:9:1;;16157:125::o;16287:258::-;16359:1;16369:113;16383:6;16380:1;16377:13;16369:113;;;16459:11;;;16453:18;16440:11;;;16433:39;16405:2;16398:10;16369:113;;;16500:6;16497:1;16494:13;16491:48;;;-1:-1:-1;;16535:1:1;16517:16;;16510:27;16287:258::o;16550:380::-;16629:1;16625:12;;;;16672;;;16693:61;;16747:4;16739:6;16735:17;16725:27;;16693:61;16800:2;16792:6;16789:14;16769:18;16766:38;16763:161;;;16846:10;16841:3;16837:20;16834:1;16827:31;16881:4;16878:1;16871:15;16909:4;16906:1;16899:15;16763:161;;16550:380;;;:::o;16935:135::-;16974:3;-1:-1:-1;;16995:17:1;;16992:43;;;17015:18;;:::i;:::-;-1:-1:-1;17062:1:1;17051:13;;16935:135::o;17075:112::-;17107:1;17133;17123:35;;17138:18;;:::i;:::-;-1:-1:-1;17172:9:1;;17075:112::o;17192:127::-;17253:10;17248:3;17244:20;17241:1;17234:31;17284:4;17281:1;17274:15;17308:4;17305:1;17298:15;17324:127;17385:10;17380:3;17376:20;17373:1;17366:31;17416:4;17413:1;17406:15;17440:4;17437:1;17430:15;17456:127;17517:10;17512:3;17508:20;17505:1;17498:31;17548:4;17545:1;17538:15;17572:4;17569:1;17562:15;17588:127;17649:10;17644:3;17640:20;17637:1;17630:31;17680:4;17677:1;17670:15;17704:4;17701:1;17694:15;17720:127;17781:10;17776:3;17772:20;17769:1;17762:31;17812:4;17809:1;17802:15;17836:4;17833:1;17826:15;17852:131;-1:-1:-1;;;;;;17926:32:1;;17916:43;;17906:71;;17973:1;17970;17963:12

Swarm Source

ipfs://c0043aadbd25828618ac17ec0f7dc86572cee5564f8651aa2b3e3ed7579c0fb7
Loading...
Loading
Loading...
Loading
[ 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.