ETH Price: $3,300.85 (-3.23%)
Gas: 14 Gwei

Token

Angry Riders Society (ARS)
 

Overview

Max Total Supply

3,132 ARS

Holders

595

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 ARS
0x15af0a3685f3fa49aaaabd7524a2bda7610453c8
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
AngryRidersSociety

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-18
*/

// SPDX-License-Identifier: GPL-3.0

// 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/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/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/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/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/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/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 ||
            interfaceId == type(IERC2981).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);
    }
}

interface IERC2981 is IERC165 {
    /// ERC165 bytes to add to interface array - set in parent contract
    /// implementing this standard
    ///
    /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
    /// bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;
    /// _registerInterface(_INTERFACE_ID_ERC2981);

    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _salePrice - the sale price of the NFT asset specified by _tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for _salePrice
    function royaltyInfo(
        uint256 _tokenId,
        uint256 _salePrice
    ) external view returns (
        address receiver,
        uint256 royaltyAmount
    );
}

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6, true) {}
}

pragma solidity >=0.7.0 <0.9.0;

contract deployedContract {
    function ownerOf(uint256) public returns (address) {}
}

contract AngryRidersSociety is DefaultOperatorFilterer, ERC721Enumerable, IERC2981, Ownable {
  using Strings for uint256;
  string public baseURI = "baseUrl";
  string public notRevealedUri = "notrevealedUrl.json";
  uint256 public maxSupply = 4250;
  bool public paused = true;
  bool public revealed = false;
  constructor(
    string memory _name,
    string memory _symbol
  ) ERC721(_name, _symbol) {
  }
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
  function mint(uint256 ppID) public {
    require(!paused, "the contract is paused");
    if (_exists(ppID)) { revert(); }
    if (deployedContract(0x50ca8e24D80946B9ccF4A15279DfF9eafde7e240).ownerOf(ppID) != msg.sender) {
      revert();
    }
    _safeMint(msg.sender, ppID);
  }
  function mintMultiple(uint256[] calldata ppID, uint amount) public {
      if (amount > 50) { revert(); }
      for (uint i; i < amount; i++) {
          mint(ppID[i]);
      }
  }
  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    if(revealed == false) {
        return notRevealedUri;
    }
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json"))
        : "";
  }
  function reveal() public onlyOwner {
      revealed = true;
  }
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

