ETH Price: $2,939.23 (-4.11%)
Gas: 2 Gwei

Token

Raw Primitives (RAWP)
 

Overview

Max Total Supply

4,630 RAWP

Holders

3,212

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RAWP
0xaee94b0a9e8718564f6bd16108d28df6e45d000a
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:
RawPrimitives

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (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/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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: contracts/primitives.sol



pragma solidity >=0.8.13;




contract RawPrimitives is ERC721
{    
    uint public constant COLLECION_SIZE = 6969;

    uint public totalSupply;

    constructor() ERC721("Raw Primitives", "RAWP")
    {
        for (uint i = 0; i < 69; ++i)
        {
            mint();
        }                
    }

    function mint() public 
    {
        require(totalSupply < COLLECION_SIZE, "Can't exceed the collection size");

        _mint(msg.sender, ++totalSupply);
    }

    function tokenURI(uint token) public pure override(ERC721) returns(string memory encoded_metadata)
    {
        encoded_metadata = string(abi.encodePacked("data:application/json;base64,", metadataJson(token)));
    }

    function metadataJson(uint token) public pure returns(string memory metadata)
    {
        string memory image;
        string[] memory attributes;

        (image, attributes) = getImage(token);

        string[] memory entries = new string[](attributes.length);

        for (uint i = 0; i < attributes.length; ++i)
        {
            entries[i] = string(abi.encodePacked("{\"trait_type\":\"element\",\"value\":\"",attributes[i],"\"}"));            
        }

        string memory attributesJson = "[";
        for (uint i = 0; i < entries.length; ++i)
        {
            if (i == 0)
            {
                attributesJson = string(abi.encodePacked(attributesJson,entries[i]));
            }
            else 
            {
                attributesJson = string(abi.encodePacked(attributesJson,",",entries[i]));
            }
        }
        attributesJson = string(abi.encodePacked(attributesJson,"]"));

        metadata = Base64.encode(
            abi.encodePacked(
                "{\"image\": \"", image, "\", \"name\":\"Primitive #", Strings.toString(token) ,"\", \"description\":\"Fully onchain generative art in raster(BMP) format.\",\"attributes\":",attributesJson,"}"));
    }

    function getImage(uint token) public pure returns(string memory image, string[] memory attributes)
    {        
        bytes memory header = hex""
        hex"424D"
        hex"00000000" 
        hex"00000000"
        hex"36000000"

        hex"28000000"
        hex"ff000000"
        hex"ff000000"
        hex"0100"
        hex"1000"
        hex"00000000"
        hex"00000000"
        hex"00000000"
        hex"00000000"
        hex"00000000"
        hex"00000000"
        hex""; 

        bytes memory imageBytes;        

        (imageBytes, attributes) = getContentBytes(token);
        image = string(abi.encodePacked("data:image/bmp;base64,", Base64.encode(abi.encodePacked(header, imageBytes))));
    }

    function getContentBytes(uint token) public pure returns(bytes memory content, string[] memory attributes)
    {
        content = new bytes(256 * 256 * 2);                

        bytes1 c1;
        bytes1 c2;
        string memory color;

        uint seed = uint(keccak256(abi.encodePacked(token)));     

        (c1, c2, color) = getColorBytes(seed);
        setBackground(content, c1, c2);

        seed = seed >> 2;                

        uint n  = seed % 10;

        attributes = new string[](n+1);
        attributes[0] = string(abi.encodePacked(color, " background"));

        for (uint i = 0; i < n; ++i)
        {
            seed = seed >> 1;

            uint choice = seed % 4;                   

            (c1, c2, color) = getColorBytes(seed);

            if (choice < 1) 
            {                
                attributes[i+1] = string(abi.encodePacked(color, " noise"));
                addNoise(content, seed, c1, c2);
            }
            else if (choice < 2)
            {
                attributes[i+1] = string(abi.encodePacked(color, " rectangle"));
                addRectangle(content, seed, c1, c2);
            }
            else if (choice < 3)
            {
                attributes[i+1] = string(abi.encodePacked(color, " vertical"));
                addVertical(content, seed, c1, c2);
            }
            else if (choice < 4)
            {
                attributes[i+1] = string(abi.encodePacked(color, " horizontal"));
                addHorizontal(content, seed, c1, c2);
            }
        }
    }

    function addHorizontal(bytes memory content, uint seed, bytes1 c1, bytes1 c2) private pure
    {
        bytes32 params = keccak256(abi.encodePacked("rect", seed));

        uint8 y = uint8(params[0]);
        uint8 w = (uint8(params[1]) % 5) + 1;
        
        uint8 bottomBorder = y > w ? y - w : 0;
        uint8 topBorder = 255 - y > w? y + w : 255;
        
        for (uint16 xi = 0; xi < 256; ++xi)
        {
            for (uint8 yi = bottomBorder; yi <= topBorder; ++yi)
            {
                uint flat = centricToFlat(xi,yi);
                content[flat] = c1;
                content[flat+1] = c2;
            }
        }
    }

    function addVertical(bytes memory content, uint seed, bytes1 c1, bytes1 c2) private pure
    {
        bytes32 params = keccak256(abi.encodePacked("rect", seed));

        uint8 x = uint8(params[0]);
        uint8 w = (uint8(params[1]) % 5) + 1;
        
        uint8 leftBorder = x > w ? x - w : 0;
        uint8 rightBorder = 255 - x > w? x + w : 255;
        
        for (uint16 yi = 0; yi < 256; ++yi)
        {
            for (uint8 xi = leftBorder; xi <= rightBorder; ++xi)
            {
                uint flat = centricToFlat(xi,yi);
                content[flat] = c1;
                content[flat+1] = c2;
            }
        }
    }

    function addRectangle(bytes memory content, uint seed, bytes1 c1, bytes1 c2) private pure
    {
        bytes32 params = keccak256(abi.encodePacked("rect", seed));

        uint8 x = uint8(params[0]);
        uint8 y = uint8(params[1]);
        uint8 w = uint8(params[2]);
        uint8 h = uint8(params[3]);

        for (uint yi = 0; yi < h; ++yi)
        {
            if (yi + y > 255) break;

            for (uint xi = 0; xi < w; ++xi)
            {
                if (x + xi > 255) break;

                uint flat = centricToFlat(xi,yi);
                content[flat] = c1;
                content[flat+1] = c2;
            }

        }
    }

    function addNoise(bytes memory content, uint seed, bytes1 c1, bytes1 c2) private pure
    {
        bytes32 xs = keccak256(abi.encodePacked("xs", seed));
        bytes32 ys = keccak256(abi.encodePacked("ys", seed));

        for (uint i = 0; i < 31; ++i)
        {
            uint8 x = uint8(xs[i]);
            uint8 y = uint8(ys[i]);

            uint flat = centricToFlat(x,y);
            content[flat] = c1;
            content[flat+1] = c2;
        }
    }

    function setBackground(bytes memory content, bytes1 c1, bytes1 c2) private pure
    {
        for (uint i = 0; i < content.length / 2; ++i)
        {
            content[2*i] = c1;
            content[2*i+1] = c2;            
        }
    }

    function getColorBytes(uint seed) private pure returns(bytes1 c1, bytes1 c2, string memory name)
    {   
        uint choice = seed % 100;        

        if (choice < 1)
        {
            name = "yellow";            
            (c2,c1) = (0x7f, 0x6e);
        }
        else if (choice < 5)
        {
            name = "orange";
            (c2,c1) = (0x7e, 0xce);
        }
        else if (choice < 10)
        {
            name = "green";
            (c2,c1) = (0x63, 0xef);         
        }        
        else if (choice < 20)
        {
            name = "red";
            (c2,c1) = (0x79, 0xef);
        }
        else if (choice < 35)
        {
            name = "blue";
            (c2,c1) = (0x3f, 0x3f);        
        }
        else if (choice < 60)
        {
            name = "gray";
            (c2,c1) = (0x3d, 0xef);          
        }
        else 
        {
            name = "white";
            (c2,c1) = (0xff, 0xff);            
        }                
    }

    function centricToFlat(uint x, uint y) public pure returns(uint flat) 
    {
        flat = (256 * y + x)*2;
    }            
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"COLLECION_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"x","type":"uint256"},{"internalType":"uint256","name":"y","type":"uint256"}],"name":"centricToFlat","outputs":[{"internalType":"uint256","name":"flat","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"token","type":"uint256"}],"name":"getContentBytes","outputs":[{"internalType":"bytes","name":"content","type":"bytes"},{"internalType":"string[]","name":"attributes","type":"string[]"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"token","type":"uint256"}],"name":"getImage","outputs":[{"internalType":"string","name":"image","type":"string"},{"internalType":"string[]","name":"attributes","type":"string[]"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"token","type":"uint256"}],"name":"metadataJson","outputs":[{"internalType":"string","name":"metadata","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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":"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":"token","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"encoded_metadata","type":"string"}],"stateMutability":"pure","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600e81526020016d526177205072696d69746976657360901b815250604051806040016040528060048152602001630524157560e41b815250816000908162000067919062000317565b50600162000076828262000317565b50505060005b6045811015620000a35762000090620000aa565b6200009b81620003f9565b90506200007c565b5062000431565b611b3960065410620001035760405162461bcd60e51b815260206004820181905260248201527f43616e2774206578636565642074686520636f6c6c656374696f6e2073697a6560448201526064015b60405180910390fd5b62000124336006600081546200011990620003f9565b918290555062000126565b565b6001600160a01b0382166200017e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620000fa565b6000818152600260205260409020546001600160a01b031615620001e55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620000fa565b6001600160a01b03821660009081526003602052604081208054600192906200021090849062000415565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200029e57607f821691505b602082108103620002bf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200026e57600081815260208120601f850160051c81016020861015620002ee5750805b601f850160051c820191505b818110156200030f57828155600101620002fa565b505050505050565b81516001600160401b0381111562000333576200033362000273565b6200034b8162000344845462000289565b84620002c5565b602080601f8311600181146200038357600084156200036a5750858301515b600019600386901b1c1916600185901b1785556200030f565b600085815260208120601f198616915b82811015620003b45788860151825594840194600190910190840162000393565b5085821015620003d35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000600182016200040e576200040e620003e3565b5060010190565b808201808211156200042b576200042b620003e3565b92915050565b6126f080620004416000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806342842e0e116100ad57806395d89b411161007157806395d89b411461027c578063a22cb46514610284578063b88d4fde14610297578063c87b56dd146102aa578063e985e9c5146102bd57600080fd5b806342842e0e1461021d5780636352211e14610230578063643d66a81461024357806370a08231146102565780638626a0981461026957600080fd5b806318160ddd116100f457806318160ddd146101b657806323b872dd146101cd5780632607aafa146101e057806333229c771461020157806333acc1b01461021457600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b3146101995780631249c58b146101ae575b600080fd5b61014461013f366004611d3a565b6102d0565b60405190151581526020015b60405180910390f35b610161610322565b6040516101509190611da7565b61018161017c366004611dba565b6103b4565b6040516001600160a01b039091168152602001610150565b6101ac6101a7366004611def565b61044e565b005b6101ac610563565b6101bf60065481565b604051908152602001610150565b6101ac6101db366004611e19565b6105d5565b6101f36101ee366004611dba565b610606565b604051610150929190611ead565b61016161020f366004611dba565b61068a565b6101bf611b3981565b6101ac61022b366004611e19565b61086d565b61018161023e366004611dba565b610888565b6101bf610251366004611edb565b6108ff565b6101bf610264366004611efd565b61092a565b6101f3610277366004611dba565b6109b1565b610161610c99565b6101ac610292366004611f18565b610ca8565b6101ac6102a5366004611f6a565b610cb7565b6101616102b8366004611dba565b610cef565b6101446102cb366004612046565b610d20565b60006001600160e01b031982166380ac58cd60e01b148061030157506001600160e01b03198216635b5e139f60e01b145b8061031c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461033190612079565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90612079565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104325760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061045982610888565b9050806001600160a01b0316836001600160a01b0316036104c65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610429565b336001600160a01b03821614806104e257506104e28133610d20565b6105545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610429565b61055e8383610d4e565b505050565b611b39600654106105b65760405162461bcd60e51b815260206004820181905260248201527f43616e2774206578636565642074686520636f6c6c656374696f6e2073697a656044820152606401610429565b6105d3336006600081546105c9906120c9565b9182905550610dbc565b565b6105df3382610efe565b6105fb5760405162461bcd60e51b8152600401610429906120e2565b61055e838383610fd5565b60608060006040518060600160405280603681526020016126856036913990506060610631856109b1565b6040519094509091506106629061064e9084908490602001612133565b604051602081830303815290604052611175565b6040516020016106729190612162565b60405160208183030381529060405293505050915091565b606080606061069884610606565b8051919350915060009067ffffffffffffffff8111156106ba576106ba611f54565b6040519080825280602002602001820160405280156106ed57816020015b60608152602001906001900390816106d85790505b50905060005b82518110156107635782818151811061070e5761070e6121a0565b602002602001015160405160200161072691906121b6565b604051602081830303815290604052828281518110610747576107476121a0565b60200260200101819052508061075c906120c9565b90506106f3565b506040805180820190915260018152605b60f81b602082015260005b825181101561082057806000036107d257818382815181106107a3576107a36121a0565b60200260200101516040516020016107bc929190612133565b6040516020818303038152906040529150610810565b818382815181106107e5576107e56121a0565b60200260200101516040516020016107fe929190612211565b60405160208183030381529060405291505b610819816120c9565b905061077f565b5080604051602001610832919061224d565b604051602081830303815290604052905061086384610850886112c8565b8360405160200161064e93929190612272565b9695505050505050565b61055e83838360405180602001604052806000815250610cb7565b6000818152600260205260408120546001600160a01b03168061031c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610429565b60008261090e8361010061236b565b6109189190612382565b61092390600261236b565b9392505050565b60006001600160a01b0382166109955760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610429565b506001600160a01b031660009081526003602052604090205490565b604080516202000080825262020020820190925260609182919060208201818036833701905050915060008060606000866040516020016109f491815260200190565b6040516020818303038152906040528051906020012060001c9050610a18816113c9565b91955093509150610a2a868585611567565b60021c6000610a3a600a836123ab565b9050610a47816001612382565b67ffffffffffffffff811115610a5f57610a5f611f54565b604051908082528060200260200182016040528015610a9257816020015b6060815260200190600190039081610a7d5790505b50955082604051602001610aa691906123bf565b60405160208183030381529060405286600081518110610ac857610ac86121a0565b602002602001018190525060005b81811015610c8e5760019290921c916000610af26004856123ab565b9050610afd846113c9565b919850965094506001811015610b665784604051602001610b1e91906123ee565b60408051601f1981840301815291905288610b3a846001612382565b81518110610b4a57610b4a6121a0565b6020026020010181905250610b6189858989611602565b610c7d565b6002811015610bc35784604051602001610b809190612418565b60408051601f1981840301815291905288610b9c846001612382565b81518110610bac57610bac6121a0565b6020026020010181905250610b6189858989611737565b6003811015610c205784604051602001610bdd9190612446565b60408051601f1981840301815291905288610bf9846001612382565b81518110610c0957610c096121a0565b6020026020010181905250610b6189858989611861565b6004811015610c7d5784604051602001610c3a9190612473565b60408051601f1981840301815291905288610c56846001612382565b81518110610c6657610c666121a0565b6020026020010181905250610c7d898589896119c0565b50610c87816120c9565b9050610ad6565b505050505050915091565b60606001805461033190612079565b610cb3338383611b1f565b5050565b610cc13383610efe565b610cdd5760405162461bcd60e51b8152600401610429906120e2565b610ce984848484611bed565b50505050565b6060610cfa8261068a565b604051602001610d0a91906124a2565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d8382610888565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b038216610e125760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610429565b6000818152600260205260409020546001600160a01b031615610e775760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610429565b6001600160a01b0382166000908152600360205260408120805460019290610ea0908490612382565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b0316610f775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610429565b6000610f8283610888565b9050806001600160a01b0316846001600160a01b03161480610fbd5750836001600160a01b0316610fb2846103b4565b6001600160a01b0316145b80610fcd5750610fcd8185610d20565b949350505050565b826001600160a01b0316610fe882610888565b6001600160a01b0316146110505760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610429565b6001600160a01b0382166110b25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610429565b6110bd600082610d4e565b6001600160a01b03831660009081526003602052604081208054600192906110e69084906124e7565b90915550506001600160a01b0382166000908152600360205260408120805460019290611114908490612382565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060815160000361119457505060408051602081019091526000815290565b600060405180606001604052806040815260200161264560409139905060006003845160026111c39190612382565b6111cd91906124fa565b6111d890600461236b565b67ffffffffffffffff8111156111f0576111f0611f54565b6040519080825280601f01601f19166020018201604052801561121a576020820181803683370190505b509050600182016020820185865187015b80821015611286576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f811685015184535060018301925061122b565b50506003865106600181146112a257600281146112b5576112bd565b603d6001830353603d60028303536112bd565b603d60018303535b509195945050505050565b6060816000036112ef5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113195780611303816120c9565b91506113129050600a836124fa565b91506112f3565b60008167ffffffffffffffff81111561133457611334611f54565b6040519080825280601f01601f19166020018201604052801561135e576020820181803683370190505b5090505b8415610fcd576113736001836124e7565b9150611380600a866123ab565b61138b906030612382565b60f81b8183815181106113a0576113a06121a0565b60200101906001600160f81b031916908160001a9053506113c2600a866124fa565b9450611362565b6000806060816113da6064866123ab565b905060018110156114175760408051808201909152600681526579656c6c6f7760d01b6020820152603760f91b9450607f60f81b9350915061155f565b6005811015611452576040805180820190915260068152656f72616e676560d01b6020820152606760f91b9450603f60f91b9350915061155f565b600a81101561148c5760408051808201909152600581526433b932b2b760d91b602082015260ef60f81b9450606360f81b9350915061155f565b60148110156114c4576040805180820190915260038152621c995960ea1b602082015260ef60f81b9450607960f81b9350915061155f565b60238110156114f957604080518082019091526004815263626c756560e01b6020820152603f60f81b9450849350915061155f565b603c811015611532576040805180820190915260048152636772617960e01b602082015260ef60f81b9450603d60f81b9350915061155f565b604080518082019091526005815264776869746560d81b60208201526001600160f81b0319945084935091505b509193909250565b60005b6002845161157891906124fa565b811015610ce957828461158c83600261236b565b8151811061159c5761159c6121a0565b60200101906001600160f81b031916908160001a90535081846115c083600261236b565b6115cb906001612382565b815181106115db576115db6121a0565b60200101906001600160f81b031916908160001a9053506115fb816120c9565b905061156a565b60405161787360f01b602082015260228101849052600090604201604051602081830303815290604052805190602001209050600084604051602001611659919061797360f01b8152600281019190915260220190565b60405160208183030381529060405280519060200120905060005b601f81101561172e576000838260208110611691576116916121a0565b1a905060008383602081106116a8576116a86121a0565b1a905060006116ba60ff8416836108ff565b9050878a82815181106116cf576116cf6121a0565b60200101906001600160f81b031916908160001a905350868a6116f3836001612382565b81518110611703576117036121a0565b60200101906001600160f81b031916908160001a90535050505080611727906120c9565b9050611674565b50505050505050565b604051631c9958dd60e21b60208201526024810184905260009060440160408051808303601f1901815291905280516020909101209050600081811a90600183901a90600284901a90600385901a905b8160ff168110156118555760ff6117a085821683612382565b116118555760005b8360ff168110156118445760ff6117c182888316612382565b116118445760006117d282846108ff565b9050898c82815181106117e7576117e76121a0565b60200101906001600160f81b031916908160001a905350888c61180b836001612382565b8151811061181b5761181b6121a0565b60200101906001600160f81b031916908160001a905350508061183d906120c9565b90506117a8565b5061184e816120c9565b9050611787565b50505050505050505050565b604051631c9958dd60e21b60208201526024810184905260009060440160408051808303601f1901815291905280516020909101209050600081811a906118ad6005600185901a61250e565b6118b8906001612530565b905060008160ff168360ff16116118d05760006118da565b6118da8284612549565b905060008260ff168460ff6118ef9190612549565b60ff16116118fe5760ff611908565b6119088385612530565b905060005b6101008161ffff16101561185557825b8260ff168160ff16116119af57600061193d8260ff168461ffff166108ff565b9050898c8281518110611952576119526121a0565b60200101906001600160f81b031916908160001a905350888c611976836001612382565b81518110611986576119866121a0565b60200101906001600160f81b031916908160001a90535050806119a890612562565b905061191d565b506119b981612581565b905061190d565b604051631c9958dd60e21b60208201526024810184905260009060440160408051808303601f1901815291905280516020909101209050600081811a90611a0c6005600185901a61250e565b611a17906001612530565b905060008160ff168360ff1611611a2f576000611a39565b611a398284612549565b905060008260ff168460ff611a4e9190612549565b60ff1611611a5d5760ff611a67565b611a678385612530565b905060005b6101008161ffff16101561185557825b8260ff168160ff1611611b0e576000611a9c8361ffff168360ff166108ff565b9050898c8281518110611ab157611ab16121a0565b60200101906001600160f81b031916908160001a905350888c611ad5836001612382565b81518110611ae557611ae56121a0565b60200101906001600160f81b031916908160001a9053505080611b0790612562565b9050611a7c565b50611b1881612581565b9050611a6c565b816001600160a01b0316836001600160a01b031603611b805760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610429565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611bf8848484610fd5565b611c0484848484611c20565b610ce95760405162461bcd60e51b8152600401610429906125a2565b60006001600160a01b0384163b15611d1657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c649033908990889088906004016125f4565b6020604051808303816000875af1925050508015611c9f575060408051601f3d908101601f19168201909252611c9c91810190612627565b60015b611cfc573d808015611ccd576040519150601f19603f3d011682016040523d82523d6000602084013e611cd2565b606091505b508051600003611cf45760405162461bcd60e51b8152600401610429906125a2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fcd565b506001949350505050565b6001600160e01b031981168114611d3757600080fd5b50565b600060208284031215611d4c57600080fd5b813561092381611d21565b60005b83811015611d72578181015183820152602001611d5a565b50506000910152565b60008151808452611d93816020860160208601611d57565b601f01601f19169290920160200192915050565b6020815260006109236020830184611d7b565b600060208284031215611dcc57600080fd5b5035919050565b80356001600160a01b0381168114611dea57600080fd5b919050565b60008060408385031215611e0257600080fd5b611e0b83611dd3565b946020939093013593505050565b600080600060608486031215611e2e57600080fd5b611e3784611dd3565b9250611e4560208501611dd3565b9150604084013590509250925092565b600082825180855260208086019550808260051b84010181860160005b84811015611ea057601f19868403018952611e8e838351611d7b565b98840198925090830190600101611e72565b5090979650505050505050565b604081526000611ec06040830185611d7b565b8281036020840152611ed28185611e55565b95945050505050565b60008060408385031215611eee57600080fd5b50508035926020909101359150565b600060208284031215611f0f57600080fd5b61092382611dd3565b60008060408385031215611f2b57600080fd5b611f3483611dd3565b915060208301358015158114611f4957600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611f8057600080fd5b611f8985611dd3565b9350611f9760208601611dd3565b925060408501359150606085013567ffffffffffffffff80821115611fbb57600080fd5b818701915087601f830112611fcf57600080fd5b813581811115611fe157611fe1611f54565b604051601f8201601f19908116603f0116810190838211818310171561200957612009611f54565b816040528281528a602084870101111561202257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561205957600080fd5b61206283611dd3565b915061207060208401611dd3565b90509250929050565b600181811c9082168061208d57607f821691505b6020821081036120ad57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000600182016120db576120db6120b3565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008351612145818460208801611d57565b835190830190612159818360208801611d57565b01949350505050565b7519185d184e9a5b5859d94bd89b5c0ed8985cd94d8d0b60521b815260008251612193816016850160208701611d57565b9190910160160192915050565b634e487b7160e01b600052603260045260246000fd5b7f7b2274726169745f74797065223a22656c656d656e74222c2276616c7565223a8152601160f91b6020820152600082516121f8816021850160208701611d57565b61227d60f01b6021939091019283015250602301919050565b60008351612223818460208801611d57565b600b60fa1b9083019081528351612241816001840160208801611d57565b01600101949350505050565b6000825161225f818460208701611d57565b605d60f81b920191825250600101919050565b6a3d9134b6b0b3b2911d101160a91b8152835160009061229981600b850160208901611d57565b75222c20226e616d65223a225072696d6974697665202360501b600b9184019182015284516122cf816021840160208901611d57565b7f222c20226465736372697074696f6e223a2246756c6c79206f6e636861696e20602192909101918201527f67656e657261746976652061727420696e2072617374657228424d502920666f6041820152733936b0ba1711161130ba3a3934b13aba32b9911d60611b60618201528351612350816075840160208801611d57565b607d60f81b6075929091019182015260760195945050505050565b808202811582820484141761031c5761031c6120b3565b8082018082111561031c5761031c6120b3565b634e487b7160e01b600052601260045260246000fd5b6000826123ba576123ba612395565b500690565b600082516123d1818460208701611d57565b6a08189858dad9dc9bdd5b9960aa1b920191825250600b01919050565b60008251612400818460208701611d57565b65206e6f69736560d01b920191825250600601919050565b6000825161242a818460208701611d57565b692072656374616e676c6560b01b920191825250600a01919050565b60008251612458818460208701611d57565b68081d995c9d1a58d85b60ba1b920191825250600901919050565b60008251612485818460208701611d57565b6a081a1bdc9a5e9bdb9d185b60aa1b920191825250600b01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516124da81601d850160208701611d57565b91909101601d0192915050565b8181038181111561031c5761031c6120b3565b60008261250957612509612395565b500490565b600060ff83168061252157612521612395565b8060ff84160691505092915050565b60ff818116838216019081111561031c5761031c6120b3565b60ff828116828216039081111561031c5761031c6120b3565b600060ff821660ff8103612578576125786120b3565b60010192915050565b600061ffff808316818103612598576125986120b3565b6001019392505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061086390830184611d7b565b60006020828403121561263957600080fd5b815161092381611d2156fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f424d00000000000000003600000028000000ff000000ff00000001001000000000000000000000000000000000000000000000000000a2646970667358221220b956e86dd1d8d8c0b8a6b6f82e60f7309aef45e3e8bba1b4cc8c7cdc51872e4564736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806342842e0e116100ad57806395d89b411161007157806395d89b411461027c578063a22cb46514610284578063b88d4fde14610297578063c87b56dd146102aa578063e985e9c5146102bd57600080fd5b806342842e0e1461021d5780636352211e14610230578063643d66a81461024357806370a08231146102565780638626a0981461026957600080fd5b806318160ddd116100f457806318160ddd146101b657806323b872dd146101cd5780632607aafa146101e057806333229c771461020157806333acc1b01461021457600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b3146101995780631249c58b146101ae575b600080fd5b61014461013f366004611d3a565b6102d0565b60405190151581526020015b60405180910390f35b610161610322565b6040516101509190611da7565b61018161017c366004611dba565b6103b4565b6040516001600160a01b039091168152602001610150565b6101ac6101a7366004611def565b61044e565b005b6101ac610563565b6101bf60065481565b604051908152602001610150565b6101ac6101db366004611e19565b6105d5565b6101f36101ee366004611dba565b610606565b604051610150929190611ead565b61016161020f366004611dba565b61068a565b6101bf611b3981565b6101ac61022b366004611e19565b61086d565b61018161023e366004611dba565b610888565b6101bf610251366004611edb565b6108ff565b6101bf610264366004611efd565b61092a565b6101f3610277366004611dba565b6109b1565b610161610c99565b6101ac610292366004611f18565b610ca8565b6101ac6102a5366004611f6a565b610cb7565b6101616102b8366004611dba565b610cef565b6101446102cb366004612046565b610d20565b60006001600160e01b031982166380ac58cd60e01b148061030157506001600160e01b03198216635b5e139f60e01b145b8061031c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461033190612079565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90612079565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104325760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061045982610888565b9050806001600160a01b0316836001600160a01b0316036104c65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610429565b336001600160a01b03821614806104e257506104e28133610d20565b6105545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610429565b61055e8383610d4e565b505050565b611b39600654106105b65760405162461bcd60e51b815260206004820181905260248201527f43616e2774206578636565642074686520636f6c6c656374696f6e2073697a656044820152606401610429565b6105d3336006600081546105c9906120c9565b9182905550610dbc565b565b6105df3382610efe565b6105fb5760405162461bcd60e51b8152600401610429906120e2565b61055e838383610fd5565b60608060006040518060600160405280603681526020016126856036913990506060610631856109b1565b6040519094509091506106629061064e9084908490602001612133565b604051602081830303815290604052611175565b6040516020016106729190612162565b60405160208183030381529060405293505050915091565b606080606061069884610606565b8051919350915060009067ffffffffffffffff8111156106ba576106ba611f54565b6040519080825280602002602001820160405280156106ed57816020015b60608152602001906001900390816106d85790505b50905060005b82518110156107635782818151811061070e5761070e6121a0565b602002602001015160405160200161072691906121b6565b604051602081830303815290604052828281518110610747576107476121a0565b60200260200101819052508061075c906120c9565b90506106f3565b506040805180820190915260018152605b60f81b602082015260005b825181101561082057806000036107d257818382815181106107a3576107a36121a0565b60200260200101516040516020016107bc929190612133565b6040516020818303038152906040529150610810565b818382815181106107e5576107e56121a0565b60200260200101516040516020016107fe929190612211565b60405160208183030381529060405291505b610819816120c9565b905061077f565b5080604051602001610832919061224d565b604051602081830303815290604052905061086384610850886112c8565b8360405160200161064e93929190612272565b9695505050505050565b61055e83838360405180602001604052806000815250610cb7565b6000818152600260205260408120546001600160a01b03168061031c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610429565b60008261090e8361010061236b565b6109189190612382565b61092390600261236b565b9392505050565b60006001600160a01b0382166109955760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610429565b506001600160a01b031660009081526003602052604090205490565b604080516202000080825262020020820190925260609182919060208201818036833701905050915060008060606000866040516020016109f491815260200190565b6040516020818303038152906040528051906020012060001c9050610a18816113c9565b91955093509150610a2a868585611567565b60021c6000610a3a600a836123ab565b9050610a47816001612382565b67ffffffffffffffff811115610a5f57610a5f611f54565b604051908082528060200260200182016040528015610a9257816020015b6060815260200190600190039081610a7d5790505b50955082604051602001610aa691906123bf565b60405160208183030381529060405286600081518110610ac857610ac86121a0565b602002602001018190525060005b81811015610c8e5760019290921c916000610af26004856123ab565b9050610afd846113c9565b919850965094506001811015610b665784604051602001610b1e91906123ee565b60408051601f1981840301815291905288610b3a846001612382565b81518110610b4a57610b4a6121a0565b6020026020010181905250610b6189858989611602565b610c7d565b6002811015610bc35784604051602001610b809190612418565b60408051601f1981840301815291905288610b9c846001612382565b81518110610bac57610bac6121a0565b6020026020010181905250610b6189858989611737565b6003811015610c205784604051602001610bdd9190612446565b60408051601f1981840301815291905288610bf9846001612382565b81518110610c0957610c096121a0565b6020026020010181905250610b6189858989611861565b6004811015610c7d5784604051602001610c3a9190612473565b60408051601f1981840301815291905288610c56846001612382565b81518110610c6657610c666121a0565b6020026020010181905250610c7d898589896119c0565b50610c87816120c9565b9050610ad6565b505050505050915091565b60606001805461033190612079565b610cb3338383611b1f565b5050565b610cc13383610efe565b610cdd5760405162461bcd60e51b8152600401610429906120e2565b610ce984848484611bed565b50505050565b6060610cfa8261068a565b604051602001610d0a91906124a2565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d8382610888565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b038216610e125760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610429565b6000818152600260205260409020546001600160a01b031615610e775760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610429565b6001600160a01b0382166000908152600360205260408120805460019290610ea0908490612382565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b0316610f775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610429565b6000610f8283610888565b9050806001600160a01b0316846001600160a01b03161480610fbd5750836001600160a01b0316610fb2846103b4565b6001600160a01b0316145b80610fcd5750610fcd8185610d20565b949350505050565b826001600160a01b0316610fe882610888565b6001600160a01b0316146110505760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610429565b6001600160a01b0382166110b25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610429565b6110bd600082610d4e565b6001600160a01b03831660009081526003602052604081208054600192906110e69084906124e7565b90915550506001600160a01b0382166000908152600360205260408120805460019290611114908490612382565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060815160000361119457505060408051602081019091526000815290565b600060405180606001604052806040815260200161264560409139905060006003845160026111c39190612382565b6111cd91906124fa565b6111d890600461236b565b67ffffffffffffffff8111156111f0576111f0611f54565b6040519080825280601f01601f19166020018201604052801561121a576020820181803683370190505b509050600182016020820185865187015b80821015611286576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f811685015184535060018301925061122b565b50506003865106600181146112a257600281146112b5576112bd565b603d6001830353603d60028303536112bd565b603d60018303535b509195945050505050565b6060816000036112ef5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113195780611303816120c9565b91506113129050600a836124fa565b91506112f3565b60008167ffffffffffffffff81111561133457611334611f54565b6040519080825280601f01601f19166020018201604052801561135e576020820181803683370190505b5090505b8415610fcd576113736001836124e7565b9150611380600a866123ab565b61138b906030612382565b60f81b8183815181106113a0576113a06121a0565b60200101906001600160f81b031916908160001a9053506113c2600a866124fa565b9450611362565b6000806060816113da6064866123ab565b905060018110156114175760408051808201909152600681526579656c6c6f7760d01b6020820152603760f91b9450607f60f81b9350915061155f565b6005811015611452576040805180820190915260068152656f72616e676560d01b6020820152606760f91b9450603f60f91b9350915061155f565b600a81101561148c5760408051808201909152600581526433b932b2b760d91b602082015260ef60f81b9450606360f81b9350915061155f565b60148110156114c4576040805180820190915260038152621c995960ea1b602082015260ef60f81b9450607960f81b9350915061155f565b60238110156114f957604080518082019091526004815263626c756560e01b6020820152603f60f81b9450849350915061155f565b603c811015611532576040805180820190915260048152636772617960e01b602082015260ef60f81b9450603d60f81b9350915061155f565b604080518082019091526005815264776869746560d81b60208201526001600160f81b0319945084935091505b509193909250565b60005b6002845161157891906124fa565b811015610ce957828461158c83600261236b565b8151811061159c5761159c6121a0565b60200101906001600160f81b031916908160001a90535081846115c083600261236b565b6115cb906001612382565b815181106115db576115db6121a0565b60200101906001600160f81b031916908160001a9053506115fb816120c9565b905061156a565b60405161787360f01b602082015260228101849052600090604201604051602081830303815290604052805190602001209050600084604051602001611659919061797360f01b8152600281019190915260220190565b60405160208183030381529060405280519060200120905060005b601f81101561172e576000838260208110611691576116916121a0565b1a905060008383602081106116a8576116a86121a0565b1a905060006116ba60ff8416836108ff565b9050878a82815181106116cf576116cf6121a0565b60200101906001600160f81b031916908160001a905350868a6116f3836001612382565b81518110611703576117036121a0565b60200101906001600160f81b031916908160001a90535050505080611727906120c9565b9050611674565b50505050505050565b604051631c9958dd60e21b60208201526024810184905260009060440160408051808303601f1901815291905280516020909101209050600081811a90600183901a90600284901a90600385901a905b8160ff168110156118555760ff6117a085821683612382565b116118555760005b8360ff168110156118445760ff6117c182888316612382565b116118445760006117d282846108ff565b9050898c82815181106117e7576117e76121a0565b60200101906001600160f81b031916908160001a905350888c61180b836001612382565b8151811061181b5761181b6121a0565b60200101906001600160f81b031916908160001a905350508061183d906120c9565b90506117a8565b5061184e816120c9565b9050611787565b50505050505050505050565b604051631c9958dd60e21b60208201526024810184905260009060440160408051808303601f1901815291905280516020909101209050600081811a906118ad6005600185901a61250e565b6118b8906001612530565b905060008160ff168360ff16116118d05760006118da565b6118da8284612549565b905060008260ff168460ff6118ef9190612549565b60ff16116118fe5760ff611908565b6119088385612530565b905060005b6101008161ffff16101561185557825b8260ff168160ff16116119af57600061193d8260ff168461ffff166108ff565b9050898c8281518110611952576119526121a0565b60200101906001600160f81b031916908160001a905350888c611976836001612382565b81518110611986576119866121a0565b60200101906001600160f81b031916908160001a90535050806119a890612562565b905061191d565b506119b981612581565b905061190d565b604051631c9958dd60e21b60208201526024810184905260009060440160408051808303601f1901815291905280516020909101209050600081811a90611a0c6005600185901a61250e565b611a17906001612530565b905060008160ff168360ff1611611a2f576000611a39565b611a398284612549565b905060008260ff168460ff611a4e9190612549565b60ff1611611a5d5760ff611a67565b611a678385612530565b905060005b6101008161ffff16101561185557825b8260ff168160ff1611611b0e576000611a9c8361ffff168360ff166108ff565b9050898c8281518110611ab157611ab16121a0565b60200101906001600160f81b031916908160001a905350888c611ad5836001612382565b81518110611ae557611ae56121a0565b60200101906001600160f81b031916908160001a9053505080611b0790612562565b9050611a7c565b50611b1881612581565b9050611a6c565b816001600160a01b0316836001600160a01b031603611b805760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610429565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611bf8848484610fd5565b611c0484848484611c20565b610ce95760405162461bcd60e51b8152600401610429906125a2565b60006001600160a01b0384163b15611d1657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c649033908990889088906004016125f4565b6020604051808303816000875af1925050508015611c9f575060408051601f3d908101601f19168201909252611c9c91810190612627565b60015b611cfc573d808015611ccd576040519150601f19603f3d011682016040523d82523d6000602084013e611cd2565b606091505b508051600003611cf45760405162461bcd60e51b8152600401610429906125a2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fcd565b506001949350505050565b6001600160e01b031981168114611d3757600080fd5b50565b600060208284031215611d4c57600080fd5b813561092381611d21565b60005b83811015611d72578181015183820152602001611d5a565b50506000910152565b60008151808452611d93816020860160208601611d57565b601f01601f19169290920160200192915050565b6020815260006109236020830184611d7b565b600060208284031215611dcc57600080fd5b5035919050565b80356001600160a01b0381168114611dea57600080fd5b919050565b60008060408385031215611e0257600080fd5b611e0b83611dd3565b946020939093013593505050565b600080600060608486031215611e2e57600080fd5b611e3784611dd3565b9250611e4560208501611dd3565b9150604084013590509250925092565b600082825180855260208086019550808260051b84010181860160005b84811015611ea057601f19868403018952611e8e838351611d7b565b98840198925090830190600101611e72565b5090979650505050505050565b604081526000611ec06040830185611d7b565b8281036020840152611ed28185611e55565b95945050505050565b60008060408385031215611eee57600080fd5b50508035926020909101359150565b600060208284031215611f0f57600080fd5b61092382611dd3565b60008060408385031215611f2b57600080fd5b611f3483611dd3565b915060208301358015158114611f4957600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611f8057600080fd5b611f8985611dd3565b9350611f9760208601611dd3565b925060408501359150606085013567ffffffffffffffff80821115611fbb57600080fd5b818701915087601f830112611fcf57600080fd5b813581811115611fe157611fe1611f54565b604051601f8201601f19908116603f0116810190838211818310171561200957612009611f54565b816040528281528a602084870101111561202257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561205957600080fd5b61206283611dd3565b915061207060208401611dd3565b90509250929050565b600181811c9082168061208d57607f821691505b6020821081036120ad57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000600182016120db576120db6120b3565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008351612145818460208801611d57565b835190830190612159818360208801611d57565b01949350505050565b7519185d184e9a5b5859d94bd89b5c0ed8985cd94d8d0b60521b815260008251612193816016850160208701611d57565b9190910160160192915050565b634e487b7160e01b600052603260045260246000fd5b7f7b2274726169745f74797065223a22656c656d656e74222c2276616c7565223a8152601160f91b6020820152600082516121f8816021850160208701611d57565b61227d60f01b6021939091019283015250602301919050565b60008351612223818460208801611d57565b600b60fa1b9083019081528351612241816001840160208801611d57565b01600101949350505050565b6000825161225f818460208701611d57565b605d60f81b920191825250600101919050565b6a3d9134b6b0b3b2911d101160a91b8152835160009061229981600b850160208901611d57565b75222c20226e616d65223a225072696d6974697665202360501b600b9184019182015284516122cf816021840160208901611d57565b7f222c20226465736372697074696f6e223a2246756c6c79206f6e636861696e20602192909101918201527f67656e657261746976652061727420696e2072617374657228424d502920666f6041820152733936b0ba1711161130ba3a3934b13aba32b9911d60611b60618201528351612350816075840160208801611d57565b607d60f81b6075929091019182015260760195945050505050565b808202811582820484141761031c5761031c6120b3565b8082018082111561031c5761031c6120b3565b634e487b7160e01b600052601260045260246000fd5b6000826123ba576123ba612395565b500690565b600082516123d1818460208701611d57565b6a08189858dad9dc9bdd5b9960aa1b920191825250600b01919050565b60008251612400818460208701611d57565b65206e6f69736560d01b920191825250600601919050565b6000825161242a818460208701611d57565b692072656374616e676c6560b01b920191825250600a01919050565b60008251612458818460208701611d57565b68081d995c9d1a58d85b60ba1b920191825250600901919050565b60008251612485818460208701611d57565b6a081a1bdc9a5e9bdb9d185b60aa1b920191825250600b01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516124da81601d850160208701611d57565b91909101601d0192915050565b8181038181111561031c5761031c6120b3565b60008261250957612509612395565b500490565b600060ff83168061252157612521612395565b8060ff84160691505092915050565b60ff818116838216019081111561031c5761031c6120b3565b60ff828116828216039081111561031c5761031c6120b3565b600060ff821660ff8103612578576125786120b3565b60010192915050565b600061ffff808316818103612598576125986120b3565b6001019392505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061086390830184611d7b565b60006020828403121561263957600080fd5b815161092381611d2156fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f424d00000000000000003600000028000000ff000000ff00000001001000000000000000000000000000000000000000000000000000a2646970667358221220b956e86dd1d8d8c0b8a6b6f82e60f7309aef45e3e8bba1b4cc8c7cdc51872e4564736f6c63430008110033

Deployed Bytecode Sourcemap

37334:8276:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24818:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24818:305:0;;;;;;;;25763:100;;;:::i;:::-;;;;;;;:::i;27322:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;27322:221:0;1533:203:1;26845:411:0;;;;;;:::i;:::-;;:::i;:::-;;37628:166;;;:::i;37430:23::-;;;;;;;;;2324:25:1;;;2312:2;2297:18;37430:23:0;2178:177:1;28072:339:0;;;;;;:::i;:::-;;:::i;39277:738::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;38030:1239::-;;;;;;:::i;:::-;;:::i;37379:42::-;;37417:4;37379:42;;28482:185;;;;;;:::i;:::-;;:::i;25457:239::-;;;;;;:::i;:::-;;:::i;45478:117::-;;;;;;:::i;:::-;;:::i;25187:208::-;;;;;;:::i;:::-;;:::i;40023:1618::-;;;;;;:::i;:::-;;:::i;25932:104::-;;;:::i;27615:155::-;;;;;;:::i;:::-;;:::i;28738:328::-;;;;;;:::i;:::-;;:::i;37802:220::-;;;;;;:::i;:::-;;:::i;27841:164::-;;;;;;:::i;:::-;;:::i;24818:305::-;24920:4;-1:-1:-1;;;;;;24957:40:0;;-1:-1:-1;;;24957:40:0;;:105;;-1:-1:-1;;;;;;;25014:48:0;;-1:-1:-1;;;25014:48:0;24957:105;:158;;;-1:-1:-1;;;;;;;;;;17696:40:0;;;25079:36;24937:178;24818:305;-1:-1:-1;;24818:305:0:o;25763:100::-;25817:13;25850:5;25843:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25763:100;:::o;27322:221::-;27398:7;30665:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30665:16:0;27418:73;;;;-1:-1:-1;;;27418:73:0;;7107:2:1;27418:73:0;;;7089:21:1;7146:2;7126:18;;;7119:30;7185:34;7165:18;;;7158:62;-1:-1:-1;;;7236:18:1;;;7229:42;7288:19;;27418:73:0;;;;;;;;;-1:-1:-1;27511:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27511:24:0;;27322:221::o;26845:411::-;26926:13;26942:23;26957:7;26942:14;:23::i;:::-;26926:39;;26990:5;-1:-1:-1;;;;;26984:11:0;:2;-1:-1:-1;;;;;26984:11:0;;26976:57;;;;-1:-1:-1;;;26976:57:0;;7520:2:1;26976:57:0;;;7502:21:1;7559:2;7539:18;;;7532:30;7598:34;7578:18;;;7571:62;-1:-1:-1;;;7649:18:1;;;7642:31;7690:19;;26976:57:0;7318:397:1;26976:57:0;6489:10;-1:-1:-1;;;;;27068:21:0;;;;:62;;-1:-1:-1;27093:37:0;27110:5;6489:10;27841:164;:::i;27093:37::-;27046:168;;;;-1:-1:-1;;;27046:168:0;;7922:2:1;27046:168:0;;;7904:21:1;7961:2;7941:18;;;7934:30;8000:34;7980:18;;;7973:62;8071:26;8051:18;;;8044:54;8115:19;;27046:168:0;7720:420:1;27046:168:0;27227:21;27236:2;27240:7;27227:8;:21::i;:::-;26915:341;26845:411;;:::o;37628:166::-;37417:4;37676:11;;:28;37668:73;;;;-1:-1:-1;;;37668:73:0;;8347:2:1;37668:73:0;;;8329:21:1;;;8366:18;;;8359:30;8425:34;8405:18;;;8398:62;8477:18;;37668:73:0;8145:356:1;37668:73:0;37754:32;37760:10;37774:11;;37772:13;;;;;:::i;:::-;;;;;-1:-1:-1;37754:5:0;:32::i;:::-;37628:166::o;28072:339::-;28267:41;6489:10;28300:7;28267:18;:41::i;:::-;28259:103;;;;-1:-1:-1;;;28259:103:0;;;;;;;:::i;:::-;28375:28;28385:4;28391:2;28395:7;28375:9;:28::i;39277:738::-;39327:19;39348:26;39400:19;:378;;;;;;;;;;;;;;;;;;;39792:23;39863:22;39879:5;39863:15;:22::i;:::-;39968:36;;39836:49;;-1:-1:-1;39836:49:0;;-1:-1:-1;39954:51:0;;39968:36;;39985:6;;39836:49;;39968:36;;;:::i;:::-;;;;;;;;;;;;;39954:13;:51::i;:::-;39911:95;;;;;;;;:::i;:::-;;;;;;;;;;;;;39896:111;;39381:634;;39277:738;;;:::o;38030:1239::-;38084:22;38124:19;38154:26;38215:15;38224:5;38215:8;:15::i;:::-;38282:17;;38193:37;;-1:-1:-1;38193:37:0;-1:-1:-1;38243:23:0;;38269:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38243:57;;38318:6;38313:194;38334:10;:17;38330:1;:21;38313:194;;;38462:10;38473:1;38462:13;;;;;;;;:::i;:::-;;;;;;;38402:80;;;;;;;;:::i;:::-;;;;;;;;;;;;;38382:7;38390:1;38382:10;;;;;;;;:::i;:::-;;;;;;:101;;;;38353:3;;;;:::i;:::-;;;38313:194;;;-1:-1:-1;38519:34:0;;;;;;;;;;;;-1:-1:-1;;;38519:34:0;;;;:28;38564:345;38585:7;:14;38581:1;:18;38564:345;;;38634:1;38639;38634:6;38630:268;;38715:14;38730:7;38738:1;38730:10;;;;;;;;:::i;:::-;;;;;;;38698:43;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38674:68;;38630:268;;;38851:14;38870:7;38878:1;38870:10;;;;;;;;:::i;:::-;;;;;;;38834:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38810:72;;38630:268;38601:3;;;:::i;:::-;;;38564:345;;;;38960:14;38943:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;38919:61;;39004:257;39085:5;39122:23;39139:5;39122:16;:23::i;:::-;39241:14;39032:228;;;;;;;;;;:::i;39004:257::-;38993:268;38030:1239;-1:-1:-1;;;;;;38030:1239:0:o;28482:185::-;28620:39;28637:4;28643:2;28647:7;28620:39;;;;;;;;;;;;:16;:39::i;25457:239::-;25529:7;25565:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25565:16:0;;25592:73;;;;-1:-1:-1;;;25592:73:0;;14366:2:1;25592:73:0;;;14348:21:1;14405:2;14385:18;;;14378:30;14444:34;14424:18;;;14417:62;-1:-1:-1;;;14495:18:1;;;14488:39;14544:19;;25592:73:0;14164:405:1;45478:117:0;45537:9;45583:1;45573:7;45579:1;45573:3;:7;:::i;:::-;:11;;;;:::i;:::-;45572:15;;45586:1;45572:15;:::i;:::-;45565:22;45478:117;-1:-1:-1;;;45478:117:0:o;25187:208::-;25259:7;-1:-1:-1;;;;;25287:19:0;;25279:74;;;;-1:-1:-1;;;25279:74:0;;15079:2:1;25279:74:0;;;15061:21:1;15118:2;15098:18;;;15091:30;15157:34;15137:18;;;15130:62;-1:-1:-1;;;15208:18:1;;;15201:40;15258:19;;25279:74:0;14877:406:1;25279:74:0;-1:-1:-1;;;;;;25371:16:0;;;;;:9;:16;;;;;;;25187:208::o;40023:1618::-;40156:24;;;40166:13;40156:24;;;;;;;;;40080:20;;;;40156:24;;;;;;;;;;;-1:-1:-1;40156:24:0;40146:34;;40209:9;40229;40249:19;40281:9;40325:5;40308:23;;;;;;15417:19:1;;15461:2;15452:12;;15288:182;40308:23:0;;;;;;;;;;;;;40298:34;;;;;;40293:40;;40281:52;;40369:19;40383:4;40369:13;:19::i;:::-;40351:37;;-1:-1:-1;40351:37:0;-1:-1:-1;40351:37:0;-1:-1:-1;40399:30:0;40413:7;40351:37;;40399:13;:30::i;:::-;40457:1;40449:9;40487:6;40497:9;40504:2;40449:9;40497;:::i;:::-;40487:19;-1:-1:-1;40545:3:0;40487:19;40547:1;40545:3;:::i;:::-;40532:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40519:30;;40600:5;40583:38;;;;;;;;:::i;:::-;;;;;;;;;;;;;40560:10;40571:1;40560:13;;;;;;;;:::i;:::-;;;;;;:62;;;;40640:6;40635:999;40656:1;40652;:5;40635:999;;;40703:1;40695:9;;;;;40721:11;40735:8;40742:1;40695:9;40735:8;:::i;:::-;40721:22;;40797:19;40811:4;40797:13;:19::i;:::-;40779:37;;-1:-1:-1;40779:37:0;-1:-1:-1;40779:37:0;-1:-1:-1;40846:1:0;40837:10;;40833:790;;;40940:5;40923:33;;;;;;;;:::i;:::-;;;;-1:-1:-1;;40923:33:0;;;;;;;;;40898:10;40909:3;:1;40911;40909:3;:::i;:::-;40898:15;;;;;;;;:::i;:::-;;;;;;:59;;;;40976:31;40985:7;40994:4;41000:2;41004;40976:8;:31::i;:::-;40833:790;;;41055:1;41046:6;:10;41042:581;;;41132:5;41115:37;;;;;;;;:::i;:::-;;;;-1:-1:-1;;41115:37:0;;;;;;;;;41090:10;41101:3;:1;41103;41101:3;:::i;:::-;41090:15;;;;;;;;:::i;:::-;;;;;;:63;;;;41172:35;41185:7;41194:4;41200:2;41204;41172:12;:35::i;41042:581::-;41255:1;41246:6;:10;41242:381;;;41332:5;41315:36;;;;;;;;:::i;:::-;;;;-1:-1:-1;;41315:36:0;;;;;;;;;41290:10;41301:3;:1;41303;41301:3;:::i;:::-;41290:15;;;;;;;;:::i;:::-;;;;;;:62;;;;41371:34;41383:7;41392:4;41398:2;41402;41371:11;:34::i;41242:381::-;41453:1;41444:6;:10;41440:183;;;41530:5;41513:38;;;;;;;;:::i;:::-;;;;-1:-1:-1;;41513:38:0;;;;;;;;;41488:10;41499:3;:1;41501;41499:3;:::i;:::-;41488:15;;;;;;;;:::i;:::-;;;;;;:64;;;;41571:36;41585:7;41594:4;41600:2;41604;41571:13;:36::i;:::-;-1:-1:-1;40659:3:0;;;:::i;:::-;;;40635:999;;;;40135:1506;;;;;40023:1618;;;:::o;25932:104::-;25988:13;26021:7;26014:14;;;;;:::i;27615:155::-;27710:52;6489:10;27743:8;27753;27710:18;:52::i;:::-;27615:155;;:::o;28738:328::-;28913:41;6489:10;28946:7;28913:18;:41::i;:::-;28905:103;;;;-1:-1:-1;;;28905:103:0;;;;;;;:::i;:::-;29019:39;29033:4;29039:2;29043:7;29052:5;29019:13;:39::i;:::-;28738:328;;;;:::o;37802:220::-;37869:30;37993:19;38006:5;37993:12;:19::i;:::-;37943:70;;;;;;;;:::i;:::-;;;;;;;;;;;;;37917:97;;37802:220;;;:::o;27841:164::-;-1:-1:-1;;;;;27962:25:0;;;27938:4;27962:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27841:164::o;34558:174::-;34633:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34633:29:0;-1:-1:-1;;;;;34633:29:0;;;;;;;;:24;;34687:23;34633:24;34687:14;:23::i;:::-;-1:-1:-1;;;;;34678:46:0;;;;;;;;;;;34558:174;;:::o;32554:382::-;-1:-1:-1;;;;;32634:16:0;;32626:61;;;;-1:-1:-1;;;32626:61:0;;18722:2:1;32626:61:0;;;18704:21:1;;;18741:18;;;18734:30;18800:34;18780:18;;;18773:62;18852:18;;32626:61:0;18520:356:1;32626:61:0;30641:4;30665:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30665:16:0;:30;32698:58;;;;-1:-1:-1;;;32698:58:0;;19083:2:1;32698:58:0;;;19065:21:1;19122:2;19102:18;;;19095:30;19161;19141:18;;;19134:58;19209:18;;32698:58:0;18881:352:1;32698:58:0;-1:-1:-1;;;;;32827:13:0;;;;;;:9;:13;;;;;:18;;32844:1;;32827:13;:18;;32844:1;;32827:18;:::i;:::-;;;;-1:-1:-1;;32856:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32856:21:0;-1:-1:-1;;;;;32856:21:0;;;;;;;;32895:33;;32856:16;;;32895:33;;32856:16;;32895:33;32554:382;;:::o;30870:348::-;30963:4;30665:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30665:16:0;30980:73;;;;-1:-1:-1;;;30980:73:0;;19440:2:1;30980:73:0;;;19422:21:1;19479:2;19459:18;;;19452:30;19518:34;19498:18;;;19491:62;-1:-1:-1;;;19569:18:1;;;19562:42;19621:19;;30980:73:0;19238:408:1;30980:73:0;31064:13;31080:23;31095:7;31080:14;:23::i;:::-;31064:39;;31133:5;-1:-1:-1;;;;;31122:16:0;:7;-1:-1:-1;;;;;31122:16:0;;:51;;;;31166:7;-1:-1:-1;;;;;31142:31:0;:20;31154:7;31142:11;:20::i;:::-;-1:-1:-1;;;;;31142:31:0;;31122:51;:87;;;;31177:32;31194:5;31201:7;31177:16;:32::i;:::-;31114:96;30870:348;-1:-1:-1;;;;30870:348:0:o;33862:578::-;34021:4;-1:-1:-1;;;;;33994:31:0;:23;34009:7;33994:14;:23::i;:::-;-1:-1:-1;;;;;33994:31:0;;33986:85;;;;-1:-1:-1;;;33986:85:0;;19853:2:1;33986:85:0;;;19835:21:1;19892:2;19872:18;;;19865:30;19931:34;19911:18;;;19904:62;-1:-1:-1;;;19982:18:1;;;19975:39;20031:19;;33986:85:0;19651:405:1;33986:85:0;-1:-1:-1;;;;;34090:16:0;;34082:65;;;;-1:-1:-1;;;34082:65:0;;20263:2:1;34082:65:0;;;20245:21:1;20302:2;20282:18;;;20275:30;20341:34;20321:18;;;20314:62;-1:-1:-1;;;20392:18:1;;;20385:34;20436:19;;34082:65:0;20061:400:1;34082:65:0;34264:29;34281:1;34285:7;34264:8;:29::i;:::-;-1:-1:-1;;;;;34306:15:0;;;;;;:9;:15;;;;;:20;;34325:1;;34306:15;:20;;34325:1;;34306:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34337:13:0;;;;;;:9;:13;;;;;:18;;34354:1;;34337:13;:18;;34354:1;;34337:18;:::i;:::-;;;;-1:-1:-1;;34366:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34366:21:0;-1:-1:-1;;;;;34366:21:0;;;;;;;;;34405:27;;34366:16;;34405:27;;;;;;;33862:578;;;:::o;546:3053::-;604:13;841:4;:11;856:1;841:16;837:31;;-1:-1:-1;;859:9:0;;;;;;;;;-1:-1:-1;859:9:0;;;546:3053::o;837:31::-;921:19;943:6;;;;;;;;;;;;;;;;;921:28;;1360:20;1419:1;1400:4;:11;1414:1;1400:15;;;;:::i;:::-;1399:21;;;;:::i;:::-;1394:27;;:1;:27;:::i;:::-;1383:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1383:39:0;;1360:62;;1558:1;1551:5;1547:13;1662:2;1654:6;1650:15;1773:4;1825;1819:11;1813:4;1809:22;1735:1432;1859:6;1850:7;1847:19;1735:1432;;;1965:1;1956:7;1952:15;1941:26;;2004:7;1998:14;2657:4;2649:5;2645:2;2641:14;2637:25;2627:8;2623:40;2617:47;2606:9;2598:67;2711:1;2700:9;2696:17;2683:30;;2803:4;2795:5;2791:2;2787:14;2783:25;2773:8;2769:40;2763:47;2752:9;2744:67;2857:1;2846:9;2842:17;2829:30;;2948:4;2940:5;2937:1;2933:13;2929:24;2919:8;2915:39;2909:46;2898:9;2890:66;3002:1;2991:9;2987:17;2974:30;;3085:4;3078:5;3074:16;3064:8;3060:31;3054:38;3043:9;3035:58;;3139:1;3128:9;3124:17;3111:30;;1735:1432;;;1739:107;;3329:1;3322:4;3316:11;3312:19;3350:1;3345:123;;;;3487:1;3482:73;;;;3305:250;;3345:123;3398:4;3394:1;3383:9;3379:17;3371:32;3448:4;3444:1;3433:9;3429:17;3421:32;3345:123;;3482:73;3535:4;3531:1;3520:9;3516:17;3508:32;3305:250;-1:-1:-1;3585:6:0;;546:3053;-1:-1:-1;;;;;546:3053:0:o;3971:723::-;4027:13;4248:5;4257:1;4248:10;4244:53;;-1:-1:-1;;4275:10:0;;;;;;;;;;;;-1:-1:-1;;;4275:10:0;;;;;3971:723::o;4244:53::-;4322:5;4307:12;4363:78;4370:9;;4363:78;;4396:8;;;;:::i;:::-;;-1:-1:-1;4419:10:0;;-1:-1:-1;4427:2:0;4419:10;;:::i;:::-;;;4363:78;;;4451:19;4483:6;4473:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4473:17:0;;4451:39;;4501:154;4508:10;;4501:154;;4535:11;4545:1;4535:11;;:::i;:::-;;-1:-1:-1;4604:10:0;4612:2;4604:5;:10;:::i;:::-;4591:24;;:2;:24;:::i;:::-;4578:39;;4561:6;4568;4561:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4561:56:0;;;;;;;;-1:-1:-1;4632:11:0;4641:2;4632:11;;:::i;:::-;;;4501:154;;44429:1041;44484:9;;44506:18;44484:9;44559:10;44566:3;44559:4;:10;:::i;:::-;44545:24;;44603:1;44594:6;:10;44590:857;;;44630:15;;;;;;;;;;;;-1:-1:-1;;;44630:15:0;;;;-1:-1:-1;;;44672:22:0;-1:-1:-1;;;;44672:22:0;-1:-1:-1;44630:15:0;-1:-1:-1;44590:857:0;;;44734:1;44725:6;:10;44721:726;;;44761:15;;;;;;;;;;;;-1:-1:-1;;;44761:15:0;;;;-1:-1:-1;;;44791:22:0;-1:-1:-1;;;;44791:22:0;-1:-1:-1;44761:15:0;-1:-1:-1;44721:726:0;;;44853:2;44844:6;:11;44840:607;;;44881:14;;;;;;;;;;;;-1:-1:-1;;;44881:14:0;;;;-1:-1:-1;;;44910:22:0;-1:-1:-1;;;;44910:22:0;-1:-1:-1;44881:14:0;-1:-1:-1;44840:607:0;;;44989:2;44980:6;:11;44976:471;;;45017:12;;;;;;;;;;;;-1:-1:-1;;;45017:12:0;;;;-1:-1:-1;;;45044:22:0;-1:-1:-1;;;;45044:22:0;-1:-1:-1;45017:12:0;-1:-1:-1;44976:471:0;;;45106:2;45097:6;:11;45093:354;;;45134:13;;;;;;;;;;;;-1:-1:-1;;;45134:13:0;;;;-1:-1:-1;;;45162:22:0;-1:-1:-1;45162:22:0;;-1:-1:-1;45134:13:0;-1:-1:-1;45093:354:0;;;45232:2;45223:6;:11;45219:228;;;45260:13;;;;;;;;;;;;-1:-1:-1;;;45260:13:0;;;;-1:-1:-1;;;45288:22:0;-1:-1:-1;;;;45288:22:0;-1:-1:-1;45260:13:0;-1:-1:-1;45219:228:0;;;45372:14;;;;;;;;;;;;-1:-1:-1;;;45372:14:0;;;;-1:-1:-1;;;;;;45401:22:0;-1:-1:-1;45401:22:0;;-1:-1:-1;45372:14:0;-1:-1:-1;45219:228:0;44531:939;44429:1041;;;;;:::o;44173:248::-;44274:6;44269:145;44307:1;44290:7;:14;:18;;;;:::i;:::-;44286:1;:22;44269:145;;;44354:2;44339:7;44347:3;44349:1;44347;:3;:::i;:::-;44339:12;;;;;;;;:::i;:::-;;;;:17;-1:-1:-1;;;;;44339:17:0;;;;;;;;-1:-1:-1;44388:2:0;44371:7;44379:3;44381:1;44379;:3;:::i;:::-;:5;;44383:1;44379:5;:::i;:::-;44371:14;;;;;;;;:::i;:::-;;;;:19;-1:-1:-1;;;;;44371:19:0;;;;;;;;-1:-1:-1;44310:3:0;;;:::i;:::-;;;44269:145;;43688:477;43813:28;;-1:-1:-1;;;43813:28:0;;;20954:17:1;20987:11;;;20980:27;;;43790:10:0;;21023:12:1;;43813:28:0;;;;;;;;;;;;43803:39;;;;;;43790:52;;43853:10;43899:4;43876:28;;;;;;;-1:-1:-1;;;21276:17:1;;21318:1;21309:11;;21302:27;;;;21354:2;21345:12;;21046:317;43876:28:0;;;;;;;;;;;;;43866:39;;;;;;43853:52;;43923:6;43918:240;43939:2;43935:1;:6;43918:240;;;43972:7;43988:2;43991:1;43988:5;;;;;;;:::i;:::-;;;-1:-1:-1;44009:7:0;44025:2;44028:1;44025:5;;;;;;;:::i;:::-;;;-1:-1:-1;44048:9:0;44060:18;44019:12;44060:18;;44025:5;44060:13;:18::i;:::-;44048:30;;44109:2;44093:7;44101:4;44093:13;;;;;;;;:::i;:::-;;;;:18;-1:-1:-1;;;;;44093:18:0;;;;;;;;-1:-1:-1;44144:2:0;44126:7;44134:6;:4;44139:1;44134:6;:::i;:::-;44126:15;;;;;;;;:::i;:::-;;;;:20;-1:-1:-1;;;;;44126:20:0;;;;;;;;;43957:201;;;43943:3;;;;:::i;:::-;;;43918:240;;;;43779:386;;43688:477;;;;:::o;43005:675::-;43138:30;;-1:-1:-1;;;43138:30:0;;;21598:19:1;21633:11;;;21626:27;;;43111:14:0;;21669:12:1;;43138:30:0;;;;;;-1:-1:-1;;43138:30:0;;;;;;43128:41;;43138:30;43128:41;;;;;-1:-1:-1;43182:7:0;43198:9;;;;43242:1;43235:9;;;;43279:1;43272:9;;;;43316:1;43309:9;;;;43332:341;43355:1;43350:6;;:2;:6;43332:341;;;43401:3;43392:6;;;;:2;:6;:::i;:::-;:12;43406:5;43388:23;43433:7;43428:232;43451:1;43446:6;;:2;:6;43428:232;;;43505:3;43496:6;43500:2;43496:6;;;;:::i;:::-;:12;43510:5;43492:23;43536:9;43548:20;43562:2;43565;43548:13;:20::i;:::-;43536:32;;43603:2;43587:7;43595:4;43587:13;;;;;;;;:::i;:::-;;;;:18;-1:-1:-1;;;;;43587:18:0;;;;;;;;-1:-1:-1;43642:2:0;43624:7;43632:6;:4;43637:1;43632:6;:::i;:::-;43624:15;;;;;;;;:::i;:::-;;;;:20;-1:-1:-1;;;;;43624:20:0;;;;;;;;;43473:187;43454:4;;;;:::i;:::-;;;43428:232;;;-1:-1:-1;43358:4:0;;;:::i;:::-;;;43332:341;;;;43100:580;;;;;43005:675;;;;:::o;42328:669::-;42460:30;;-1:-1:-1;;;42460:30:0;;;21598:19:1;21633:11;;;21626:27;;;42433:14:0;;21669:12:1;;42460:30:0;;;;;;-1:-1:-1;;42460:30:0;;;;;;42450:41;;42460:30;42450:41;;;;;-1:-1:-1;42504:7:0;42520:9;;;;42552:20;42571:1;42565;42558:9;;;42552:20;:::i;:::-;42551:26;;42576:1;42551:26;:::i;:::-;42541:36;;42598:16;42621:1;42617:5;;:1;:5;;;:17;;42633:1;42617:17;;;42625:5;42629:1;42625;:5;:::i;:::-;42598:36;;42645:17;42675:1;42665:11;;42671:1;42665:3;:7;;;;:::i;:::-;:11;;;:24;;42686:3;42665:24;;;42678:5;42682:1;42678;:5;:::i;:::-;42645:44;;42715:9;42710:280;42735:3;42730:2;:8;;;42710:280;;;42786:10;42770:209;42804:11;42798:17;;:2;:17;;;42770:209;;42855:9;42867:20;42881:2;42867:20;;42884:2;42867:20;;:13;:20::i;:::-;42855:32;;42922:2;42906:7;42914:4;42906:13;;;;;;;;:::i;:::-;;;;:18;-1:-1:-1;;;;;42906:18:0;;;;;;;;-1:-1:-1;42961:2:0;42943:7;42951:6;:4;42956:1;42951:6;:::i;:::-;42943:15;;;;;;;;:::i;:::-;;;;:20;-1:-1:-1;;;;;42943:20:0;;;;;;;;;42836:143;42817:4;;;;:::i;:::-;;;42770:209;;;-1:-1:-1;42740:4:0;;;:::i;:::-;;;42710:280;;41649:671;41783:30;;-1:-1:-1;;;41783:30:0;;;21598:19:1;21633:11;;;21626:27;;;41756:14:0;;21669:12:1;;41783:30:0;;;;;;-1:-1:-1;;41783:30:0;;;;;;41773:41;;41783:30;41773:41;;;;;-1:-1:-1;41827:7:0;41843:9;;;;41875:20;41894:1;41888;41881:9;;;41875:20;:::i;:::-;41874:26;;41899:1;41874:26;:::i;:::-;41864:36;;41921:18;41946:1;41942:5;;:1;:5;;;:17;;41958:1;41942:17;;;41950:5;41954:1;41950;:5;:::i;:::-;41921:38;;41970:15;41998:1;41988:11;;41994:1;41988:3;:7;;;;:::i;:::-;:11;;;:24;;42009:3;41988:24;;;42001:5;42005:1;42001;:5;:::i;:::-;41970:42;;42038:9;42033:280;42058:3;42053:2;:8;;;42033:280;;;42109:12;42093:209;42129:9;42123:15;;:2;:15;;;42093:209;;42178:9;42190:20;42204:2;42190:20;;42207:2;42190:20;;:13;:20::i;:::-;42178:32;;42245:2;42229:7;42237:4;42229:13;;;;;;;;:::i;:::-;;;;:18;-1:-1:-1;;;;;42229:18:0;;;;;;;;-1:-1:-1;42284:2:0;42266:7;42274:6;:4;42279:1;42274:6;:::i;:::-;42266:15;;;;;;;;:::i;:::-;;;;:20;-1:-1:-1;;;;;42266:20:0;;;;;;;;;42159:143;42140:4;;;;:::i;:::-;;;42093:209;;;-1:-1:-1;42063:4:0;;;:::i;:::-;;;42033:280;;34874:315;35029:8;-1:-1:-1;;;;;35020:17:0;:5;-1:-1:-1;;;;;35020:17:0;;35012:55;;;;-1:-1:-1;;;35012:55:0;;22747:2:1;35012:55:0;;;22729:21:1;22786:2;22766:18;;;22759:30;22825:27;22805:18;;;22798:55;22870:18;;35012:55:0;22545:349:1;35012:55:0;-1:-1:-1;;;;;35078:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35078:46:0;;;;;;;;;;35140:41;;540::1;;;35140::0;;513:18:1;35140:41:0;;;;;;;34874:315;;;:::o;29948:::-;30105:28;30115:4;30121:2;30125:7;30105:9;:28::i;:::-;30152:48;30175:4;30181:2;30185:7;30194:5;30152:22;:48::i;:::-;30144:111;;;;-1:-1:-1;;;30144:111:0;;;;;;;:::i;35754:799::-;35909:4;-1:-1:-1;;;;;35930:13:0;;7766:20;7814:8;35926:620;;35966:72;;-1:-1:-1;;;35966:72:0;;-1:-1:-1;;;;;35966:36:0;;;;;:72;;6489:10;;36017:4;;36023:7;;36032:5;;35966:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35966:72:0;;;;;;;;-1:-1:-1;;35966:72:0;;;;;;;;;;;;:::i;:::-;;;35962:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36208:6;:13;36225:1;36208:18;36204:272;;36251:60;;-1:-1:-1;;;36251:60:0;;;;;;;:::i;36204:272::-;36426:6;36420:13;36411:6;36407:2;36403:15;36396:38;35962:529;-1:-1:-1;;;;;;36089:51:0;-1:-1:-1;;;36089:51:0;;-1:-1:-1;36082:58:0;;35926:620;-1:-1:-1;36530:4:0;35754:799;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;68:71;14:131;:::o;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:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:592::-;2745:3;2776;2808:5;2802:12;2835:6;2830:3;2823:19;2861:4;2890:2;2885:3;2881:12;2874:19;;2946:2;2936:6;2933:1;2929:14;2922:5;2918:26;2914:35;2983:2;2976:5;2972:14;3004:1;3014:245;3028:6;3025:1;3022:13;3014:245;;;3115:2;3111:7;3103:5;3097:4;3093:16;3089:30;3084:3;3077:43;3141:38;3174:4;3165:6;3159:13;3141:38;:::i;:::-;3237:12;;;;3133:46;-1:-1:-1;3202:15:1;;;;3050:1;3043:9;3014:245;;;-1:-1:-1;3275:4:1;;2693:592;-1:-1:-1;;;;;;;2693:592:1:o;3290:443::-;3537:2;3526:9;3519:21;3500:4;3563:45;3604:2;3593:9;3589:18;3581:6;3563:45;:::i;:::-;3656:9;3648:6;3644:22;3639:2;3628:9;3624:18;3617:50;3684:43;3720:6;3712;3684:43;:::i;:::-;3676:51;3290:443;-1:-1:-1;;;;;3290:443:1:o;3738:248::-;3806:6;3814;3867:2;3855:9;3846:7;3842:23;3838:32;3835:52;;;3883:1;3880;3873:12;3835:52;-1:-1:-1;;3906:23:1;;;3976:2;3961:18;;;3948:32;;-1:-1:-1;3738:248:1:o;3991:186::-;4050:6;4103:2;4091:9;4082:7;4078:23;4074:32;4071:52;;;4119:1;4116;4109:12;4071:52;4142:29;4161:9;4142:29;:::i;4628:347::-;4693:6;4701;4754:2;4742:9;4733:7;4729:23;4725:32;4722:52;;;4770:1;4767;4760:12;4722:52;4793:29;4812:9;4793:29;:::i;:::-;4783:39;;4872:2;4861:9;4857:18;4844:32;4919:5;4912:13;4905:21;4898:5;4895:32;4885:60;;4941:1;4938;4931:12;4885:60;4964:5;4954:15;;;4628:347;;;;;:::o;4980:127::-;5041:10;5036:3;5032:20;5029:1;5022:31;5072:4;5069:1;5062:15;5096:4;5093:1;5086:15;5112:1138;5207:6;5215;5223;5231;5284:3;5272:9;5263:7;5259:23;5255:33;5252:53;;;5301:1;5298;5291:12;5252:53;5324:29;5343:9;5324:29;:::i;:::-;5314:39;;5372:38;5406:2;5395:9;5391:18;5372:38;:::i;:::-;5362:48;;5457:2;5446:9;5442:18;5429:32;5419:42;;5512:2;5501:9;5497:18;5484:32;5535:18;5576:2;5568:6;5565:14;5562:34;;;5592:1;5589;5582:12;5562:34;5630:6;5619:9;5615:22;5605:32;;5675:7;5668:4;5664:2;5660:13;5656:27;5646:55;;5697:1;5694;5687:12;5646:55;5733:2;5720:16;5755:2;5751;5748:10;5745:36;;;5761:18;;:::i;:::-;5836:2;5830:9;5804:2;5890:13;;-1:-1:-1;;5886:22:1;;;5910:2;5882:31;5878:40;5866:53;;;5934:18;;;5954:22;;;5931:46;5928:72;;;5980:18;;:::i;:::-;6020:10;6016:2;6009:22;6055:2;6047:6;6040:18;6095:7;6090:2;6085;6081;6077:11;6073:20;6070:33;6067:53;;;6116:1;6113;6106:12;6067:53;6172:2;6167;6163;6159:11;6154:2;6146:6;6142:15;6129:46;6217:1;6212:2;6207;6199:6;6195:15;6191:24;6184:35;6238:6;6228:16;;;;;;;5112:1138;;;;;;;:::o;6255:260::-;6323:6;6331;6384:2;6372:9;6363:7;6359:23;6355:32;6352:52;;;6400:1;6397;6390:12;6352:52;6423:29;6442:9;6423:29;:::i;:::-;6413:39;;6471:38;6505:2;6494:9;6490:18;6471:38;:::i;:::-;6461:48;;6255:260;;;;;:::o;6520:380::-;6599:1;6595:12;;;;6642;;;6663:61;;6717:4;6709:6;6705:17;6695:27;;6663:61;6770:2;6762:6;6759:14;6739:18;6736:38;6733:161;;6816:10;6811:3;6807:20;6804:1;6797:31;6851:4;6848:1;6841:15;6879:4;6876:1;6869:15;6733:161;;6520:380;;;:::o;8506:127::-;8567:10;8562:3;8558:20;8555:1;8548:31;8598:4;8595:1;8588:15;8622:4;8619:1;8612:15;8638:135;8677:3;8698:17;;;8695:43;;8718:18;;:::i;:::-;-1:-1:-1;8765:1:1;8754:13;;8638:135::o;8778:413::-;8980:2;8962:21;;;9019:2;8999:18;;;8992:30;9058:34;9053:2;9038:18;;9031:62;-1:-1:-1;;;9124:2:1;9109:18;;9102:47;9181:3;9166:19;;8778:413::o;9196:492::-;9371:3;9409:6;9403:13;9425:66;9484:6;9479:3;9472:4;9464:6;9460:17;9425:66;:::i;:::-;9554:13;;9513:16;;;;9576:70;9554:13;9513:16;9623:4;9611:17;;9576:70;:::i;:::-;9662:20;;9196:492;-1:-1:-1;;;;9196:492:1:o;9693:454::-;-1:-1:-1;;;9950:3:1;9943:37;9925:3;10009:6;10003:13;10025:75;10093:6;10088:2;10083:3;10079:12;10072:4;10064:6;10060:17;10025:75;:::i;:::-;10120:16;;;;10138:2;10116:25;;9693:454;-1:-1:-1;;9693:454:1:o;10152:127::-;10213:10;10208:3;10204:20;10201:1;10194:31;10244:4;10241:1;10234:15;10268:4;10265:1;10258:15;10284:703;10647:66;10642:3;10635:79;10753:2;10748:3;10744:12;10739:2;10734:3;10730:12;10723:34;10617:3;10786:6;10780:13;10802:73;10868:6;10863:2;10858:3;10854:12;10849:2;10841:6;10837:15;10802:73;:::i;:::-;-1:-1:-1;;;10934:2:1;10894:16;;;;10926:11;;;10919:35;-1:-1:-1;10978:2:1;10970:11;;10284:703;-1:-1:-1;10284:703:1:o;11493:640::-;11773:3;11811:6;11805:13;11827:66;11886:6;11881:3;11874:4;11866:6;11862:17;11827:66;:::i;:::-;-1:-1:-1;;;11915:16:1;;;11940:18;;;11983:13;;12005:78;11983:13;12070:1;12059:13;;12052:4;12040:17;;12005:78;:::i;:::-;12103:20;12125:1;12099:28;;11493:640;-1:-1:-1;;;;11493:640:1:o;12138:452::-;12370:3;12408:6;12402:13;12424:66;12483:6;12478:3;12471:4;12463:6;12459:17;12424:66;:::i;:::-;-1:-1:-1;;;12512:16:1;;12537:18;;;-1:-1:-1;12582:1:1;12571:13;;12138:452;-1:-1:-1;12138:452:1:o;12595:1564::-;-1:-1:-1;;;13244:47:1;;13314:13;;13226:3;;13336:75;13314:13;13399:2;13390:12;;13383:4;13371:17;;13336:75;:::i;:::-;-1:-1:-1;;;13470:2:1;13430:16;;;13462:11;;;13455:76;13556:13;;13578:76;13556:13;13640:2;13632:11;;13625:4;13613:17;;13578:76;:::i;:::-;13719:66;13714:2;13673:17;;;;13706:11;;;13699:87;13815:34;13810:2;13802:11;;13795:55;-1:-1:-1;;;13883:2:1;13866:11;;13859:72;13956:13;;13978:77;13956:13;14040:3;14032:12;;14025:4;14013:17;;13978:77;:::i;:::-;-1:-1:-1;;;14115:3:1;14074:17;;;;14107:12;;;14100:25;14149:3;14141:12;;12595:1564;-1:-1:-1;;;;;12595:1564:1:o;14574:168::-;14647:9;;;14678;;14695:15;;;14689:22;;14675:37;14665:71;;14716:18;;:::i;14747:125::-;14812:9;;;14833:10;;;14830:36;;;14846:18;;:::i;15475:127::-;15536:10;15531:3;15527:20;15524:1;15517:31;15567:4;15564:1;15557:15;15591:4;15588:1;15581:15;15607:112;15639:1;15665;15655:35;;15670:18;;:::i;:::-;-1:-1:-1;15704:9:1;;15607:112::o;15724:463::-;15956:3;15994:6;15988:13;16010:66;16069:6;16064:3;16057:4;16049:6;16045:17;16010:66;:::i;:::-;-1:-1:-1;;;16098:16:1;;16123:28;;;-1:-1:-1;16178:2:1;16167:14;;15724:463;-1:-1:-1;15724:463:1:o;16192:457::-;16424:3;16462:6;16456:13;16478:66;16537:6;16532:3;16525:4;16517:6;16513:17;16478:66;:::i;:::-;-1:-1:-1;;;16566:16:1;;16591:23;;;-1:-1:-1;16641:1:1;16630:13;;16192:457;-1:-1:-1;16192:457:1:o;16654:462::-;16886:3;16924:6;16918:13;16940:66;16999:6;16994:3;16987:4;16979:6;16975:17;16940:66;:::i;:::-;-1:-1:-1;;;17028:16:1;;17053:27;;;-1:-1:-1;17107:2:1;17096:14;;16654:462;-1:-1:-1;16654:462:1:o;17121:460::-;17353:3;17391:6;17385:13;17407:66;17466:6;17461:3;17454:4;17446:6;17442:17;17407:66;:::i;:::-;-1:-1:-1;;;17495:16:1;;17520:26;;;-1:-1:-1;17573:1:1;17562:13;;17121:460;-1:-1:-1;17121:460:1:o;17586:463::-;17818:3;17856:6;17850:13;17872:66;17931:6;17926:3;17919:4;17911:6;17907:17;17872:66;:::i;:::-;-1:-1:-1;;;17960:16:1;;17985:28;;;-1:-1:-1;18040:2:1;18029:14;;17586:463;-1:-1:-1;17586:463:1:o;18054:461::-;18316:31;18311:3;18304:44;18286:3;18377:6;18371:13;18393:75;18461:6;18456:2;18451:3;18447:12;18440:4;18432:6;18428:17;18393:75;:::i;:::-;18488:16;;;;18506:2;18484:25;;18054:461;-1:-1:-1;;18054:461:1:o;20466:128::-;20533:9;;;20554:11;;;20551:37;;;20568:18;;:::i;20599:120::-;20639:1;20665;20655:35;;20670:18;;:::i;:::-;-1:-1:-1;20704:9:1;;20599:120::o;21692:157::-;21722:1;21756:4;21753:1;21749:12;21780:3;21770:37;;21787:18;;:::i;:::-;21839:3;21832:4;21829:1;21825:12;21821:22;21816:27;;;21692:157;;;;:::o;21854:148::-;21942:4;21921:12;;;21935;;;21917:31;;21960:13;;21957:39;;;21976:18;;:::i;22007:151::-;22097:4;22090:12;;;22076;;;22072:31;;22115:14;;22112:40;;;22132:18;;:::i;22163:175::-;22200:3;22244:4;22237:5;22233:16;22273:4;22264:7;22261:17;22258:43;;22281:18;;:::i;:::-;22330:1;22317:15;;22163:175;-1:-1:-1;;22163:175:1:o;22343:197::-;22381:3;22409:6;22450:2;22443:5;22439:14;22477:2;22468:7;22465:15;22462:41;;22483:18;;:::i;:::-;22532:1;22519:15;;22343:197;-1:-1:-1;;;22343:197:1:o;22899:414::-;23101:2;23083:21;;;23140:2;23120:18;;;23113:30;23179:34;23174:2;23159:18;;23152:62;-1:-1:-1;;;23245:2:1;23230:18;;23223:48;23303:3;23288:19;;22899:414::o;23318:489::-;-1:-1:-1;;;;;23587:15:1;;;23569:34;;23639:15;;23634:2;23619:18;;23612:43;23686:2;23671:18;;23664:34;;;23734:3;23729:2;23714:18;;23707:31;;;23512:4;;23755:46;;23781:19;;23773:6;23755:46;:::i;23812:249::-;23881:6;23934:2;23922:9;23913:7;23909:23;23905:32;23902:52;;;23950:1;23947;23940:12;23902:52;23982:9;23976:16;24001:30;24025:5;24001:30;:::i

Swarm Source

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