function mintOwner(uint256 amount) public onlyOwner {
    require(amount > 0, "Amount must be greater than 0");
    require(totalSupply() + amount <= maxSupply, "Minting exceeds the max supply");

    for (uint256 i = 0; i < amount; i++) {
        uint256 tokenId = totalSupply() + 1;
        _safeMint(msg.sender, tokenId);
    }
}


  function royaltyInfo(uint256 tokenId, uint256 salePrice)
    public
    pure
    override
    returns (address receiver, uint256 royaltyAmount)
  {
    return (0x6E17dBaF9B8753380f2d3E703Cf7e822d0D4e254,(10 * salePrice)/100);
  }
  function setApprovalForAll(address operator, bool approved) public override(ERC721, IERC721) onlyAllowedOperatorApproval(operator) {
    super.setApprovalForAll(operator, approved);
  }
  function approve(address operator, uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperatorApproval(operator) {
    super.approve(operator, tokenId);
  }
  function transferFrom(address from, address to, uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperator(from) {
    super.transferFrom(from, to, tokenId);
  }
  function safeTransferFrom(address from, address to, uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperator(from) {
    super.safeTransferFrom(from, to, tokenId);
  }
  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
    public
    override(ERC721, IERC721)
    onlyAllowedOperator(from)
  {
    super.safeTransferFrom(from, to, tokenId, data);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ppID","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ppID","type":"uint256[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"pure","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c0604052600760809081526618985cd9555c9b60ca1b60a052600b906200002890826200034f565b5060408051808201909152601381527f6e6f7472657665616c656455726c2e6a736f6e000000000000000000000000006020820152600c906200006c90826200034f565b5061109a600d55600e805461ffff191660011790553480156200008e57600080fd5b5060405162002cdf38038062002cdf833981016040819052620000b191620004ca565b8181733cc6cdda760b79bafa08df41ecfa224f810dceb660016daaeb6d7670e522a718067333cd4e3b156200020f5780156200015d57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200013e57600080fd5b505af115801562000153573d6000803e3d6000fd5b505050506200020f565b6001600160a01b03821615620001ae5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000123565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001f557600080fd5b505af11580156200020a573d6000803e3d6000fd5b505050505b50600090506200022083826200034f565b5060016200022f82826200034f565b5050506200024c620002466200025460201b60201c565b62000258565b505062000534565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002d557607f821691505b602082108103620002f657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034a57600081815260208120601f850160051c81016020861015620003255750805b601f850160051c820191505b81811015620003465782815560010162000331565b5050505b505050565b81516001600160401b038111156200036b576200036b620002aa565b62000383816200037c8454620002c0565b84620002fc565b602080601f831160018114620003bb5760008415620003a25750858301515b600019600386901b1c1916600185901b17855562000346565b600085815260208120601f198616915b82811015620003ec57888601518255948401946001909101908401620003cb565b50858210156200040b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200042d57600080fd5b81516001600160401b03808211156200044a576200044a620002aa565b604051601f8301601f19908116603f01168101908282118183101715620004755762000475620002aa565b816040528381526020925086838588010111156200049257600080fd5b600091505b83821015620004b6578582018301518183018401529082019062000497565b600093810190920192909252949350505050565b60008060408385031215620004de57600080fd5b82516001600160401b0380821115620004f657600080fd5b62000504868387016200041b565b935060208501519150808211156200051b57600080fd5b506200052a858286016200041b565b9150509250929050565b61279b80620005446000396000f3fe6080604052600436106102045760003560e01c806355f804b311610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146105cf578063e985e9c5146105e5578063eeb13dca1461062e578063f2c4ce1e1461064e578063f2fde38b1461066e57600080fd5b8063a22cb4651461055a578063a475b5dd1461057a578063b88d4fde1461058f578063c87b56dd146105af57600080fd5b806370a08231116100e757806370a08231146104d2578063715018a6146104f25780638da5cb5b1461050757806395d89b4114610525578063a0712d681461053a57600080fd5b806355f804b3146104635780635c975abb146104835780636352211e1461049d5780636c0360eb146104bd57600080fd5b80632a55205a1161019b57806341f434341161016a57806341f43434146103b557806342842e0e146103d7578063438b6300146103f75780634f6ccce714610424578063518302271461044457600080fd5b80632a55205a1461032e5780632f745c591461036d57806333f88d221461038d5780633ccfd60b146103ad57600080fd5b8063081c8c44116101d7578063081c8c44146102ba578063095ea7b3146102cf57806318160ddd146102ef57806323b872dd1461030e57600080fd5b806301ffc9a71461020957806302329a291461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611f9c565b61068e565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611fc7565b6106b9565b005b34801561026c57600080fd5b506102756106ff565b6040516102359190612034565b34801561028e57600080fd5b506102a261029d366004612047565b610791565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b50610275610826565b3480156102db57600080fd5b5061025e6102ea366004612075565b6108b4565b3480156102fb57600080fd5b506008545b604051908152602001610235565b34801561031a57600080fd5b5061025e6103293660046120a1565b6108cd565b34801561033a57600080fd5b5061034e6103493660046120e2565b6108f8565b604080516001600160a01b039093168352602083019190915201610235565b34801561037957600080fd5b50610300610388366004612075565b610932565b34801561039957600080fd5b5061025e6103a8366004612047565b6109c8565b61025e610aeb565b3480156103c157600080fd5b506102a26daaeb6d7670e522a718067333cd4e81565b3480156103e357600080fd5b5061025e6103f23660046120a1565b610b89565b34801561040357600080fd5b50610417610412366004612104565b610bae565b6040516102359190612121565b34801561043057600080fd5b5061030061043f366004612047565b610c50565b34801561045057600080fd5b50600e5461022990610100900460ff1681565b34801561046f57600080fd5b5061025e61047e3660046121f1565b610ce3565b34801561048f57600080fd5b50600e546102299060ff1681565b3480156104a957600080fd5b506102a26104b8366004612047565b610d19565b3480156104c957600080fd5b50610275610d90565b3480156104de57600080fd5b506103006104ed366004612104565b610d9d565b3480156104fe57600080fd5b5061025e610e24565b34801561051357600080fd5b50600a546001600160a01b03166102a2565b34801561053157600080fd5b50610275610e5a565b34801561054657600080fd5b5061025e610555366004612047565b610e69565b34801561056657600080fd5b5061025e61057536600461223a565b610f6c565b34801561058657600080fd5b5061025e610f80565b34801561059b57600080fd5b5061025e6105aa366004612273565b610fbb565b3480156105bb57600080fd5b506102756105ca366004612047565b610fe8565b3480156105db57600080fd5b50610300600d5481565b3480156105f157600080fd5b506102296106003660046122f3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063a57600080fd5b5061025e610649366004612321565b611169565b34801561065a57600080fd5b5061025e6106693660046121f1565b6111b5565b34801561067a57600080fd5b5061025e610689366004612104565b6111eb565b60006001600160e01b0319821663780e9d6360e01b14806106b357506106b382611283565b92915050565b600a546001600160a01b031633146106ec5760405162461bcd60e51b81526004016106e39061239c565b60405180910390fd5b600e805460ff1916911515919091179055565b60606000805461070e906123d1565b80601f016020809104026020016040519081016040528092919081815260200182805461073a906123d1565b80156107875780601f1061075c57610100808354040283529160200191610787565b820191906000526020600020905b81548152906001019060200180831161076a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661080a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e3565b506000908152600460205260409020546001600160a01b031690565b600c8054610833906123d1565b80601f016020809104026020016040519081016040528092919081815260200182805461085f906123d1565b80156108ac5780601f10610881576101008083540402835291602001916108ac565b820191906000526020600020905b81548152906001019060200180831161088f57829003601f168201915b505050505081565b816108be816112ee565b6108c883836113a7565b505050565b826001600160a01b03811633146108e7576108e7336112ee565b6108f28484846114b7565b50505050565b600080736e17dbaf9b8753380f2d3e703cf7e822d0d4e254606461091d85600a612421565b610927919061244e565b915091509250929050565b600061093d83610d9d565b821061099f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106e3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109f25760405162461bcd60e51b81526004016106e39061239c565b60008111610a425760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064016106e3565b600d5481610a4f60085490565b610a599190612462565b1115610aa75760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e67206578636565647320746865206d617820737570706c79000060448201526064016106e3565b60005b81811015610ae7576000610abd60085490565b610ac8906001612462565b9050610ad433826114e8565b5080610adf81612475565b915050610aaa565b5050565b600a546001600160a01b03163314610b155760405162461bcd60e51b81526004016106e39061239c565b6000610b29600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b73576040519150601f19603f3d011682016040523d82523d6000602084013e610b78565b606091505b5050905080610b8657600080fd5b50565b826001600160a01b0381163314610ba357610ba3336112ee565b6108f2848484611502565b60606000610bbb83610d9d565b905060008167ffffffffffffffff811115610bd857610bd8612165565b604051908082528060200260200182016040528015610c01578160200160208202803683370190505b50905060005b82811015610c4857610c198582610932565b828281518110610c2b57610c2b61248e565b602090810291909101015280610c4081612475565b915050610c07565b509392505050565b6000610c5b60085490565b8210610cbe5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106e3565b60088281548110610cd157610cd161248e565b90600052602060002001549050919050565b600a546001600160a01b03163314610d0d5760405162461bcd60e51b81526004016106e39061239c565b600b610ae782826124f2565b6000818152600260205260408120546001600160a01b0316806106b35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e3565b600b8054610833906123d1565b60006001600160a01b038216610e085760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e4e5760405162461bcd60e51b81526004016106e39061239c565b610e58600061151d565b565b60606001805461070e906123d1565b600e5460ff1615610eb55760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016106e3565b6000818152600260205260409020546001600160a01b031615610ed757600080fd5b6040516331a9108f60e11b81526004810182905233907350ca8e24d80946b9ccf4a15279dff9eafde7e24090636352211e906024016020604051808303816000875af1158015610f2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4f91906125b2565b6001600160a01b031614610f6257600080fd5b610b8633826114e8565b81610f76816112ee565b6108c8838361156f565b600a546001600160a01b03163314610faa5760405162461bcd60e51b81526004016106e39061239c565b600e805461ff001916610100179055565b836001600160a01b0381163314610fd557610fd5336112ee565b610fe185858585611633565b5050505050565b6000818152600260205260409020546060906001600160a01b03166110675760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e3565b600e54610100900460ff16151560000361110d57600c8054611088906123d1565b80601f01602080910402602001604051908101604052809291908181526020018280546110b4906123d1565b80156111015780601f106110d657610100808354040283529160200191611101565b820191906000526020600020905b8154815290600101906020018083116110e457829003601f168201915b50505050509050919050565b6000611117611665565b905060008151116111375760405180602001604052806000815250611162565b8061114184611674565b6040516020016111529291906125cf565b6040516020818303038152906040525b9392505050565b603281111561117757600080fd5b60005b818110156108f2576111a38484838181106111975761119761248e565b90506020020135610e69565b806111ad81612475565b91505061117a565b600a546001600160a01b031633146111df5760405162461bcd60e51b81526004016106e39061239c565b600c610ae782826124f2565b600a546001600160a01b031633146112155760405162461bcd60e51b81526004016106e39061239c565b6001600160a01b03811661127a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e3565b610b868161151d565b60006001600160e01b031982166380ac58cd60e01b14806112b457506001600160e01b03198216635b5e139f60e01b145b806112cf57506001600160e01b0319821663152a902d60e11b145b806106b357506301ffc9a760e01b6001600160e01b03198316146106b3565b6daaeb6d7670e522a718067333cd4e3b15610b8657604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561135b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137f919061260e565b610b8657604051633b79c77360e21b81526001600160a01b03821660048201526024016106e3565b60006113b282610d19565b9050806001600160a01b0316836001600160a01b03160361141f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e3565b336001600160a01b038216148061143b575061143b8133610600565b6114ad5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e3565b6108c8838361177d565b6114c133826117eb565b6114dd5760405162461bcd60e51b81526004016106e39061262b565b6108c88383836118de565b610ae7828260405180602001604052806000815250611a89565b6108c883838360405180602001604052806000815250610fbb565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b038316036115c75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61163d33836117eb565b6116595760405162461bcd60e51b81526004016106e39061262b565b6108f284848484611abc565b6060600b805461070e906123d1565b60608160000361169b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116c557806116af81612475565b91506116be9050600a8361244e565b915061169f565b60008167ffffffffffffffff8111156116e0576116e0612165565b6040519080825280601f01601f19166020018201604052801561170a576020820181803683370190505b5090505b84156117755761171f60018361267c565b915061172c600a8661268f565b611737906030612462565b60f81b81838151811061174c5761174c61248e565b60200101906001600160f81b031916908160001a90535061176e600a8661244e565b945061170e565b949350505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117b282610d19565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e3565b600061186f83610d19565b9050806001600160a01b0316846001600160a01b031614806118aa5750836001600160a01b031661189f84610791565b6001600160a01b0316145b8061177557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611775565b826001600160a01b03166118f182610d19565b6001600160a01b0316146119595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e3565b6001600160a01b0382166119bb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e3565b6119c6838383611aef565b6119d160008261177d565b6001600160a01b03831660009081526003602052604081208054600192906119fa90849061267c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a28908490612462565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611a938383611ba7565b611aa06000848484611cf5565b6108c85760405162461bcd60e51b81526004016106e3906126a3565b611ac78484846118de565b611ad384848484611cf5565b6108f25760405162461bcd60e51b81526004016106e3906126a3565b6001600160a01b038316611b4a57611b4581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b6d565b816001600160a01b0316836001600160a01b031614611b6d57611b6d8382611df6565b6001600160a01b038216611b84576108c881611e93565b826001600160a01b0316826001600160a01b0316146108c8576108c88282611f42565b6001600160a01b038216611bfd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e3565b6000818152600260205260409020546001600160a01b031615611c625760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e3565b611c6e60008383611aef565b6001600160a01b0382166000908152600360205260408120805460019290611c97908490612462565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611deb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d399033908990889088906004016126f5565b6020604051808303816000875af1925050508015611d74575060408051601f3d908101601f19168201909252611d7191810190612732565b60015b611dd1573d808015611da2576040519150601f19603f3d011682016040523d82523d6000602084013e611da7565b606091505b508051600003611dc95760405162461bcd60e51b81526004016106e3906126a3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611775565b506001949350505050565b60006001611e0384610d9d565b611e0d919061267c565b600083815260076020526040902054909150808214611e60576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ea59060019061267c565b60008381526009602052604081205460088054939450909284908110611ecd57611ecd61248e565b906000526020600020015490508060088381548110611eee57611eee61248e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f2657611f2661274f565b6001900381819060005260206000200160009055905550505050565b6000611f4d83610d9d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981168114610b8657600080fd5b600060208284031215611fae57600080fd5b813561116281611f86565b8015158114610b8657600080fd5b600060208284031215611fd957600080fd5b813561116281611fb9565b60005b83811015611fff578181015183820152602001611fe7565b50506000910152565b60008151808452612020816020860160208601611fe4565b601f01601f19169290920160200192915050565b6020815260006111626020830184612008565b60006020828403121561205957600080fd5b5035919050565b6001600160a01b0381168114610b8657600080fd5b6000806040838503121561208857600080fd5b823561209381612060565b946020939093013593505050565b6000806000606084860312156120b657600080fd5b83356120c181612060565b925060208401356120d181612060565b929592945050506040919091013590565b600080604083850312156120f557600080fd5b50508035926020909101359150565b60006020828403121561211657600080fd5b813561116281612060565b6020808252825182820181905260009190848201906040850190845b818110156121595783518352928401929184019160010161213d565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561219657612196612165565b604051601f8501601f19908116603f011681019082821181831017156121be576121be612165565b816040528093508581528686860111156121d757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561220357600080fd5b813567ffffffffffffffff81111561221a57600080fd5b8201601f8101841361222b57600080fd5b6117758482356020840161217b565b6000806040838503121561224d57600080fd5b823561225881612060565b9150602083013561226881611fb9565b809150509250929050565b6000806000806080858703121561228957600080fd5b843561229481612060565b935060208501356122a481612060565b925060408501359150606085013567ffffffffffffffff8111156122c757600080fd5b8501601f810187136122d857600080fd5b6122e78782356020840161217b565b91505092959194509250565b6000806040838503121561230657600080fd5b823561231181612060565b9150602083013561226881612060565b60008060006040848603121561233657600080fd5b833567ffffffffffffffff8082111561234e57600080fd5b818601915086601f83011261236257600080fd5b81358181111561237157600080fd5b8760208260051b850101111561238657600080fd5b6020928301989097509590910135949350505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806123e557607f821691505b60208210810361240557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106b3576106b361240b565b634e487b7160e01b600052601260045260246000fd5b60008261245d5761245d612438565b500490565b808201808211156106b3576106b361240b565b6000600182016124875761248761240b565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f8211156108c857600081815260208120601f850160051c810160208610156124cb5750805b601f850160051c820191505b818110156124ea578281556001016124d7565b505050505050565b815167ffffffffffffffff81111561250c5761250c612165565b6125208161251a84546123d1565b846124a4565b602080601f831160018114612555576000841561253d5750858301515b600019600386901b1c1916600185901b1785556124ea565b600085815260208120601f198616915b8281101561258457888601518255948401946001909101908401612565565b50858210156125a25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156125c457600080fd5b815161116281612060565b600083516125e1818460208801611fe4565b8351908301906125f5818360208801611fe4565b64173539b7b760d91b9101908152600501949350505050565b60006020828403121561262057600080fd5b815161116281611fb9565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b818103818111156106b3576106b361240b565b60008261269e5761269e612438565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061272890830184612008565b9695505050505050565b60006020828403121561274457600080fd5b815161116281611f86565b634e487b7160e01b600052603160045260246000fdfea26469706673582212200f0e5e88fab67d4653bf3bc255548f8acd2ba1afef2dd5199da1c1f135278e1264736f6c63430008120033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000014416e6772792052696465727320536f636965747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000034152530000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c806355f804b311610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146105cf578063e985e9c5146105e5578063eeb13dca1461062e578063f2c4ce1e1461064e578063f2fde38b1461066e57600080fd5b8063a22cb4651461055a578063a475b5dd1461057a578063b88d4fde1461058f578063c87b56dd146105af57600080fd5b806370a08231116100e757806370a08231146104d2578063715018a6146104f25780638da5cb5b1461050757806395d89b4114610525578063a0712d681461053a57600080fd5b806355f804b3146104635780635c975abb146104835780636352211e1461049d5780636c0360eb146104bd57600080fd5b80632a55205a1161019b57806341f434341161016a57806341f43434146103b557806342842e0e146103d7578063438b6300146103f75780634f6ccce714610424578063518302271461044457600080fd5b80632a55205a1461032e5780632f745c591461036d57806333f88d221461038d5780633ccfd60b146103ad57600080fd5b8063081c8c44116101d7578063081c8c44146102ba578063095ea7b3146102cf57806318160ddd146102ef57806323b872dd1461030e57600080fd5b806301ffc9a71461020957806302329a291461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611f9c565b61068e565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611fc7565b6106b9565b005b34801561026c57600080fd5b506102756106ff565b6040516102359190612034565b34801561028e57600080fd5b506102a261029d366004612047565b610791565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b50610275610826565b3480156102db57600080fd5b5061025e6102ea366004612075565b6108b4565b3480156102fb57600080fd5b506008545b604051908152602001610235565b34801561031a57600080fd5b5061025e6103293660046120a1565b6108cd565b34801561033a57600080fd5b5061034e6103493660046120e2565b6108f8565b604080516001600160a01b039093168352602083019190915201610235565b34801561037957600080fd5b50610300610388366004612075565b610932565b34801561039957600080fd5b5061025e6103a8366004612047565b6109c8565b61025e610aeb565b3480156103c157600080fd5b506102a26daaeb6d7670e522a718067333cd4e81565b3480156103e357600080fd5b5061025e6103f23660046120a1565b610b89565b34801561040357600080fd5b50610417610412366004612104565b610bae565b6040516102359190612121565b34801561043057600080fd5b5061030061043f366004612047565b610c50565b34801561045057600080fd5b50600e5461022990610100900460ff1681565b34801561046f57600080fd5b5061025e61047e3660046121f1565b610ce3565b34801561048f57600080fd5b50600e546102299060ff1681565b3480156104a957600080fd5b506102a26104b8366004612047565b610d19565b3480156104c957600080fd5b50610275610d90565b3480156104de57600080fd5b506103006104ed366004612104565b610d9d565b3480156104fe57600080fd5b5061025e610e24565b34801561051357600080fd5b50600a546001600160a01b03166102a2565b34801561053157600080fd5b50610275610e5a565b34801561054657600080fd5b5061025e610555366004612047565b610e69565b34801561056657600080fd5b5061025e61057536600461223a565b610f6c565b34801561058657600080fd5b5061025e610f80565b34801561059b57600080fd5b5061025e6105aa366004612273565b610fbb565b3480156105bb57600080fd5b506102756105ca366004612047565b610fe8565b3480156105db57600080fd5b50610300600d5481565b3480156105f157600080fd5b506102296106003660046122f3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063a57600080fd5b5061025e610649366004612321565b611169565b34801561065a57600080fd5b5061025e6106693660046121f1565b6111b5565b34801561067a57600080fd5b5061025e610689366004612104565b6111eb565b60006001600160e01b0319821663780e9d6360e01b14806106b357506106b382611283565b92915050565b600a546001600160a01b031633146106ec5760405162461bcd60e51b81526004016106e39061239c565b60405180910390fd5b600e805460ff1916911515919091179055565b60606000805461070e906123d1565b80601f016020809104026020016040519081016040528092919081815260200182805461073a906123d1565b80156107875780601f1061075c57610100808354040283529160200191610787565b820191906000526020600020905b81548152906001019060200180831161076a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661080a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e3565b506000908152600460205260409020546001600160a01b031690565b600c8054610833906123d1565b80601f016020809104026020016040519081016040528092919081815260200182805461085f906123d1565b80156108ac5780601f10610881576101008083540402835291602001916108ac565b820191906000526020600020905b81548152906001019060200180831161088f57829003601f168201915b505050505081565b816108be816112ee565b6108c883836113a7565b505050565b826001600160a01b03811633146108e7576108e7336112ee565b6108f28484846114b7565b50505050565b600080736e17dbaf9b8753380f2d3e703cf7e822d0d4e254606461091d85600a612421565b610927919061244e565b915091509250929050565b600061093d83610d9d565b821061099f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106e3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109f25760405162461bcd60e51b81526004016106e39061239c565b60008111610a425760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064016106e3565b600d5481610a4f60085490565b610a599190612462565b1115610aa75760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e67206578636565647320746865206d617820737570706c79000060448201526064016106e3565b60005b81811015610ae7576000610abd60085490565b610ac8906001612462565b9050610ad433826114e8565b5080610adf81612475565b915050610aaa565b5050565b600a546001600160a01b03163314610b155760405162461bcd60e51b81526004016106e39061239c565b6000610b29600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b73576040519150601f19603f3d011682016040523d82523d6000602084013e610b78565b606091505b5050905080610b8657600080fd5b50565b826001600160a01b0381163314610ba357610ba3336112ee565b6108f2848484611502565b60606000610bbb83610d9d565b905060008167ffffffffffffffff811115610bd857610bd8612165565b604051908082528060200260200182016040528015610c01578160200160208202803683370190505b50905060005b82811015610c4857610c198582610932565b828281518110610c2b57610c2b61248e565b602090810291909101015280610c4081612475565b915050610c07565b509392505050565b6000610c5b60085490565b8210610cbe5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106e3565b60088281548110610cd157610cd161248e565b90600052602060002001549050919050565b600a546001600160a01b03163314610d0d5760405162461bcd60e51b81526004016106e39061239c565b600b610ae782826124f2565b6000818152600260205260408120546001600160a01b0316806106b35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e3565b600b8054610833906123d1565b60006001600160a01b038216610e085760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e4e5760405162461bcd60e51b81526004016106e39061239c565b610e58600061151d565b565b60606001805461070e906123d1565b600e5460ff1615610eb55760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016106e3565b6000818152600260205260409020546001600160a01b031615610ed757600080fd5b6040516331a9108f60e11b81526004810182905233907350ca8e24d80946b9ccf4a15279dff9eafde7e24090636352211e906024016020604051808303816000875af1158015610f2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4f91906125b2565b6001600160a01b031614610f6257600080fd5b610b8633826114e8565b81610f76816112ee565b6108c8838361156f565b600a546001600160a01b03163314610faa5760405162461bcd60e51b81526004016106e39061239c565b600e805461ff001916610100179055565b836001600160a01b0381163314610fd557610fd5336112ee565b610fe185858585611633565b5050505050565b6000818152600260205260409020546060906001600160a01b03166110675760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e3565b600e54610100900460ff16151560000361110d57600c8054611088906123d1565b80601f01602080910402602001604051908101604052809291908181526020018280546110b4906123d1565b80156111015780601f106110d657610100808354040283529160200191611101565b820191906000526020600020905b8154815290600101906020018083116110e457829003601f168201915b50505050509050919050565b6000611117611665565b905060008151116111375760405180602001604052806000815250611162565b8061114184611674565b6040516020016111529291906125cf565b6040516020818303038152906040525b9392505050565b603281111561117757600080fd5b60005b818110156108f2576111a38484838181106111975761119761248e565b90506020020135610e69565b806111ad81612475565b91505061117a565b600a546001600160a01b031633146111df5760405162461bcd60e51b81526004016106e39061239c565b600c610ae782826124f2565b600a546001600160a01b031633146112155760405162461bcd60e51b81526004016106e39061239c565b6001600160a01b03811661127a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e3565b610b868161151d565b60006001600160e01b031982166380ac58cd60e01b14806112b457506001600160e01b03198216635b5e139f60e01b145b806112cf57506001600160e01b0319821663152a902d60e11b145b806106b357506301ffc9a760e01b6001600160e01b03198316146106b3565b6daaeb6d7670e522a718067333cd4e3b15610b8657604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561135b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137f919061260e565b610b8657604051633b79c77360e21b81526001600160a01b03821660048201526024016106e3565b60006113b282610d19565b9050806001600160a01b0316836001600160a01b03160361141f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e3565b336001600160a01b038216148061143b575061143b8133610600565b6114ad5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e3565b6108c8838361177d565b6114c133826117eb565b6114dd5760405162461bcd60e51b81526004016106e39061262b565b6108c88383836118de565b610ae7828260405180602001604052806000815250611a89565b6108c883838360405180602001604052806000815250610fbb565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b038316036115c75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61163d33836117eb565b6116595760405162461bcd60e51b81526004016106e39061262b565b6108f284848484611abc565b6060600b805461070e906123d1565b60608160000361169b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116c557806116af81612475565b91506116be9050600a8361244e565b915061169f565b60008167ffffffffffffffff8111156116e0576116e0612165565b6040519080825280601f01601f19166020018201604052801561170a576020820181803683370190505b5090505b84156117755761171f60018361267c565b915061172c600a8661268f565b611737906030612462565b60f81b81838151811061174c5761174c61248e565b60200101906001600160f81b031916908160001a90535061176e600a8661244e565b945061170e565b949350505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117b282610d19565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e3565b600061186f83610d19565b9050806001600160a01b0316846001600160a01b031614806118aa5750836001600160a01b031661189f84610791565b6001600160a01b0316145b8061177557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611775565b826001600160a01b03166118f182610d19565b6001600160a01b0316146119595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e3565b6001600160a01b0382166119bb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e3565b6119c6838383611aef565b6119d160008261177d565b6001600160a01b03831660009081526003602052604081208054600192906119fa90849061267c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a28908490612462565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611a938383611ba7565b611aa06000848484611cf5565b6108c85760405162461bcd60e51b81526004016106e3906126a3565b611ac78484846118de565b611ad384848484611cf5565b6108f25760405162461bcd60e51b81526004016106e3906126a3565b6001600160a01b038316611b4a57611b4581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b6d565b816001600160a01b0316836001600160a01b031614611b6d57611b6d8382611df6565b6001600160a01b038216611b84576108c881611e93565b826001600160a01b0316826001600160a01b0316146108c8576108c88282611f42565b6001600160a01b038216611bfd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e3565b6000818152600260205260409020546001600160a01b031615611c625760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e3565b611c6e60008383611aef565b6001600160a01b0382166000908152600360205260408120805460019290611c97908490612462565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611deb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d399033908990889088906004016126f5565b6020604051808303816000875af1925050508015611d74575060408051601f3d908101601f19168201909252611d7191810190612732565b60015b611dd1573d808015611da2576040519150601f19603f3d011682016040523d82523d6000602084013e611da7565b606091505b508051600003611dc95760405162461bcd60e51b81526004016106e3906126a3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611775565b506001949350505050565b60006001611e0384610d9d565b611e0d919061267c565b600083815260076020526040902054909150808214611e60576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ea59060019061267c565b60008381526009602052604081205460088054939450909284908110611ecd57611ecd61248e565b906000526020600020015490508060088381548110611eee57611eee61248e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f2657611f2661274f565b6001900381819060005260206000200160009055905550505050565b6000611f4d83610d9d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981168114610b8657600080fd5b600060208284031215611fae57600080fd5b813561116281611f86565b8015158114610b8657600080fd5b600060208284031215611fd957600080fd5b813561116281611fb9565b60005b83811015611fff578181015183820152602001611fe7565b50506000910152565b60008151808452612020816020860160208601611fe4565b601f01601f19169290920160200192915050565b6020815260006111626020830184612008565b60006020828403121561205957600080fd5b5035919050565b6001600160a01b0381168114610b8657600080fd5b6000806040838503121561208857600080fd5b823561209381612060565b946020939093013593505050565b6000806000606084860312156120b657600080fd5b83356120c181612060565b925060208401356120d181612060565b929592945050506040919091013590565b600080604083850312156120f557600080fd5b50508035926020909101359150565b60006020828403121561211657600080fd5b813561116281612060565b6020808252825182820181905260009190848201906040850190845b818110156121595783518352928401929184019160010161213d565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561219657612196612165565b604051601f8501601f19908116603f011681019082821181831017156121be576121be612165565b816040528093508581528686860111156121d757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561220357600080fd5b813567ffffffffffffffff81111561221a57600080fd5b8201601f8101841361222b57600080fd5b6117758482356020840161217b565b6000806040838503121561224d57600080fd5b823561225881612060565b9150602083013561226881611fb9565b809150509250929050565b6000806000806080858703121561228957600080fd5b843561229481612060565b935060208501356122a481612060565b925060408501359150606085013567ffffffffffffffff8111156122c757600080fd5b8501601f810187136122d857600080fd5b6122e78782356020840161217b565b91505092959194509250565b6000806040838503121561230657600080fd5b823561231181612060565b9150602083013561226881612060565b60008060006040848603121561233657600080fd5b833567ffffffffffffffff8082111561234e57600080fd5b818601915086601f83011261236257600080fd5b81358181111561237157600080fd5b8760208260051b850101111561238657600080fd5b6020928301989097509590910135949350505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806123e557607f821691505b60208210810361240557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106b3576106b361240b565b634e487b7160e01b600052601260045260246000fd5b60008261245d5761245d612438565b500490565b808201808211156106b3576106b361240b565b6000600182016124875761248761240b565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f8211156108c857600081815260208120601f850160051c810160208610156124cb5750805b601f850160051c820191505b818110156124ea578281556001016124d7565b505050505050565b815167ffffffffffffffff81111561250c5761250c612165565b6125208161251a84546123d1565b846124a4565b602080601f831160018114612555576000841561253d5750858301515b600019600386901b1c1916600185901b1785556124ea565b600085815260208120601f198616915b8281101561258457888601518255948401946001909101908401612565565b50858210156125a25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156125c457600080fd5b815161116281612060565b600083516125e1818460208801611fe4565b8351908301906125f5818360208801611fe4565b64173539b7b760d91b9101908152600501949350505050565b60006020828403121561262057600080fd5b815161116281611fb9565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b818103818111156106b3576106b361240b565b60008261269e5761269e612438565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061272890830184612008565b9695505050505050565b60006020828403121561274457600080fd5b815161116281611f86565b634e487b7160e01b600052603160045260246000fdfea26469706673582212200f0e5e88fab67d4653bf3bc255548f8acd2ba1afef2dd5199da1c1f135278e1264736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000014416e6772792052696465727320536f636965747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000034152530000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Angry Riders Society
Arg [1] : _symbol (string): ARS

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [3] : 416e6772792052696465727320536f6369657479000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4152530000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

53477:3914:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34724:224;;;;;;;;;;-1:-1:-1;34724:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34724:224:0;;;;;;;;55622:73;;;;;;;;;;-1:-1:-1;55622:73:0;;;;;:::i;:::-;;:::i;:::-;;22616:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24175:221::-;;;;;;;;;;-1:-1:-1;24175:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2066:32:1;;;2048:51;;2036:2;2021:18;24175:221:0;1902:203:1;53642:52:0;;;;;;;;;;;;;:::i;56627:168::-;;;;;;;;;;-1:-1:-1;56627:168:0;;;;;:::i;:::-;;:::i;35364:113::-;;;;;;;;;;-1:-1:-1;35452:10:0;:17;35364:113;;;2712:25:1;;;2700:2;2685:18;35364:113:0;2566:177:1;56799:174:0;;;;;;;;;;-1:-1:-1;56799:174:0;;;;;:::i;:::-;;:::i;56196:236::-;;;;;;;;;;-1:-1:-1;56196:236:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3654:32:1;;;3636:51;;3718:2;3703:18;;3696:34;;;;3609:18;56196:236:0;3462:274:1;35032:256:0;;;;;;;;;;-1:-1:-1;35032:256:0;;;;;:::i;:::-;;:::i;55848:340::-;;;;;;;;;;-1:-1:-1;55848:340:0;;;;;:::i;:::-;;:::i;55699:145::-;;;:::i;50529:143::-;;;;;;;;;;;;50629:42;50529:143;;56977:182;;;;;;;;;;-1:-1:-1;56977:182:0;;;;;:::i;:::-;;:::i;54488:348::-;;;;;;;;;;-1:-1:-1;54488:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;35554:233::-;;;;;;;;;;-1:-1:-1;35554:233:0;;;;;:::i;:::-;;:::i;53765:28::-;;;;;;;;;;-1:-1:-1;53765:28:0;;;;;;;;;;;55396:98;;;;;;;;;;-1:-1:-1;55396:98:0;;;;;:::i;:::-;;:::i;53735:25::-;;;;;;;;;;-1:-1:-1;53735:25:0;;;;;;;;22310:239;;;;;;;;;;-1:-1:-1;22310:239:0;;;;;:::i;:::-;;:::i;53604:33::-;;;;;;;;;;;;;:::i;22040:208::-;;;;;;;;;;-1:-1:-1;22040:208:0;;;;;:::i;:::-;;:::i;42513:94::-;;;;;;;;;;;;;:::i;41862:87::-;;;;;;;;;;-1:-1:-1;41935:6:0;;-1:-1:-1;;;;;41935:6:0;41862:87;;22785:104;;;;;;;;;;;;;:::i;54008:287::-;;;;;;;;;;-1:-1:-1;54008:287:0;;;;;:::i;:::-;;:::i;56436:187::-;;;;;;;;;;-1:-1:-1;56436:187:0;;;;;:::i;:::-;;:::i;55327:65::-;;;;;;;;;;;;;:::i;57163:225::-;;;;;;;;;;-1:-1:-1;57163:225:0;;;;;:::i;:::-;;:::i;54840:483::-;;;;;;;;;;-1:-1:-1;54840:483:0;;;;;:::i;:::-;;:::i;53699:31::-;;;;;;;;;;;;;;;;24834:164;;;;;;;;;;-1:-1:-1;24834:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24955:25:0;;;24931:4;24955:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24834:164;54299:185;;;;;;;;;;-1:-1:-1;54299:185:0;;;;;:::i;:::-;;:::i;55498:120::-;;;;;;;;;;-1:-1:-1;55498:120:0;;;;;:::i;:::-;;:::i;42762:192::-;;;;;;;;;;-1:-1:-1;42762:192:0;;;;;:::i;:::-;;:::i;34724:224::-;34826:4;-1:-1:-1;;;;;;34850:50:0;;-1:-1:-1;;;34850:50:0;;:90;;;34904:36;34928:11;34904:23;:36::i;:::-;34843:97;34724:224;-1:-1:-1;;34724:224:0:o;55622:73::-;41935:6;;-1:-1:-1;;;;;41935:6:0;20167:10;42082:23;42074:68;;;;-1:-1:-1;;;42074:68:0;;;;;;;:::i;:::-;;;;;;;;;55674:6:::1;:15:::0;;-1:-1:-1;;55674:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55622:73::o;22616:100::-;22670:13;22703:5;22696:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22616:100;:::o;24175:221::-;24251:7;27658:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27658:16:0;24271:73;;;;-1:-1:-1;;;24271:73:0;;9317:2:1;24271:73:0;;;9299:21:1;9356:2;9336:18;;;9329:30;9395:34;9375:18;;;9368:62;-1:-1:-1;;;9446:18:1;;;9439:42;9498:19;;24271:73:0;9115:408:1;24271:73:0;-1:-1:-1;24364:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24364:24:0;;24175:221::o;53642:52::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56627:168::-;56740:8;52311:30;52332:8;52311:20;:30::i;:::-;56757:32:::1;56771:8;56781:7;56757:13;:32::i;:::-;56627:168:::0;;;:::o;56799:174::-;56917:4;-1:-1:-1;;;;;52037:18:0;;52045:10;52037:18;52033:83;;52072:32;52093:10;52072:20;:32::i;:::-;56930:37:::1;56949:4;56955:2;56959:7;56930:18;:37::i;:::-;56799:174:::0;;;;:::o;56196:236::-;56303:16;;56362:42;56422:3;56406:14;56411:9;56406:2;:14;:::i;:::-;56405:20;;;;:::i;:::-;56354:72;;;;56196:236;;;;;:::o;35032:256::-;35129:7;35165:23;35182:5;35165:16;:23::i;:::-;35157:5;:31;35149:87;;;;-1:-1:-1;;;35149:87:0;;10292:2:1;35149:87:0;;;10274:21:1;10331:2;10311:18;;;10304:30;10370:34;10350:18;;;10343:62;-1:-1:-1;;;10421:18:1;;;10414:41;10472:19;;35149:87:0;10090:407:1;35149:87:0;-1:-1:-1;;;;;;35254:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35032:256::o;55848:340::-;41935:6;;-1:-1:-1;;;;;41935:6:0;20167:10;42082:23;42074:68;;;;-1:-1:-1;;;42074:68:0;;;;;;;:::i;:::-;55924:1:::1;55915:6;:10;55907:52;;;::::0;-1:-1:-1;;;55907:52:0;;10704:2:1;55907:52:0::1;::::0;::::1;10686:21:1::0;10743:2;10723:18;;;10716:30;10782:31;10762:18;;;10755:59;10831:18;;55907:52:0::1;10502:353:1::0;55907:52:0::1;56000:9;;55990:6;55974:13;35452:10:::0;:17;;35364:113;55974:13:::1;:22;;;;:::i;:::-;:35;;55966:78;;;::::0;-1:-1:-1;;;55966:78:0;;11192:2:1;55966:78:0::1;::::0;::::1;11174:21:1::0;11231:2;11211:18;;;11204:30;11270:32;11250:18;;;11243:60;11320:18;;55966:78:0::1;10990:354:1::0;55966:78:0::1;56058:9;56053:132;56077:6;56073:1;:10;56053:132;;;56101:15;56119:13;35452:10:::0;:17;;35364:113;56119:13:::1;:17;::::0;56135:1:::1;56119:17;:::i;:::-;56101:35;;56147:30;56157:10;56169:7;56147:9;:30::i;:::-;-1:-1:-1::0;56085:3:0;::::1;::::0;::::1;:::i;:::-;;;;56053:132;;;;55848:340:::0;:::o;55699:145::-;41935:6;;-1:-1:-1;;;;;41935:6:0;20167:10;42082:23;42074:68;;;;-1:-1:-1;;;42074:68:0;;;;;;;:::i;:::-;55752:7:::1;55773;41935:6:::0;;-1:-1:-1;;;;;41935:6:0;;41862:87;55773:7:::1;-1:-1:-1::0;;;;;55765:21:0::1;55794;55765:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55751:69;;;55835:2;55827:11;;;::::0;::::1;;55744:100;55699:145::o:0;56977:182::-;57099:4;-1:-1:-1;;;;;52037:18:0;;52045:10;52037:18;52033:83;;52072:32;52093:10;52072:20;:32::i;:::-;57112:41:::1;57135:4;57141:2;57145:7;57112:22;:41::i;54488:348::-:0;54563:16;54591:23;54617:17;54627:6;54617:9;:17::i;:::-;54591:43;;54641:25;54683:15;54669:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54669:30:0;;54641:58;;54711:9;54706:103;54726:15;54722:1;:19;54706:103;;;54771:30;54791:6;54799:1;54771:19;:30::i;:::-;54757:8;54766:1;54757:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;54743:3;;;;:::i;:::-;;;;54706:103;;;-1:-1:-1;54822:8:0;54488:348;-1:-1:-1;;;54488:348:0:o;35554:233::-;35629:7;35665:30;35452:10;:17;;35364:113;35665:30;35657:5;:38;35649:95;;;;-1:-1:-1;;;35649:95:0;;12033:2:1;35649:95:0;;;12015:21:1;12072:2;12052:18;;;12045:30;12111:34;12091:18;;;12084:62;-1:-1:-1;;;12162:18:1;;;12155:42;12214:19;;35649:95:0;11831:408:1;35649:95:0;35762:10;35773:5;35762:17;;;;;;;;:::i;:::-;;;;;;;;;35755:24;;35554:233;;;:::o;55396:98::-;41935:6;;-1:-1:-1;;;;;41935:6:0;20167:10;42082:23;42074:68;;;;-1:-1:-1;;;42074:68:0;;;;;;;:::i;:::-;55467:7:::1;:21;55477:11:::0;55467:7;:21:::1;:::i;22310:239::-:0;22382:7;22418:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22418:16:0;;22445:73;;;;-1:-1:-1;;;22445:73:0;;14650:2:1;22445:73:0;;;14632:21:1;14689:2;14669:18;;;14662:30;14728:34;14708:18;;;14701:62;-1:-1:-1;;;14779:18:1;;;14772:39;14828:19;;22445:73:0;14448:405:1;53604:33:0;;;;;;;:::i;22040:208::-;22112:7;-1:-1:-1;;;;;22140:19:0;;22132:74;;;;-1:-1:-1;;;22132:74:0;;15060:2:1;22132:74:0;;;15042:21:1;15099:2;15079:18;;;15072:30;15138:34;15118:18;;;15111:62;-1:-1:-1;;;15189:18:1;;;15182:40;15239:19;;22132:74:0;14858:406:1;22132:74:0;-1:-1:-1;;;;;;22224:16:0;;;;;:9;:16;;;;;;;22040:208::o;42513:94::-;41935:6;;-1:-1:-1;;;;;41935:6:0;20167:10;42082:23;42074:68;;;;-1:-1:-1;;;42074:68:0;;;;;;;:::i;:::-;42578:21:::1;42596:1;42578:9;:21::i;:::-;42513:94::o:0;22785:104::-;22841:13;22874:7;22867:14;;;;;:::i;54008:287::-;54059:6;;;;54058:7;54050:42;;;;-1:-1:-1;;;54050:42:0;;15471:2:1;54050:42:0;;;15453:21:1;15510:2;15490:18;;;15483:30;-1:-1:-1;;;15529:18:1;;;15522:52;15591:18;;54050:42:0;15269:346:1;54050:42:0;27634:4;27658:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27658:16:0;:30;54099:32;;54120:8;;;54099:32;54141:74;;-1:-1:-1;;;54141:74:0;;;;;2712:25:1;;;54219:10:0;;54158:42;;54141:68;;2685:18:1;;54141:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;54141:88:0;;54137:119;;54240:8;;;54137:119;54262:27;54272:10;54284:4;54262:9;:27::i;56436:187::-;56557:8;52311:30;52332:8;52311:20;:30::i;:::-;56574:43:::1;56598:8;56608;56574:23;:43::i;55327:65::-:0;41935:6;;-1:-1:-1;;;;;41935:6:0;20167:10;42082:23;42074:68;;;;-1:-1:-1;;;42074:68:0;;;;;;;:::i;:::-;55371:8:::1;:15:::0;;-1:-1:-1;;55371:15:0::1;;;::::0;;55327:65::o;57163:225::-;57319:4;-1:-1:-1;;;;;52037:18:0;;52045:10;52037:18;52033:83;;52072:32;52093:10;52072:20;:32::i;:::-;57335:47:::1;57358:4;57364:2;57368:7;57377:4;57335:22;:47::i;:::-;57163:225:::0;;;;;:::o;54840:483::-;27634:4;27658:16;;;:7;:16;;;;;;54938:13;;-1:-1:-1;;;;;27658:16:0;54963:97;;;;-1:-1:-1;;;54963:97:0;;16078:2:1;54963:97:0;;;16060:21:1;16117:2;16097:18;;;16090:30;16156:34;16136:18;;;16129:62;-1:-1:-1;;;16207:18:1;;;16200:45;16262:19;;54963:97:0;15876:411:1;54963:97:0;55070:8;;;;;;;:17;;55082:5;55070:17;55067:62;;55107:14;55100:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54840:483;;;:::o;55067:62::-;55135:28;55166:10;:8;:10::i;:::-;55135:41;;55221:1;55196:14;55190:28;:32;:127;;;;;;;;;;;;;;;;;55258:14;55274:18;:7;:16;:18::i;:::-;55241:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55190:127;55183:134;54840:483;-1:-1:-1;;;54840:483:0:o;54299:185::-;54388:2;54379:6;:11;54375:30;;;54394:8;;;54375:30;54418:6;54413:66;54430:6;54426:1;:10;54413:66;;;54456:13;54461:4;;54466:1;54461:7;;;;;;;:::i;:::-;;;;;;;54456:4;:13::i;:::-;54438:3;;;;:::i;:::-;;;;54413:66;;55498:120;41935:6;;-1:-1:-1;;;;;41935:6:0;20167:10;42082:23;42074:68;;;;-1:-1:-1;;;42074:68:0;;;;;;;:::i;:::-;55580:14:::1;:32;55597:15:::0;55580:14;:32:::1;:::i;42762:192::-:0;41935:6;;-1:-1:-1;;;;;41935:6:0;20167:10;42082:23;42074:68;;;;-1:-1:-1;;;42074:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42851:22:0;::::1;42843:73;;;::::0;-1:-1:-1;;;42843:73:0;;17162:2:1;42843:73:0::1;::::0;::::1;17144:21:1::0;17201:2;17181:18;;;17174:30;17240:34;17220:18;;;17213:62;-1:-1:-1;;;17291:18:1;;;17284:36;17337:19;;42843:73:0::1;16960:402:1::0;42843:73:0::1;42927:19;42937:8;42927:9;:19::i;21613:363::-:0;21715:4;-1:-1:-1;;;;;;21752:40:0;;-1:-1:-1;;;21752:40:0;;:105;;-1:-1:-1;;;;;;;21809:48:0;;-1:-1:-1;;;21809:48:0;21752:105;:163;;;-1:-1:-1;;;;;;;21874:41:0;;-1:-1:-1;;;21874:41:0;21752:163;:216;;;-1:-1:-1;;;;;;;;;;7553:40:0;;;21932:36;7444:157;52454:647;50629:42;52645:45;:49;52641:453;;52944:67;;-1:-1:-1;;;52944:67:0;;52995:4;52944:67;;;17579:34:1;-1:-1:-1;;;;;17649:15:1;;17629:18;;;17622:43;50629:42:0;;52944;;17514:18:1;;52944:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52939:144;;53039:28;;-1:-1:-1;;;53039:28:0;;-1:-1:-1;;;;;2066:32:1;;53039:28:0;;;2048:51:1;2021:18;;53039:28:0;1902:203:1;23698:411:0;23779:13;23795:23;23810:7;23795:14;:23::i;:::-;23779:39;;23843:5;-1:-1:-1;;;;;23837:11:0;:2;-1:-1:-1;;;;;23837:11:0;;23829:57;;;;-1:-1:-1;;;23829:57:0;;18128:2:1;23829:57:0;;;18110:21:1;18167:2;18147:18;;;18140:30;18206:34;18186:18;;;18179:62;-1:-1:-1;;;18257:18:1;;;18250:31;18298:19;;23829:57:0;17926:397:1;23829:57:0;20167:10;-1:-1:-1;;;;;23921:21:0;;;;:62;;-1:-1:-1;23946:37:0;23963:5;20167:10;24834:164;:::i;23946:37::-;23899:168;;;;-1:-1:-1;;;23899:168:0;;18530:2:1;23899:168:0;;;18512:21:1;18569:2;18549:18;;;18542:30;18608:34;18588:18;;;18581:62;18679:26;18659:18;;;18652:54;18723:19;;23899:168:0;18328:420:1;23899:168:0;24080:21;24089:2;24093:7;24080:8;:21::i;25065:339::-;25260:41;20167:10;25293:7;25260:18;:41::i;:::-;25252:103;;;;-1:-1:-1;;;25252:103:0;;;;;;;:::i;:::-;25368:28;25378:4;25384:2;25388:7;25368:9;:28::i;28553:110::-;28629:26;28639:2;28643:7;28629:26;;;;;;;;;;;;:9;:26::i;25475:185::-;25613:39;25630:4;25636:2;25640:7;25613:39;;;;;;;;;;;;:16;:39::i;42962:173::-;43037:6;;;-1:-1:-1;;;;;43054:17:0;;;-1:-1:-1;;;;;;43054:17:0;;;;;;;43087:40;;43037:6;;;43054:17;43037:6;;43087:40;;43018:16;;43087:40;43007:128;42962:173;:::o;24468:295::-;20167:10;-1:-1:-1;;;;;24571:24:0;;;24563:62;;;;-1:-1:-1;;;24563:62:0;;19373:2:1;24563:62:0;;;19355:21:1;19412:2;19392:18;;;19385:30;19451:27;19431:18;;;19424:55;19496:18;;24563:62:0;19171:349:1;24563:62:0;20167:10;24638:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24638:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24638:53:0;;;;;;;;;;24707:48;;540:41:1;;;24638:42:0;;20167:10;24707:48;;513:18:1;24707:48:0;;;;;;;24468:295;;:::o;25731:328::-;25906:41;20167:10;25939:7;25906:18;:41::i;:::-;25898:103;;;;-1:-1:-1;;;25898:103:0;;;;;;;:::i;:::-;26012:39;26026:4;26032:2;26036:7;26045:5;26012:13;:39::i;53902:102::-;53962:13;53991:7;53984:14;;;;;:::i;7919:723::-;7975:13;8196:5;8205:1;8196:10;8192:53;;-1:-1:-1;;8223:10:0;;;;;;;;;;;;-1:-1:-1;;;8223:10:0;;;;;7919:723::o;8192:53::-;8270:5;8255:12;8311:78;8318:9;;8311:78;;8344:8;;;;:::i;:::-;;-1:-1:-1;8367:10:0;;-1:-1:-1;8375:2:0;8367:10;;:::i;:::-;;;8311:78;;;8399:19;8431:6;8421:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8421:17:0;;8399:39;;8449:154;8456:10;;8449:154;;8483:11;8493:1;8483:11;;:::i;:::-;;-1:-1:-1;8552:10:0;8560:2;8552:5;:10;:::i;:::-;8539:24;;:2;:24;:::i;:::-;8526:39;;8509:6;8516;8509:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8509:56:0;;;;;;;;-1:-1:-1;8580:11:0;8589:2;8580:11;;:::i;:::-;;;8449:154;;;8627:6;7919:723;-1:-1:-1;;;;7919:723:0:o;31551:174::-;31626:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31626:29:0;-1:-1:-1;;;;;31626:29:0;;;;;;;;:24;;31680:23;31626:24;31680:14;:23::i;:::-;-1:-1:-1;;;;;31671:46:0;;;;;;;;;;;31551:174;;:::o;27863:348::-;27956:4;27658:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27658:16:0;27973:73;;;;-1:-1:-1;;;27973:73:0;;19977:2:1;27973:73:0;;;19959:21:1;20016:2;19996:18;;;19989:30;20055:34;20035:18;;;20028:62;-1:-1:-1;;;20106:18:1;;;20099:42;20158:19;;27973:73:0;19775:408:1;27973:73:0;28057:13;28073:23;28088:7;28073:14;:23::i;:::-;28057:39;;28126:5;-1:-1:-1;;;;;28115:16:0;:7;-1:-1:-1;;;;;28115:16:0;;:51;;;;28159:7;-1:-1:-1;;;;;28135:31:0;:20;28147:7;28135:11;:20::i;:::-;-1:-1:-1;;;;;28135:31:0;;28115:51;:87;;;-1:-1:-1;;;;;;24955:25:0;;;24931:4;24955:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28170:32;24834:164;30855:578;31014:4;-1:-1:-1;;;;;30987:31:0;:23;31002:7;30987:14;:23::i;:::-;-1:-1:-1;;;;;30987:31:0;;30979:85;;;;-1:-1:-1;;;30979:85:0;;20390:2:1;30979:85:0;;;20372:21:1;20429:2;20409:18;;;20402:30;20468:34;20448:18;;;20441:62;-1:-1:-1;;;20519:18:1;;;20512:39;20568:19;;30979:85:0;20188:405:1;30979:85:0;-1:-1:-1;;;;;31083:16:0;;31075:65;;;;-1:-1:-1;;;31075:65:0;;20800:2:1;31075:65:0;;;20782:21:1;20839:2;20819:18;;;20812:30;20878:34;20858:18;;;20851:62;-1:-1:-1;;;20929:18:1;;;20922:34;20973:19;;31075:65:0;20598:400:1;31075:65:0;31153:39;31174:4;31180:2;31184:7;31153:20;:39::i;:::-;31257:29;31274:1;31278:7;31257:8;:29::i;:::-;-1:-1:-1;;;;;31299:15:0;;;;;;:9;:15;;;;;:20;;31318:1;;31299:15;:20;;31318:1;;31299:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31330:13:0;;;;;;:9;:13;;;;;:18;;31347:1;;31330:13;:18;;31347:1;;31330:18;:::i;:::-;;;;-1:-1:-1;;31359:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31359:21:0;-1:-1:-1;;;;;31359:21:0;;;;;;;;;31398:27;;31359:16;;31398:27;;;;;;;30855:578;;;:::o;28890:321::-;29020:18;29026:2;29030:7;29020:5;:18::i;:::-;29071:54;29102:1;29106:2;29110:7;29119:5;29071:22;:54::i;:::-;29049:154;;;;-1:-1:-1;;;29049:154:0;;;;;;;:::i;26941:315::-;27098:28;27108:4;27114:2;27118:7;27098:9;:28::i;:::-;27145:48;27168:4;27174:2;27178:7;27187:5;27145:22;:48::i;:::-;27137:111;;;;-1:-1:-1;;;27137:111:0;;;;;;;:::i;36400:589::-;-1:-1:-1;;;;;36606:18:0;;36602:187;;36641:40;36673:7;37816:10;:17;;37789:24;;;;:15;:24;;;;;:44;;;37844:24;;;;;;;;;;;;37712:164;36641:40;36602:187;;;36711:2;-1:-1:-1;;;;;36703:10:0;:4;-1:-1:-1;;;;;36703:10:0;;36699:90;;36730:47;36763:4;36769:7;36730:32;:47::i;:::-;-1:-1:-1;;;;;36803:16:0;;36799:183;;36836:45;36873:7;36836:36;:45::i;36799:183::-;36909:4;-1:-1:-1;;;;;36903:10:0;:2;-1:-1:-1;;;;;36903:10:0;;36899:83;;36930:40;36958:2;36962:7;36930:27;:40::i;29547:382::-;-1:-1:-1;;;;;29627:16:0;;29619:61;;;;-1:-1:-1;;;29619:61:0;;21624:2:1;29619:61:0;;;21606:21:1;;;21643:18;;;21636:30;21702:34;21682:18;;;21675:62;21754:18;;29619:61:0;21422:356:1;29619:61:0;27634:4;27658:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27658:16:0;:30;29691:58;;;;-1:-1:-1;;;29691:58:0;;21985:2:1;29691:58:0;;;21967:21:1;22024:2;22004:18;;;21997:30;22063;22043:18;;;22036:58;22111:18;;29691:58:0;21783:352:1;29691:58:0;29762:45;29791:1;29795:2;29799:7;29762:20;:45::i;:::-;-1:-1:-1;;;;;29820:13:0;;;;;;:9;:13;;;;;:18;;29837:1;;29820:13;:18;;29837:1;;29820:18;:::i;:::-;;;;-1:-1:-1;;29849:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29849:21:0;-1:-1:-1;;;;;29849:21:0;;;;;;;;29888:33;;29849:16;;;29888:33;;29849:16;;29888:33;29547:382;;:::o;32290:799::-;32445:4;-1:-1:-1;;;;;32466:13:0;;10767:20;10815:8;32462:620;;32502:72;;-1:-1:-1;;;32502:72:0;;-1:-1:-1;;;;;32502:36:0;;;;;:72;;20167:10;;32553:4;;32559:7;;32568:5;;32502:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32502:72:0;;;;;;;;-1:-1:-1;;32502:72:0;;;;;;;;;;;;:::i;:::-;;;32498:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32744:6;:13;32761:1;32744:18;32740:272;;32787:60;;-1:-1:-1;;;32787:60:0;;;;;;;:::i;32740:272::-;32962:6;32956:13;32947:6;32943:2;32939:15;32932:38;32498:529;-1:-1:-1;;;;;;32625:51:0;-1:-1:-1;;;32625:51:0;;-1:-1:-1;32618:58:0;;32462:620;-1:-1:-1;33066:4:0;32290:799;;;;;;:::o;38503:988::-;38769:22;38819:1;38794:22;38811:4;38794:16;:22::i;:::-;:26;;;;:::i;:::-;38831:18;38852:26;;;:17;:26;;;;;;38769:51;;-1:-1:-1;38985:28:0;;;38981:328;;-1:-1:-1;;;;;39052:18:0;;39030:19;39052:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39103:30;;;;;;:44;;;39220:30;;:17;:30;;;;;:43;;;38981:328;-1:-1:-1;39405:26:0;;;;:17;:26;;;;;;;;39398:33;;;-1:-1:-1;;;;;39449:18:0;;;;;:12;:18;;;;;:34;;;;;;;39442:41;38503:988::o;39786:1079::-;40064:10;:17;40039:22;;40064:21;;40084:1;;40064:21;:::i;:::-;40096:18;40117:24;;;:15;:24;;;;;;40490:10;:26;;40039:46;;-1:-1:-1;40117:24:0;;40039:46;;40490:26;;;;;;:::i;:::-;;;;;;;;;40468:48;;40554:11;40529:10;40540;40529:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40634:28;;;:15;:28;;;;;;;:41;;;40806:24;;;;;40799:31;40841:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39857:1008;;;39786:1079;:::o;37290:221::-;37375:14;37392:20;37409:2;37392:16;:20::i;:::-;-1:-1:-1;;;;;37423:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37468:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37290:221:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:118::-;678:5;671:13;664:21;657:5;654:32;644:60;;700:1;697;690:12;715:241;771:6;824:2;812:9;803:7;799:23;795:32;792:52;;;840:1;837;830:12;792:52;879:9;866:23;898:28;920:5;898:28;:::i;961:250::-;1046:1;1056:113;1070:6;1067:1;1064:13;1056:113;;;1146:11;;;1140:18;1127:11;;;1120:39;1092:2;1085:10;1056:113;;;-1:-1:-1;;1203:1:1;1185:16;;1178:27;961:250::o;1216:271::-;1258:3;1296:5;1290:12;1323:6;1318:3;1311:19;1339:76;1408:6;1401:4;1396:3;1392:14;1385:4;1378:5;1374:16;1339:76;:::i;:::-;1469:2;1448:15;-1:-1:-1;;1444:29:1;1435:39;;;;1476:4;1431:50;;1216:271;-1:-1:-1;;1216:271:1:o;1492:220::-;1641:2;1630:9;1623:21;1604:4;1661:45;1702:2;1691:9;1687:18;1679:6;1661:45;:::i;1717:180::-;1776:6;1829:2;1817:9;1808:7;1804:23;1800:32;1797:52;;;1845:1;1842;1835:12;1797:52;-1:-1:-1;1868:23:1;;1717:180;-1:-1:-1;1717:180:1:o;2110:131::-;-1:-1:-1;;;;;2185:31:1;;2175:42;;2165:70;;2231:1;2228;2221:12;2246:315;2314:6;2322;2375:2;2363:9;2354:7;2350:23;2346:32;2343:52;;;2391:1;2388;2381:12;2343:52;2430:9;2417:23;2449:31;2474:5;2449:31;:::i;:::-;2499:5;2551:2;2536:18;;;;2523:32;;-1:-1:-1;;;2246:315:1:o;2748:456::-;2825:6;2833;2841;2894:2;2882:9;2873:7;2869:23;2865:32;2862:52;;;2910:1;2907;2900:12;2862:52;2949:9;2936:23;2968:31;2993:5;2968:31;:::i;:::-;3018:5;-1:-1:-1;3075:2:1;3060:18;;3047:32;3088:33;3047:32;3088:33;:::i;:::-;2748:456;;3140:7;;-1:-1:-1;;;3194:2:1;3179:18;;;;3166:32;;2748:456::o;3209:248::-;3277:6;3285;3338:2;3326:9;3317:7;3313:23;3309:32;3306:52;;;3354:1;3351;3344:12;3306:52;-1:-1:-1;;3377:23:1;;;3447:2;3432:18;;;3419:32;;-1:-1:-1;3209:248:1:o;3981:247::-;4040:6;4093:2;4081:9;4072:7;4068:23;4064:32;4061:52;;;4109:1;4106;4099:12;4061:52;4148:9;4135:23;4167:31;4192:5;4167:31;:::i;4233:632::-;4404:2;4456:21;;;4526:13;;4429:18;;;4548:22;;;4375:4;;4404:2;4627:15;;;;4601:2;4586:18;;;4375:4;4670:169;4684:6;4681:1;4678:13;4670:169;;;4745:13;;4733:26;;4814:15;;;;4779:12;;;;4706:1;4699:9;4670:169;;;-1:-1:-1;4856:3:1;;4233:632;-1:-1:-1;;;;;;4233:632:1:o;4870:127::-;4931:10;4926:3;4922:20;4919:1;4912:31;4962:4;4959:1;4952:15;4986:4;4983:1;4976:15;5002:632;5067:5;5097:18;5138:2;5130:6;5127:14;5124:40;;;5144:18;;:::i;:::-;5219:2;5213:9;5187:2;5273:15;;-1:-1:-1;;5269:24:1;;;5295:2;5265:33;5261:42;5249:55;;;5319:18;;;5339:22;;;5316:46;5313:72;;;5365:18;;:::i;:::-;5405:10;5401:2;5394:22;5434:6;5425:15;;5464:6;5456;5449:22;5504:3;5495:6;5490:3;5486:16;5483:25;5480:45;;;5521:1;5518;5511:12;5480:45;5571:6;5566:3;5559:4;5551:6;5547:17;5534:44;5626:1;5619:4;5610:6;5602;5598:19;5594:30;5587:41;;;;5002:632;;;;;:::o;5639:451::-;5708:6;5761:2;5749:9;5740:7;5736:23;5732:32;5729:52;;;5777:1;5774;5767:12;5729:52;5817:9;5804:23;5850:18;5842:6;5839:30;5836:50;;;5882:1;5879;5872:12;5836:50;5905:22;;5958:4;5950:13;;5946:27;-1:-1:-1;5936:55:1;;5987:1;5984;5977:12;5936:55;6010:74;6076:7;6071:2;6058:16;6053:2;6049;6045:11;6010:74;:::i;6095:382::-;6160:6;6168;6221:2;6209:9;6200:7;6196:23;6192:32;6189:52;;;6237:1;6234;6227:12;6189:52;6276:9;6263:23;6295:31;6320:5;6295:31;:::i;:::-;6345:5;-1:-1:-1;6402:2:1;6387:18;;6374:32;6415:30;6374:32;6415:30;:::i;:::-;6464:7;6454:17;;;6095:382;;;;;:::o;6482:795::-;6577:6;6585;6593;6601;6654:3;6642:9;6633:7;6629:23;6625:33;6622:53;;;6671:1;6668;6661:12;6622:53;6710:9;6697:23;6729:31;6754:5;6729:31;:::i;:::-;6779:5;-1:-1:-1;6836:2:1;6821:18;;6808:32;6849:33;6808:32;6849:33;:::i;:::-;6901:7;-1:-1:-1;6955:2:1;6940:18;;6927:32;;-1:-1:-1;7010:2:1;6995:18;;6982:32;7037:18;7026:30;;7023:50;;;7069:1;7066;7059:12;7023:50;7092:22;;7145:4;7137:13;;7133:27;-1:-1:-1;7123:55:1;;7174:1;7171;7164:12;7123:55;7197:74;7263:7;7258:2;7245:16;7240:2;7236;7232:11;7197:74;:::i;:::-;7187:84;;;6482:795;;;;;;;:::o;7282:388::-;7350:6;7358;7411:2;7399:9;7390:7;7386:23;7382:32;7379:52;;;7427:1;7424;7417:12;7379:52;7466:9;7453:23;7485:31;7510:5;7485:31;:::i;:::-;7535:5;-1:-1:-1;7592:2:1;7577:18;;7564:32;7605:33;7564:32;7605:33;:::i;7675:689::-;7770:6;7778;7786;7839:2;7827:9;7818:7;7814:23;7810:32;7807:52;;;7855:1;7852;7845:12;7807:52;7895:9;7882:23;7924:18;7965:2;7957:6;7954:14;7951:34;;;7981:1;7978;7971:12;7951:34;8019:6;8008:9;8004:22;7994:32;;8064:7;8057:4;8053:2;8049:13;8045:27;8035:55;;8086:1;8083;8076:12;8035:55;8126:2;8113:16;8152:2;8144:6;8141:14;8138:34;;;8168:1;8165;8158:12;8138:34;8223:7;8216:4;8206:6;8203:1;8199:14;8195:2;8191:23;8187:34;8184:47;8181:67;;;8244:1;8241;8234:12;8181:67;8275:4;8267:13;;;;8299:6;;-1:-1:-1;8337:20:1;;;;8324:34;;7675:689;-1:-1:-1;;;;7675:689:1:o;8369:356::-;8571:2;8553:21;;;8590:18;;;8583:30;8649:34;8644:2;8629:18;;8622:62;8716:2;8701:18;;8369:356::o;8730:380::-;8809:1;8805:12;;;;8852;;;8873:61;;8927:4;8919:6;8915:17;8905:27;;8873:61;8980:2;8972:6;8969:14;8949:18;8946:38;8943:161;;9026:10;9021:3;9017:20;9014:1;9007:31;9061:4;9058:1;9051:15;9089:4;9086:1;9079:15;8943:161;;8730:380;;;:::o;9528:127::-;9589:10;9584:3;9580:20;9577:1;9570:31;9620:4;9617:1;9610:15;9644:4;9641:1;9634:15;9660:168;9733:9;;;9764;;9781:15;;;9775:22;;9761:37;9751:71;;9802:18;;:::i;9833:127::-;9894:10;9889:3;9885:20;9882:1;9875:31;9925:4;9922:1;9915:15;9949:4;9946:1;9939:15;9965:120;10005:1;10031;10021:35;;10036:18;;:::i;:::-;-1:-1:-1;10070:9:1;;9965:120::o;10860:125::-;10925:9;;;10946:10;;;10943:36;;;10959:18;;:::i;11349:135::-;11388:3;11409:17;;;11406:43;;11429:18;;:::i;:::-;-1:-1:-1;11476:1:1;11465:13;;11349:135::o;11699:127::-;11760:10;11755:3;11751:20;11748:1;11741:31;11791:4;11788:1;11781:15;11815:4;11812:1;11805:15;12370:545;12472:2;12467:3;12464:11;12461:448;;;12508:1;12533:5;12529:2;12522:17;12578:4;12574:2;12564:19;12648:2;12636:10;12632:19;12629:1;12625:27;12619:4;12615:38;12684:4;12672:10;12669:20;12666:47;;;-1:-1:-1;12707:4:1;12666:47;12762:2;12757:3;12753:12;12750:1;12746:20;12740:4;12736:31;12726:41;;12817:82;12835:2;12828:5;12825:13;12817:82;;;12880:17;;;12861:1;12850:13;12817:82;;;12821:3;;;12370:545;;;:::o;13091:1352::-;13217:3;13211:10;13244:18;13236:6;13233:30;13230:56;;;13266:18;;:::i;:::-;13295:97;13385:6;13345:38;13377:4;13371:11;13345:38;:::i;:::-;13339:4;13295:97;:::i;:::-;13447:4;;13511:2;13500:14;;13528:1;13523:663;;;;14230:1;14247:6;14244:89;;;-1:-1:-1;14299:19:1;;;14293:26;14244:89;-1:-1:-1;;13048:1:1;13044:11;;;13040:24;13036:29;13026:40;13072:1;13068:11;;;13023:57;14346:81;;13493:944;;13523:663;12317:1;12310:14;;;12354:4;12341:18;;-1:-1:-1;;13559:20:1;;;13677:236;13691:7;13688:1;13685:14;13677:236;;;13780:19;;;13774:26;13759:42;;13872:27;;;;13840:1;13828:14;;;;13707:19;;13677:236;;;13681:3;13941:6;13932:7;13929:19;13926:201;;;14002:19;;;13996:26;-1:-1:-1;;14085:1:1;14081:14;;;14097:3;14077:24;14073:37;14069:42;14054:58;14039:74;;13926:201;-1:-1:-1;;;;;14173:1:1;14157:14;;;14153:22;14140:36;;-1:-1:-1;13091:1352:1:o;15620:251::-;15690:6;15743:2;15731:9;15722:7;15718:23;15714:32;15711:52;;;15759:1;15756;15749:12;15711:52;15791:9;15785:16;15810:31;15835:5;15810:31;:::i;16292:663::-;16572:3;16610:6;16604:13;16626:66;16685:6;16680:3;16673:4;16665:6;16661:17;16626:66;:::i;:::-;16755:13;;16714:16;;;;16777:70;16755:13;16714:16;16824:4;16812:17;;16777:70;:::i;:::-;-1:-1:-1;;;16869:20:1;;16898:22;;;16947:1;16936:13;;16292:663;-1:-1:-1;;;;16292:663:1:o;17676:245::-;17743:6;17796:2;17784:9;17775:7;17771:23;17767:32;17764:52;;;17812:1;17809;17802:12;17764:52;17844:9;17838:16;17863:28;17885:5;17863:28;:::i;18753:413::-;18955:2;18937:21;;;18994:2;18974:18;;;18967:30;19033:34;19028:2;19013:18;;19006:62;-1:-1:-1;;;19099:2:1;19084:18;;19077:47;19156:3;19141:19;;18753:413::o;19525:128::-;19592:9;;;19613:11;;;19610:37;;;19627:18;;:::i;19658:112::-;19690:1;19716;19706:35;;19721:18;;:::i;:::-;-1:-1:-1;19755:9:1;;19658:112::o;21003:414::-;21205:2;21187:21;;;21244:2;21224:18;;;21217:30;21283:34;21278:2;21263:18;;21256:62;-1:-1:-1;;;21349:2:1;21334:18;;21327:48;21407:3;21392:19;;21003:414::o;22140:489::-;-1:-1:-1;;;;;22409:15:1;;;22391:34;;22461:15;;22456:2;22441:18;;22434:43;22508:2;22493:18;;22486:34;;;22556:3;22551:2;22536:18;;22529:31;;;22334:4;;22577:46;;22603:19;;22595:6;22577:46;:::i;:::-;22569:54;22140:489;-1:-1:-1;;;;;;22140:489:1:o;22634:249::-;22703:6;22756:2;22744:9;22735:7;22731:23;22727:32;22724:52;;;22772:1;22769;22762:12;22724:52;22804:9;22798:16;22823:30;22847:5;22823:30;:::i;22888:127::-;22949:10;22944:3;22940:20;22937:1;22930:31;22980:4;22977:1;22970:15;23004:4;23001:1;22994:15

Swarm Source

ipfs://0f0e5e88fab67d4653bf3bc255548f8acd2ba1afef2dd5199da1c1f135278e12
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.