ETH Price: $3,359.99 (-2.73%)
Gas: 2 Gwei

Token

Transponders (TRANSPONDER)
 

Overview

Max Total Supply

8,888 TRANSPONDER

Holders

933

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 TRANSPONDER
0xd60E94434310381575C5e67Bb1D3E125133AD3eD
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Transponders are tools used to send satellite signals to the Martians. They are used to write into the Message to Martians.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Transponders

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-04
*/

//SPDX-License-Identifier: MIT
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;
    }
}


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

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

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


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


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




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


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


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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface iFont {
    function fontBase64() external view returns (string memory);
}

interface iMTM {
    function getTransponderStatus(uint tokenId_) external view returns (bool);
}

contract Transponders is ERC721Enumerable, Ownable {

    address public mtmAddress;
    address public fontAddress;
    
    event Mint(address to, uint tokenId);
    
    constructor() ERC721("Transponders", "TRANSPONDER") {}

    function fontBase64() internal view returns (string memory) {
        return iFont(fontAddress).fontBase64();
    }

    modifier onlyMinter() {
        require(msg.sender == mtmAddress, "You are not the chosen one!");
        _;
    }
    
    function setFontAddress(address address_) external onlyOwner {
        fontAddress = address_;
    }
    function setMTMAddress(address address_) external onlyOwner {
        mtmAddress = address_;
    }
    
    function mintTransponder(address to_, uint tokenId_) public onlyMinter {
        emit Mint(to_, tokenId_);
        _mint(to_, tokenId_);
    }

    // function testMintMany(uint amount_) public {
    //     for (uint i = 0; i < amount_; i++) {
    //         emit Mint(msg.sender, totalSupply());
    //         _mint(msg.sender, totalSupply());
    //     }
    // }

    function getTransponderStatus(uint tokenId_) public view returns (string memory) {
        bool _transponderIsNew = iMTM(mtmAddress).getTransponderStatus(tokenId_);
        if (_transponderIsNew) {
            return "New";
        }
        return "Used";
    }

    // heres the metadata delivery stuff
    string public tokenName = "Transponder";
    string public tokenDescription = "Transponders are tools used to send sattelite signals to the Martians. They are used to write into the Message to Martians. Available through https://messagetomartians.com";
    string public tokenExternalUrl = "https://messagetomartians.com";

    function setTokenName(string memory tokenName_) external onlyOwner {
        tokenName = tokenName_;
    }
    function setTokenDescription(string memory tokenDescription_) external onlyOwner {
        tokenDescription = tokenDescription_;
    }
    function setTokenExternalUrl(string memory tokenExternalUrl_) external onlyOwner {
        tokenExternalUrl = tokenExternalUrl_;
    }

    function tokenURI(uint tokenId_) public view override returns (string memory) {
        string memory _header = string(abi.encodePacked('data:application/json;utf8, '));
        string memory _name = string(abi.encodePacked('{"name": "', tokenName, ' #', Strings.toString(tokenId_), '",'));
        string memory _image = string(abi.encodePacked('"image":', '"data:image/svg+xml;utf8, ', "<svg xmlns='http://www.w3.org/2000/svg' width='500' height='500' style='background-color:#000000'><style>@font-face{font-family:'Minecraft'; src:url('data:application/octet-stream;base64,", fontBase64() ,"');</style><text fill='#ffffff' font-family='Minecraft' x='50%' y='50%' dominant-baseline='middle' text-anchor='middle' font-size='32px'>", tokenName, ' (', getTransponderStatus(tokenId_), ')','</text></svg>",'));
        string memory _external_url = string(abi.encodePacked('"external_url": "', tokenExternalUrl ,'",'));
        string memory _description = string(abi.encodePacked('"description": "', tokenDescription ,'",'));
        string memory _attributes = string(abi.encodePacked('"attributes":[{"trait_type": "transponder status", "value": "', getTransponderStatus(tokenId_), '"}]}'));
        string memory _metadata = string(abi.encodePacked(_header, _name, _image, _external_url, _description, _attributes));
        return _metadata;
    }

    function getTokensOfAddress(address address_) public view returns (uint[] memory) {
        uint _tokenBalance = balanceOf(address_);
        uint[] memory _tokenIds = new uint[](_tokenBalance);
        for (uint i = 0; i < _tokenBalance; i++) {
            _tokenIds[i] = tokenOfOwnerByIndex(address_, i);
        }
        return _tokenIds;
    }
}

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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fontAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"getTokensOfAddress","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"getTransponderStatus","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"mintTransponder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mtmAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setFontAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setMTMAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenDescription_","type":"string"}],"name":"setTokenDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenExternalUrl_","type":"string"}],"name":"setTokenExternalUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenName_","type":"string"}],"name":"setTokenName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenDescription","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenExternalUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600b60808190526a2a3930b739b837b73232b960a91b60a09081526200002e91600d91906200019b565b506040518060e0016040528060ab81526020016200290360ab913980516200005f91600e916020909101906200019b565b5060408051808201909152601d8082527f68747470733a2f2f6d657373616765746f6d61727469616e732e636f6d0000006020909201918252620000a691600f916200019b565b50348015620000b457600080fd5b50604080518082018252600c81526b5472616e73706f6e6465727360a01b60208083019182528351808501909452600b84526a2a2920a729a827a72222a960a91b9084015281519192916200010c916000916200019b565b508051620001229060019060208401906200019b565b5050506200013f620001396200014560201b60201c565b62000149565b6200027e565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a99062000241565b90600052602060002090601f016020900481019282620001cd576000855562000218565b82601f10620001e857805160ff191683800117855562000218565b8280016001018555821562000218579182015b8281111562000218578251825591602001919060010190620001fb565b50620002269291506200022a565b5090565b5b808211156200022657600081556001016200022b565b600181811c908216806200025657607f821691505b602082108114156200027857634e487b7160e01b600052602260045260246000fd5b50919050565b612675806200028e6000396000f3fe608060405234801561001057600080fd5b50600436106101ef5760003560e01c80635648051c1161010f57806395d89b41116100a2578063bc11a4d611610071578063bc11a4d61461040c578063c87b56dd1461041f578063e985e9c514610432578063f2fde38b1461046e57600080fd5b806395d89b41146103cb578063a22cb465146103d3578063a4f29aad146103e6578063b88d4fde146103f957600080fd5b806370a08231116100de57806370a082311461038c578063715018a61461039f578063802e5e80146103a75780638da5cb5b146103ba57600080fd5b80635648051c146103565780636128e1361461035e5780636352211e146103715780636c02a9311461038457600080fd5b80631db5b77b11610187578063394d88d411610156578063394d88d41461030a57806342842e0e1461031d5780634edb0abe146103305780634f6ccce71461034357600080fd5b80631db5b77b146102c957806323b872dd146102dc57806325e6f516146102ef5780632f745c59146102f757600080fd5b8063095ea7b3116101c3578063095ea7b31461027157806314de39191461028457806318160ddd146102a45780631ab9075a146102b657600080fd5b8062d5da02146101f457806301ffc9a71461020957806306fdde0314610231578063081812fc14610246575b600080fd5b610207610202366004611d75565b610481565b005b61021c610217366004611d3b565b6104cb565b60405190151581526020015b60405180910390f35b6102396104f6565b6040516102289190612390565b610259610254366004611e35565b610588565b6040516001600160a01b039091168152602001610228565b61020761027f366004611cf4565b61061d565b610297610292366004611bb0565b610733565b604051610228919061234c565b6008545b604051908152602001610228565b6102076102c4366004611bb0565b6107d5565b6102396102d7366004611e35565b610821565b6102076102ea366004611c05565b6108ee565b61023961091f565b6102a8610305366004611cf4565b6109ad565b600c54610259906001600160a01b031681565b61020761032b366004611c05565b610a43565b61020761033e366004611cf4565b610a5e565b6102a8610351366004611e35565b610b04565b610239610b97565b61020761036c366004611bb0565b610ba4565b61025961037f366004611e35565b610bf0565b610239610c67565b6102a861039a366004611bb0565b610c74565b610207610cfb565b600b54610259906001600160a01b031681565b600a546001600160a01b0316610259565b610239610d31565b6102076103e1366004611cbd565b610d40565b6102076103f4366004611d75565b610e05565b610207610407366004611c41565b610e42565b61020761041a366004611d75565b610e7a565b61023961042d366004611e35565b610eb7565b61021c610440366004611bd2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61020761047c366004611bb0565b611016565b600a546001600160a01b031633146104b45760405162461bcd60e51b81526004016104ab906123f5565b60405180910390fd5b80516104c790600e906020840190611abd565b5050565b60006001600160e01b0319821663780e9d6360e01b14806104f057506104f0826110b1565b92915050565b60606000805461050590612543565b80601f016020809104026020016040519081016040528092919081815260200182805461053190612543565b801561057e5780601f106105535761010080835404028352916020019161057e565b820191906000526020600020905b81548152906001019060200180831161056157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106015760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104ab565b506000908152600460205260409020546001600160a01b031690565b600061062882610bf0565b9050806001600160a01b0316836001600160a01b031614156106965760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104ab565b336001600160a01b03821614806106b257506106b28133610440565b6107245760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104ab565b61072e8383611101565b505050565b6060600061074083610c74565b905060008167ffffffffffffffff81111561075d5761075d612605565b604051908082528060200260200182016040528015610786578160200160208202803683370190505b50905060005b828110156107cd5761079e85826109ad565b8282815181106107b0576107b06125ef565b6020908102919091010152806107c58161257e565b91505061078c565b509392505050565b600a546001600160a01b031633146107ff5760405162461bcd60e51b81526004016104ab906123f5565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600b54604051631db5b77b60e01b8152600481018390526060916000916001600160a01b0390911690631db5b77b9060240160206040518083038186803b15801561086b57600080fd5b505afa15801561087f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a39190611d1e565b905080156108cc5750506040805180820190915260038152624e657760e81b6020820152919050565b5050604080518082019091526004815263155cd95960e21b6020820152919050565b6108f8338261116f565b6109145760405162461bcd60e51b81526004016104ab9061242a565b61072e838383611266565b600e805461092c90612543565b80601f016020809104026020016040519081016040528092919081815260200182805461095890612543565b80156109a55780601f1061097a576101008083540402835291602001916109a5565b820191906000526020600020905b81548152906001019060200180831161098857829003601f168201915b505050505081565b60006109b883610c74565b8210610a1a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104ab565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61072e83838360405180602001604052806000815250610e42565b600b546001600160a01b03163314610ab85760405162461bcd60e51b815260206004820152601b60248201527f596f7520617265206e6f74207468652063686f73656e206f6e6521000000000060448201526064016104ab565b604080516001600160a01b0384168152602081018390527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885910160405180910390a16104c78282611411565b6000610b0f60085490565b8210610b725760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104ab565b60088281548110610b8557610b856125ef565b90600052602060002001549050919050565b600f805461092c90612543565b600a546001600160a01b03163314610bce5760405162461bcd60e51b81526004016104ab906123f5565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806104f05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104ab565b600d805461092c90612543565b60006001600160a01b038216610cdf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104ab565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d255760405162461bcd60e51b81526004016104ab906123f5565b610d2f600061155f565b565b60606001805461050590612543565b6001600160a01b038216331415610d995760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104ab565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314610e2f5760405162461bcd60e51b81526004016104ab906123f5565b80516104c790600d906020840190611abd565b610e4c338361116f565b610e685760405162461bcd60e51b81526004016104ab9061242a565b610e74848484846115b1565b50505050565b600a546001600160a01b03163314610ea45760405162461bcd60e51b81526004016104ab906123f5565b80516104c790600f906020840190611abd565b60606000604051602001610eee907f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c20000000008152601c0190565b60405160208183030381529060405290506000600d610f0c856115e4565b604051602001610f1d9291906122c4565b60405160208183030381529060405290506000610f386116e2565b600d610f4387610821565b604051602001610f5593929190611faf565b60405160208183030381529060405290506000600f604051602001610f7a91906121ee565b60405160208183030381529060405290506000600e604051602001610f9f9190612226565b60405160208183030381529060405290506000610fbb88610821565b604051602001610fcb919061224b565b60405160208183030381529060405290506000868686868686604051602001610ff996959493929190611f30565b60408051601f198184030181529190529998505050505050505050565b600a546001600160a01b031633146110405760405162461bcd60e51b81526004016104ab906123f5565b6001600160a01b0381166110a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ab565b6110ae8161155f565b50565b60006001600160e01b031982166380ac58cd60e01b14806110e257506001600160e01b03198216635b5e139f60e01b145b806104f057506301ffc9a760e01b6001600160e01b03198316146104f0565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061113682610bf0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111e85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104ab565b60006111f383610bf0565b9050806001600160a01b0316846001600160a01b0316148061122e5750836001600160a01b031661122384610588565b6001600160a01b0316145b8061125e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661127982610bf0565b6001600160a01b0316146112e15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016104ab565b6001600160a01b0382166113435760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104ab565b61134e838383611768565b611359600082611101565b6001600160a01b0383166000908152600360205260408120805460019290611382908490612500565b90915550506001600160a01b03821660009081526003602052604081208054600192906113b09084906124d4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166114675760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104ab565b6000818152600260205260409020546001600160a01b0316156114cc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104ab565b6114d860008383611768565b6001600160a01b03821660009081526003602052604081208054600192906115019084906124d4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115bc848484611266565b6115c884848484611820565b610e745760405162461bcd60e51b81526004016104ab906123a3565b6060816116085750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611632578061161c8161257e565b915061162b9050600a836124ec565b915061160c565b60008167ffffffffffffffff81111561164d5761164d612605565b6040519080825280601f01601f191660200182016040528015611677576020820181803683370190505b5090505b841561125e5761168c600183612500565b9150611699600a86612599565b6116a49060306124d4565b60f81b8183815181106116b9576116b96125ef565b60200101906001600160f81b031916908160001a9053506116db600a866124ec565b945061167b565b600c5460408051631d2a763560e21b815290516060926001600160a01b0316916374a9d8d4916004808301926000929190829003018186803b15801561172757600080fd5b505afa15801561173b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526117639190810190611dbe565b905090565b6001600160a01b0383166117c3576117be81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6117e6565b816001600160a01b0316836001600160a01b0316146117e6576117e6838261192d565b6001600160a01b0382166117fd5761072e816119ca565b826001600160a01b0316826001600160a01b03161461072e5761072e8282611a79565b60006001600160a01b0384163b1561192257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611864903390899088908890600401612319565b602060405180830381600087803b15801561187e57600080fd5b505af19250505080156118ae575060408051601f3d908101601f191682019092526118ab91810190611d58565b60015b611908573d8080156118dc576040519150601f19603f3d011682016040523d82523d6000602084013e6118e1565b606091505b5080516119005760405162461bcd60e51b81526004016104ab906123a3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061125e565b506001949350505050565b6000600161193a84610c74565b6119449190612500565b600083815260076020526040902054909150808214611997576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119dc90600190612500565b60008381526009602052604081205460088054939450909284908110611a0457611a046125ef565b906000526020600020015490508060088381548110611a2557611a256125ef565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a5d57611a5d6125d9565b6001900381819060005260206000200160009055905550505050565b6000611a8483610c74565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611ac990612543565b90600052602060002090601f016020900481019282611aeb5760008555611b31565b82601f10611b0457805160ff1916838001178555611b31565b82800160010185558215611b31579182015b82811115611b31578251825591602001919060010190611b16565b50611b3d929150611b41565b5090565b5b80821115611b3d5760008155600101611b42565b6000611b69611b64846124ac565b61247b565b9050828152838383011115611b7d57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611bab57600080fd5b919050565b600060208284031215611bc257600080fd5b611bcb82611b94565b9392505050565b60008060408385031215611be557600080fd5b611bee83611b94565b9150611bfc60208401611b94565b90509250929050565b600080600060608486031215611c1a57600080fd5b611c2384611b94565b9250611c3160208501611b94565b9150604084013590509250925092565b60008060008060808587031215611c5757600080fd5b611c6085611b94565b9350611c6e60208601611b94565b925060408501359150606085013567ffffffffffffffff811115611c9157600080fd5b8501601f81018713611ca257600080fd5b611cb187823560208401611b56565b91505092959194509250565b60008060408385031215611cd057600080fd5b611cd983611b94565b91506020830135611ce98161261b565b809150509250929050565b60008060408385031215611d0757600080fd5b611d1083611b94565b946020939093013593505050565b600060208284031215611d3057600080fd5b8151611bcb8161261b565b600060208284031215611d4d57600080fd5b8135611bcb81612629565b600060208284031215611d6a57600080fd5b8151611bcb81612629565b600060208284031215611d8757600080fd5b813567ffffffffffffffff811115611d9e57600080fd5b8201601f81018413611daf57600080fd5b61125e84823560208401611b56565b600060208284031215611dd057600080fd5b815167ffffffffffffffff811115611de757600080fd5b8201601f81018413611df857600080fd5b8051611e06611b64826124ac565b818152856020838501011115611e1b57600080fd5b611e2c826020830160208601612517565b95945050505050565b600060208284031215611e4757600080fd5b5035919050565b60008151808452611e66816020860160208601612517565b601f01601f19169290920160200192915050565b60008151611e8c818560208601612517565b9290920192915050565b8054600090600181811c9080831680611eb057607f831692505b6020808410821415611ed257634e487b7160e01b600052602260045260246000fd5b818015611ee65760018114611ef757611f24565b60ff19861689528489019650611f24565b60008881526020902060005b86811015611f1c5781548b820152908501908301611f03565b505084890196505b50505050505092915050565b600087516020611f438285838d01612517565b885191840191611f568184848d01612517565b8851920191611f688184848c01612517565b8751920191611f7a8184848b01612517565b8651920191611f8c8184848a01612517565b8551920191611f9e8184848901612517565b919091019998505050505050505050565b671134b6b0b3b2911d60c11b81527f22646174613a696d6167652f7376672b786d6c3b757466382c2000000000000060088201527f3c73766720786d6c6e733d27687474703a2f2f7777772e77332e6f72672f323060228201527f30302f737667272077696474683d2735303027206865696768743d273530302760428201527f207374796c653d276261636b67726f756e642d636f6c6f723a2330303030303060628201527f273e3c7374796c653e40666f6e742d666163657b666f6e742d66616d696c793a60828201527f274d696e656372616674273b207372633a75726c2827646174613a6170706c6960a28201527f636174696f6e2f6f637465742d73747265616d3b6261736536342c000000000060c282015283516000906120dd8160dd850160208901612517565b7f27293b3c2f7374796c653e3c746578742066696c6c3d2723666666666666272060dd918401918201527f666f6e742d66616d696c793d274d696e6563726166742720783d27353025272060fd8201527f793d273530252720646f6d696e616e742d626173656c696e653d276d6964646c61011d8201527f652720746578742d616e63686f723d276d6964646c652720666f6e742d73697a61013d82015268329e939999383c139f60b91b61015d8201526121e46121c96121bc6121b66121a861016686018a611e96565b61040560f31b815260020190565b87611e7a565b602960f81b815260010190565b6e0f0bdd195e1d0f8f0bdcdd99cf888b608a1b8152600f0190565b9695505050505050565b701132bc3a32b93730b62fbab936111d101160791b815260006122146011830184611e96565b61088b60f21b81526002019392505050565b6f113232b9b1b934b83a34b7b7111d101160811b815260006122146010830184611e96565b7f2261747472696275746573223a5b7b2274726169745f74797065223a2022747281527f616e73706f6e64657220737461747573222c202276616c7565223a20220000006020820152600082516122a981603d850160208701612517565b63227d5d7d60e01b603d939091019283015250604101919050565b693d913730b6b2911d101160b11b815260006122e3600a830185611e96565b61202360f01b815283516122fe816002840160208801612517565b61088b60f21b60029290910191820152600401949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121e490830184611e4e565b6020808252825182820181905260009190848201906040850190845b8181101561238457835183529284019291840191600101612368565b50909695505050505050565b602081526000611bcb6020830184611e4e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156124a4576124a4612605565b604052919050565b600067ffffffffffffffff8211156124c6576124c6612605565b50601f01601f191660200190565b600082198211156124e7576124e76125ad565b500190565b6000826124fb576124fb6125c3565b500490565b600082821015612512576125126125ad565b500390565b60005b8381101561253257818101518382015260200161251a565b83811115610e745750506000910152565b600181811c9082168061255757607f821691505b6020821081141561257857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612592576125926125ad565b5060010190565b6000826125a8576125a86125c3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146110ae57600080fd5b6001600160e01b0319811681146110ae57600080fdfea26469706673582212200c052a54e0c8b4290391c05f6d71d38b44d8234d668481ab2f9db897c5c0f3ec64736f6c634300080700335472616e73706f6e646572732061726520746f6f6c73207573656420746f2073656e642073617474656c697465207369676e616c7320746f20746865204d61727469616e732e205468657920617265207573656420746f20777269746520696e746f20746865204d65737361676520746f204d61727469616e732e20417661696c61626c65207468726f7567682068747470733a2f2f6d657373616765746f6d61727469616e732e636f6d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101ef5760003560e01c80635648051c1161010f57806395d89b41116100a2578063bc11a4d611610071578063bc11a4d61461040c578063c87b56dd1461041f578063e985e9c514610432578063f2fde38b1461046e57600080fd5b806395d89b41146103cb578063a22cb465146103d3578063a4f29aad146103e6578063b88d4fde146103f957600080fd5b806370a08231116100de57806370a082311461038c578063715018a61461039f578063802e5e80146103a75780638da5cb5b146103ba57600080fd5b80635648051c146103565780636128e1361461035e5780636352211e146103715780636c02a9311461038457600080fd5b80631db5b77b11610187578063394d88d411610156578063394d88d41461030a57806342842e0e1461031d5780634edb0abe146103305780634f6ccce71461034357600080fd5b80631db5b77b146102c957806323b872dd146102dc57806325e6f516146102ef5780632f745c59146102f757600080fd5b8063095ea7b3116101c3578063095ea7b31461027157806314de39191461028457806318160ddd146102a45780631ab9075a146102b657600080fd5b8062d5da02146101f457806301ffc9a71461020957806306fdde0314610231578063081812fc14610246575b600080fd5b610207610202366004611d75565b610481565b005b61021c610217366004611d3b565b6104cb565b60405190151581526020015b60405180910390f35b6102396104f6565b6040516102289190612390565b610259610254366004611e35565b610588565b6040516001600160a01b039091168152602001610228565b61020761027f366004611cf4565b61061d565b610297610292366004611bb0565b610733565b604051610228919061234c565b6008545b604051908152602001610228565b6102076102c4366004611bb0565b6107d5565b6102396102d7366004611e35565b610821565b6102076102ea366004611c05565b6108ee565b61023961091f565b6102a8610305366004611cf4565b6109ad565b600c54610259906001600160a01b031681565b61020761032b366004611c05565b610a43565b61020761033e366004611cf4565b610a5e565b6102a8610351366004611e35565b610b04565b610239610b97565b61020761036c366004611bb0565b610ba4565b61025961037f366004611e35565b610bf0565b610239610c67565b6102a861039a366004611bb0565b610c74565b610207610cfb565b600b54610259906001600160a01b031681565b600a546001600160a01b0316610259565b610239610d31565b6102076103e1366004611cbd565b610d40565b6102076103f4366004611d75565b610e05565b610207610407366004611c41565b610e42565b61020761041a366004611d75565b610e7a565b61023961042d366004611e35565b610eb7565b61021c610440366004611bd2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61020761047c366004611bb0565b611016565b600a546001600160a01b031633146104b45760405162461bcd60e51b81526004016104ab906123f5565b60405180910390fd5b80516104c790600e906020840190611abd565b5050565b60006001600160e01b0319821663780e9d6360e01b14806104f057506104f0826110b1565b92915050565b60606000805461050590612543565b80601f016020809104026020016040519081016040528092919081815260200182805461053190612543565b801561057e5780601f106105535761010080835404028352916020019161057e565b820191906000526020600020905b81548152906001019060200180831161056157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106015760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104ab565b506000908152600460205260409020546001600160a01b031690565b600061062882610bf0565b9050806001600160a01b0316836001600160a01b031614156106965760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104ab565b336001600160a01b03821614806106b257506106b28133610440565b6107245760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104ab565b61072e8383611101565b505050565b6060600061074083610c74565b905060008167ffffffffffffffff81111561075d5761075d612605565b604051908082528060200260200182016040528015610786578160200160208202803683370190505b50905060005b828110156107cd5761079e85826109ad565b8282815181106107b0576107b06125ef565b6020908102919091010152806107c58161257e565b91505061078c565b509392505050565b600a546001600160a01b031633146107ff5760405162461bcd60e51b81526004016104ab906123f5565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600b54604051631db5b77b60e01b8152600481018390526060916000916001600160a01b0390911690631db5b77b9060240160206040518083038186803b15801561086b57600080fd5b505afa15801561087f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a39190611d1e565b905080156108cc5750506040805180820190915260038152624e657760e81b6020820152919050565b5050604080518082019091526004815263155cd95960e21b6020820152919050565b6108f8338261116f565b6109145760405162461bcd60e51b81526004016104ab9061242a565b61072e838383611266565b600e805461092c90612543565b80601f016020809104026020016040519081016040528092919081815260200182805461095890612543565b80156109a55780601f1061097a576101008083540402835291602001916109a5565b820191906000526020600020905b81548152906001019060200180831161098857829003601f168201915b505050505081565b60006109b883610c74565b8210610a1a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104ab565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61072e83838360405180602001604052806000815250610e42565b600b546001600160a01b03163314610ab85760405162461bcd60e51b815260206004820152601b60248201527f596f7520617265206e6f74207468652063686f73656e206f6e6521000000000060448201526064016104ab565b604080516001600160a01b0384168152602081018390527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885910160405180910390a16104c78282611411565b6000610b0f60085490565b8210610b725760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104ab565b60088281548110610b8557610b856125ef565b90600052602060002001549050919050565b600f805461092c90612543565b600a546001600160a01b03163314610bce5760405162461bcd60e51b81526004016104ab906123f5565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806104f05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104ab565b600d805461092c90612543565b60006001600160a01b038216610cdf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104ab565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d255760405162461bcd60e51b81526004016104ab906123f5565b610d2f600061155f565b565b60606001805461050590612543565b6001600160a01b038216331415610d995760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104ab565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314610e2f5760405162461bcd60e51b81526004016104ab906123f5565b80516104c790600d906020840190611abd565b610e4c338361116f565b610e685760405162461bcd60e51b81526004016104ab9061242a565b610e74848484846115b1565b50505050565b600a546001600160a01b03163314610ea45760405162461bcd60e51b81526004016104ab906123f5565b80516104c790600f906020840190611abd565b60606000604051602001610eee907f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c20000000008152601c0190565b60405160208183030381529060405290506000600d610f0c856115e4565b604051602001610f1d9291906122c4565b60405160208183030381529060405290506000610f386116e2565b600d610f4387610821565b604051602001610f5593929190611faf565b60405160208183030381529060405290506000600f604051602001610f7a91906121ee565b60405160208183030381529060405290506000600e604051602001610f9f9190612226565b60405160208183030381529060405290506000610fbb88610821565b604051602001610fcb919061224b565b60405160208183030381529060405290506000868686868686604051602001610ff996959493929190611f30565b60408051601f198184030181529190529998505050505050505050565b600a546001600160a01b031633146110405760405162461bcd60e51b81526004016104ab906123f5565b6001600160a01b0381166110a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ab565b6110ae8161155f565b50565b60006001600160e01b031982166380ac58cd60e01b14806110e257506001600160e01b03198216635b5e139f60e01b145b806104f057506301ffc9a760e01b6001600160e01b03198316146104f0565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061113682610bf0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111e85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104ab565b60006111f383610bf0565b9050806001600160a01b0316846001600160a01b0316148061122e5750836001600160a01b031661122384610588565b6001600160a01b0316145b8061125e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661127982610bf0565b6001600160a01b0316146112e15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016104ab565b6001600160a01b0382166113435760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104ab565b61134e838383611768565b611359600082611101565b6001600160a01b0383166000908152600360205260408120805460019290611382908490612500565b90915550506001600160a01b03821660009081526003602052604081208054600192906113b09084906124d4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166114675760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104ab565b6000818152600260205260409020546001600160a01b0316156114cc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104ab565b6114d860008383611768565b6001600160a01b03821660009081526003602052604081208054600192906115019084906124d4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115bc848484611266565b6115c884848484611820565b610e745760405162461bcd60e51b81526004016104ab906123a3565b6060816116085750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611632578061161c8161257e565b915061162b9050600a836124ec565b915061160c565b60008167ffffffffffffffff81111561164d5761164d612605565b6040519080825280601f01601f191660200182016040528015611677576020820181803683370190505b5090505b841561125e5761168c600183612500565b9150611699600a86612599565b6116a49060306124d4565b60f81b8183815181106116b9576116b96125ef565b60200101906001600160f81b031916908160001a9053506116db600a866124ec565b945061167b565b600c5460408051631d2a763560e21b815290516060926001600160a01b0316916374a9d8d4916004808301926000929190829003018186803b15801561172757600080fd5b505afa15801561173b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526117639190810190611dbe565b905090565b6001600160a01b0383166117c3576117be81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6117e6565b816001600160a01b0316836001600160a01b0316146117e6576117e6838261192d565b6001600160a01b0382166117fd5761072e816119ca565b826001600160a01b0316826001600160a01b03161461072e5761072e8282611a79565b60006001600160a01b0384163b1561192257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611864903390899088908890600401612319565b602060405180830381600087803b15801561187e57600080fd5b505af19250505080156118ae575060408051601f3d908101601f191682019092526118ab91810190611d58565b60015b611908573d8080156118dc576040519150601f19603f3d011682016040523d82523d6000602084013e6118e1565b606091505b5080516119005760405162461bcd60e51b81526004016104ab906123a3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061125e565b506001949350505050565b6000600161193a84610c74565b6119449190612500565b600083815260076020526040902054909150808214611997576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119dc90600190612500565b60008381526009602052604081205460088054939450909284908110611a0457611a046125ef565b906000526020600020015490508060088381548110611a2557611a256125ef565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a5d57611a5d6125d9565b6001900381819060005260206000200160009055905550505050565b6000611a8483610c74565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611ac990612543565b90600052602060002090601f016020900481019282611aeb5760008555611b31565b82601f10611b0457805160ff1916838001178555611b31565b82800160010185558215611b31579182015b82811115611b31578251825591602001919060010190611b16565b50611b3d929150611b41565b5090565b5b80821115611b3d5760008155600101611b42565b6000611b69611b64846124ac565b61247b565b9050828152838383011115611b7d57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611bab57600080fd5b919050565b600060208284031215611bc257600080fd5b611bcb82611b94565b9392505050565b60008060408385031215611be557600080fd5b611bee83611b94565b9150611bfc60208401611b94565b90509250929050565b600080600060608486031215611c1a57600080fd5b611c2384611b94565b9250611c3160208501611b94565b9150604084013590509250925092565b60008060008060808587031215611c5757600080fd5b611c6085611b94565b9350611c6e60208601611b94565b925060408501359150606085013567ffffffffffffffff811115611c9157600080fd5b8501601f81018713611ca257600080fd5b611cb187823560208401611b56565b91505092959194509250565b60008060408385031215611cd057600080fd5b611cd983611b94565b91506020830135611ce98161261b565b809150509250929050565b60008060408385031215611d0757600080fd5b611d1083611b94565b946020939093013593505050565b600060208284031215611d3057600080fd5b8151611bcb8161261b565b600060208284031215611d4d57600080fd5b8135611bcb81612629565b600060208284031215611d6a57600080fd5b8151611bcb81612629565b600060208284031215611d8757600080fd5b813567ffffffffffffffff811115611d9e57600080fd5b8201601f81018413611daf57600080fd5b61125e84823560208401611b56565b600060208284031215611dd057600080fd5b815167ffffffffffffffff811115611de757600080fd5b8201601f81018413611df857600080fd5b8051611e06611b64826124ac565b818152856020838501011115611e1b57600080fd5b611e2c826020830160208601612517565b95945050505050565b600060208284031215611e4757600080fd5b5035919050565b60008151808452611e66816020860160208601612517565b601f01601f19169290920160200192915050565b60008151611e8c818560208601612517565b9290920192915050565b8054600090600181811c9080831680611eb057607f831692505b6020808410821415611ed257634e487b7160e01b600052602260045260246000fd5b818015611ee65760018114611ef757611f24565b60ff19861689528489019650611f24565b60008881526020902060005b86811015611f1c5781548b820152908501908301611f03565b505084890196505b50505050505092915050565b600087516020611f438285838d01612517565b885191840191611f568184848d01612517565b8851920191611f688184848c01612517565b8751920191611f7a8184848b01612517565b8651920191611f8c8184848a01612517565b8551920191611f9e8184848901612517565b919091019998505050505050505050565b671134b6b0b3b2911d60c11b81527f22646174613a696d6167652f7376672b786d6c3b757466382c2000000000000060088201527f3c73766720786d6c6e733d27687474703a2f2f7777772e77332e6f72672f323060228201527f30302f737667272077696474683d2735303027206865696768743d273530302760428201527f207374796c653d276261636b67726f756e642d636f6c6f723a2330303030303060628201527f273e3c7374796c653e40666f6e742d666163657b666f6e742d66616d696c793a60828201527f274d696e656372616674273b207372633a75726c2827646174613a6170706c6960a28201527f636174696f6e2f6f637465742d73747265616d3b6261736536342c000000000060c282015283516000906120dd8160dd850160208901612517565b7f27293b3c2f7374796c653e3c746578742066696c6c3d2723666666666666272060dd918401918201527f666f6e742d66616d696c793d274d696e6563726166742720783d27353025272060fd8201527f793d273530252720646f6d696e616e742d626173656c696e653d276d6964646c61011d8201527f652720746578742d616e63686f723d276d6964646c652720666f6e742d73697a61013d82015268329e939999383c139f60b91b61015d8201526121e46121c96121bc6121b66121a861016686018a611e96565b61040560f31b815260020190565b87611e7a565b602960f81b815260010190565b6e0f0bdd195e1d0f8f0bdcdd99cf888b608a1b8152600f0190565b9695505050505050565b701132bc3a32b93730b62fbab936111d101160791b815260006122146011830184611e96565b61088b60f21b81526002019392505050565b6f113232b9b1b934b83a34b7b7111d101160811b815260006122146010830184611e96565b7f2261747472696275746573223a5b7b2274726169745f74797065223a2022747281527f616e73706f6e64657220737461747573222c202276616c7565223a20220000006020820152600082516122a981603d850160208701612517565b63227d5d7d60e01b603d939091019283015250604101919050565b693d913730b6b2911d101160b11b815260006122e3600a830185611e96565b61202360f01b815283516122fe816002840160208801612517565b61088b60f21b60029290910191820152600401949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121e490830184611e4e565b6020808252825182820181905260009190848201906040850190845b8181101561238457835183529284019291840191600101612368565b50909695505050505050565b602081526000611bcb6020830184611e4e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156124a4576124a4612605565b604052919050565b600067ffffffffffffffff8211156124c6576124c6612605565b50601f01601f191660200190565b600082198211156124e7576124e76125ad565b500190565b6000826124fb576124fb6125c3565b500490565b600082821015612512576125126125ad565b500390565b60005b8381101561253257818101518382015260200161251a565b83811115610e745750506000910152565b600181811c9082168061255757607f821691505b6020821081141561257857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612592576125926125ad565b5060010190565b6000826125a8576125a86125c3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146110ae57600080fd5b6001600160e01b0319811681146110ae57600080fdfea26469706673582212200c052a54e0c8b4290391c05f6d71d38b44d8234d668481ab2f9db897c5c0f3ec64736f6c63430008070033

Deployed Bytecode Sourcemap

41995:3874:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43860:136;;;;;;:::i;:::-;;:::i;:::-;;35654:224;;;;;;:::i;:::-;;:::i;:::-;;;14568:14:1;;14561:22;14543:41;;14531:2;14516:18;35654:224:0;;;;;;;;22991:100;;;:::i;:::-;;;;;;;:::i;24550:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;12950:32:1;;;12932:51;;12920:2;12905:18;24550:221:0;12786:203:1;24073:411:0;;;;;;:::i;:::-;;:::i;45511:355::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36294:113::-;36382:10;:17;36294:113;;;22112:25:1;;;22100:2;22085:18;36294:113:0;21966:177:1;42599:100:0;;;;;;:::i;:::-;;:::i;43096:268::-;;;;;;:::i;:::-;;:::i;25440:339::-;;;;;;:::i;:::-;;:::i;43460:206::-;;;:::i;35962:256::-;;;;;;:::i;:::-;;:::i;42087:26::-;;;;;-1:-1:-1;;;;;42087:26:0;;;25850:185;;;;;;:::i;:::-;;:::i;42711:145::-;;;;;;:::i;:::-;;:::i;36484:233::-;;;;;;:::i;:::-;;:::i;43673:64::-;;;:::i;42491:102::-;;;;;;:::i;:::-;;:::i;22685:239::-;;;;;;:::i;:::-;;:::i;43414:39::-;;;:::i;22415:208::-;;;;;;:::i;:::-;;:::i;2376:94::-;;;:::i;42055:25::-;;;;;-1:-1:-1;;;;;42055:25:0;;;1725:87;1798:6;;-1:-1:-1;;;;;1798:6:0;1725:87;;23160:104;;;:::i;24843:295::-;;;;;;:::i;:::-;;:::i;43746:108::-;;;;;;:::i;:::-;;:::i;26106:328::-;;;;;;:::i;:::-;;:::i;44002:136::-;;;;;;:::i;:::-;;:::i;44146:1357::-;;;;;;:::i;:::-;;:::i;25209:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;25330:25:0;;;25306:4;25330:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25209:164;2625:192;;;;;;:::i;:::-;;:::i;43860:136::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;;;;;;;;;43952:36;;::::1;::::0;:16:::1;::::0;:36:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43860:136:::0;:::o;35654:224::-;35756:4;-1:-1:-1;;;;;;35780:50:0;;-1:-1:-1;;;35780:50:0;;:90;;;35834:36;35858:11;35834:23;:36::i;:::-;35773:97;35654:224;-1:-1:-1;;35654:224:0:o;22991:100::-;23045:13;23078:5;23071:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22991:100;:::o;24550:221::-;24626:7;28033:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28033:16:0;24646:73;;;;-1:-1:-1;;;24646:73:0;;19751:2:1;24646:73:0;;;19733:21:1;19790:2;19770:18;;;19763:30;19829:34;19809:18;;;19802:62;-1:-1:-1;;;19880:18:1;;;19873:42;19932:19;;24646:73:0;19549:408:1;24646:73:0;-1:-1:-1;24739:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24739:24:0;;24550:221::o;24073:411::-;24154:13;24170:23;24185:7;24170:14;:23::i;:::-;24154:39;;24218:5;-1:-1:-1;;;;;24212:11:0;:2;-1:-1:-1;;;;;24212:11:0;;;24204:57;;;;-1:-1:-1;;;24204:57:0;;20935:2:1;24204:57:0;;;20917:21:1;20974:2;20954:18;;;20947:30;21013:34;20993:18;;;20986:62;-1:-1:-1;;;21064:18:1;;;21057:31;21105:19;;24204:57:0;20733:397:1;24204:57:0;679:10;-1:-1:-1;;;;;24296:21:0;;;;:62;;-1:-1:-1;24321:37:0;24338:5;679:10;25209:164;:::i;24321:37::-;24274:168;;;;-1:-1:-1;;;24274:168:0;;17788:2:1;24274:168:0;;;17770:21:1;17827:2;17807:18;;;17800:30;17866:34;17846:18;;;17839:62;17937:26;17917:18;;;17910:54;17981:19;;24274:168:0;17586:420:1;24274:168:0;24455:21;24464:2;24468:7;24455:8;:21::i;:::-;24143:341;24073:411;;:::o;45511:355::-;45578:13;45604:18;45625:19;45635:8;45625:9;:19::i;:::-;45604:40;;45655:23;45692:13;45681:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45681:25:0;;45655:51;;45722:6;45717:115;45738:13;45734:1;:17;45717:115;;;45788:32;45808:8;45818:1;45788:19;:32::i;:::-;45773:9;45783:1;45773:12;;;;;;;;:::i;:::-;;;;;;;;;;:47;45753:3;;;;:::i;:::-;;;;45717:115;;;-1:-1:-1;45849:9:0;45511:355;-1:-1:-1;;;45511:355:0:o;42599:100::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;42670:10:::1;:21:::0;;-1:-1:-1;;;;;;42670:21:0::1;-1:-1:-1::0;;;;;42670:21:0;;;::::1;::::0;;;::::1;::::0;;42599:100::o;43096:268::-;43218:10;;43213:47;;-1:-1:-1;;;43213:47:0;;;;;22112:25:1;;;43162:13:0;;43188:22;;-1:-1:-1;;;;;43218:10:0;;;;43213:37;;22085:18:1;;43213:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43188:72;;43275:17;43271:62;;;-1:-1:-1;;43309:12:0;;;;;;;;;;;;-1:-1:-1;;;43309:12:0;;;;;43096:268;-1:-1:-1;43096:268:0:o;43271:62::-;-1:-1:-1;;43343:13:0;;;;;;;;;;;;-1:-1:-1;;;43343:13:0;;;;;43096:268;-1:-1:-1;43096:268:0:o;25440:339::-;25635:41;679:10;25668:7;25635:18;:41::i;:::-;25627:103;;;;-1:-1:-1;;;25627:103:0;;;;;;;:::i;:::-;25743:28;25753:4;25759:2;25763:7;25743:9;:28::i;43460:206::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35962:256::-;36059:7;36095:23;36112:5;36095:16;:23::i;:::-;36087:5;:31;36079:87;;;;-1:-1:-1;;;36079:87:0;;15021:2:1;36079:87:0;;;15003:21:1;15060:2;15040:18;;;15033:30;15099:34;15079:18;;;15072:62;-1:-1:-1;;;15150:18:1;;;15143:41;15201:19;;36079:87:0;14819:407:1;36079:87:0;-1:-1:-1;;;;;;36184:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35962:256::o;25850:185::-;25988:39;26005:4;26011:2;26015:7;25988:39;;;;;;;;;;;;:16;:39::i;42711:145::-;42417:10;;-1:-1:-1;;;;;42417:10:0;42403;:24;42395:64;;;;-1:-1:-1;;;42395:64:0;;19395:2:1;42395:64:0;;;19377:21:1;19434:2;19414:18;;;19407:30;19473:29;19453:18;;;19446:57;19520:18;;42395:64:0;19193:351:1;42395:64:0;42798:19:::1;::::0;;-1:-1:-1;;;;;13679:32:1;;13661:51;;13743:2;13728:18;;13721:34;;;42798:19:0::1;::::0;13634:18:1;42798:19:0::1;;;;;;;42828:20;42834:3;42839:8;42828:5;:20::i;36484:233::-:0;36559:7;36595:30;36382:10;:17;;36294:113;36595:30;36587:5;:38;36579:95;;;;-1:-1:-1;;;36579:95:0;;21755:2:1;36579:95:0;;;21737:21:1;21794:2;21774:18;;;21767:30;21833:34;21813:18;;;21806:62;-1:-1:-1;;;21884:18:1;;;21877:42;21936:19;;36579:95:0;21553:408:1;36579:95:0;36692:10;36703:5;36692:17;;;;;;;;:::i;:::-;;;;;;;;;36685:24;;36484:233;;;:::o;43673:64::-;;;;;;;:::i;42491:102::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;42563:11:::1;:22:::0;;-1:-1:-1;;;;;;42563:22:0::1;-1:-1:-1::0;;;;;42563:22:0;;;::::1;::::0;;;::::1;::::0;;42491:102::o;22685:239::-;22757:7;22793:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22793:16:0;22828:19;22820:73;;;;-1:-1:-1;;;22820:73:0;;18624:2:1;22820:73:0;;;18606:21:1;18663:2;18643:18;;;18636:30;18702:34;18682:18;;;18675:62;-1:-1:-1;;;18753:18:1;;;18746:39;18802:19;;22820:73:0;18422:405:1;43414:39:0;;;;;;;:::i;22415:208::-;22487:7;-1:-1:-1;;;;;22515:19:0;;22507:74;;;;-1:-1:-1;;;22507:74:0;;18213:2:1;22507:74:0;;;18195:21:1;18252:2;18232:18;;;18225:30;18291:34;18271:18;;;18264:62;-1:-1:-1;;;18342:18:1;;;18335:40;18392:19;;22507:74:0;18011:406:1;22507:74:0;-1:-1:-1;;;;;;22599:16:0;;;;;:9;:16;;;;;;;22415:208::o;2376:94::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;2441:21:::1;2459:1;2441:9;:21::i;:::-;2376:94::o:0;23160:104::-;23216:13;23249:7;23242:14;;;;;:::i;24843:295::-;-1:-1:-1;;;;;24946:24:0;;679:10;24946:24;;24938:62;;;;-1:-1:-1;;;24938:62:0;;17021:2:1;24938:62:0;;;17003:21:1;17060:2;17040:18;;;17033:30;17099:27;17079:18;;;17072:55;17144:18;;24938:62:0;16819:349:1;24938:62:0;679:10;25013:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25013:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25013:53:0;;;;;;;;;;25082:48;;14543:41:1;;;25013:42:0;;679:10;25082:48;;14516:18:1;25082:48:0;;;;;;;24843:295;;:::o;43746:108::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;43824:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26106:328::-:0;26281:41;679:10;26314:7;26281:18;:41::i;:::-;26273:103;;;;-1:-1:-1;;;26273:103:0;;;;;;;:::i;:::-;26387:39;26401:4;26407:2;26411:7;26420:5;26387:13;:39::i;:::-;26106:328;;;;:::o;44002:136::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;44094:36;;::::1;::::0;:16:::1;::::0;:36:::1;::::0;::::1;::::0;::::1;:::i;44146:1357::-:0;44209:13;44235:21;44266:48;;;;;;10021:30:1;10009:43;;10077:2;10068:12;;9807:279;44266:48:0;;;;;;;;;;;;;44235:80;;44326:19;44386:9;44403:26;44420:8;44403:16;:26::i;:::-;44355:81;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44326:111;;44448:20;44728:12;:10;:12::i;:::-;44883:9;44900:30;44921:8;44900:20;:30::i;:::-;44478:476;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44448:507;;44966:27;45041:16;45003:61;;;;;;;;:::i;:::-;;;;;;;;;;;;;44966:99;;45076:26;45149:16;45112:60;;;;;;;;:::i;:::-;;;;;;;;;;;;;45076:97;;45184:25;45301:30;45322:8;45301:20;:30::i;:::-;45219:121;;;;;;;;:::i;:::-;;;;;;;;;;;;;45184:157;;45352:23;45402:7;45411:5;45418:6;45426:13;45441:12;45455:11;45385:82;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;45385:82:0;;;;;;;;;;44146:1357;-1:-1:-1;;;;;;;;;44146:1357:0:o;2625:192::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2714:22:0;::::1;2706:73;;;::::0;-1:-1:-1;;;2706:73:0;;15852:2:1;2706:73:0::1;::::0;::::1;15834:21:1::0;15891:2;15871:18;;;15864:30;15930:34;15910:18;;;15903:62;-1:-1:-1;;;15981:18:1;;;15974:36;16027:19;;2706:73:0::1;15650:402:1::0;2706:73:0::1;2790:19;2800:8;2790:9;:19::i;:::-;2625:192:::0;:::o;22046:305::-;22148:4;-1:-1:-1;;;;;;22185:40:0;;-1:-1:-1;;;22185:40:0;;:105;;-1:-1:-1;;;;;;;22242:48:0;;-1:-1:-1;;;22242:48:0;22185:105;:158;;;-1:-1:-1;;;;;;;;;;4562:40:0;;;22307:36;4453:157;31926:174;32001:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32001:29:0;-1:-1:-1;;;;;32001:29:0;;;;;;;;:24;;32055:23;32001:24;32055:14;:23::i;:::-;-1:-1:-1;;;;;32046:46:0;;;;;;;;;;;31926:174;;:::o;28238:348::-;28331:4;28033:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28033:16:0;28348:73;;;;-1:-1:-1;;;28348:73:0;;17375:2:1;28348:73:0;;;17357:21:1;17414:2;17394:18;;;17387:30;17453:34;17433:18;;;17426:62;-1:-1:-1;;;17504:18:1;;;17497:42;17556:19;;28348:73:0;17173:408:1;28348:73:0;28432:13;28448:23;28463:7;28448:14;:23::i;:::-;28432:39;;28501:5;-1:-1:-1;;;;;28490:16:0;:7;-1:-1:-1;;;;;28490:16:0;;:51;;;;28534:7;-1:-1:-1;;;;;28510:31:0;:20;28522:7;28510:11;:20::i;:::-;-1:-1:-1;;;;;28510:31:0;;28490:51;:87;;;-1:-1:-1;;;;;;25330:25:0;;;25306:4;25330:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28545:32;28482:96;28238:348;-1:-1:-1;;;;28238:348:0:o;31230:578::-;31389:4;-1:-1:-1;;;;;31362:31:0;:23;31377:7;31362:14;:23::i;:::-;-1:-1:-1;;;;;31362:31:0;;31354:85;;;;-1:-1:-1;;;31354:85:0;;20525:2:1;31354:85:0;;;20507:21:1;20564:2;20544:18;;;20537:30;20603:34;20583:18;;;20576:62;-1:-1:-1;;;20654:18:1;;;20647:39;20703:19;;31354:85:0;20323:405:1;31354:85:0;-1:-1:-1;;;;;31458:16:0;;31450:65;;;;-1:-1:-1;;;31450:65:0;;16616:2:1;31450:65:0;;;16598:21:1;16655:2;16635:18;;;16628:30;16694:34;16674:18;;;16667:62;-1:-1:-1;;;16745:18:1;;;16738:34;16789:19;;31450:65:0;16414:400:1;31450:65:0;31528:39;31549:4;31555:2;31559:7;31528:20;:39::i;:::-;31632:29;31649:1;31653:7;31632:8;:29::i;:::-;-1:-1:-1;;;;;31674:15:0;;;;;;:9;:15;;;;;:20;;31693:1;;31674:15;:20;;31693:1;;31674:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31705:13:0;;;;;;:9;:13;;;;;:18;;31722:1;;31705:13;:18;;31722:1;;31705:18;:::i;:::-;;;;-1:-1:-1;;31734:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31734:21:0;-1:-1:-1;;;;;31734:21:0;;;;;;;;;31773:27;;31734:16;;31773:27;;;;;;;31230:578;;;:::o;29922:382::-;-1:-1:-1;;;;;30002:16:0;;29994:61;;;;-1:-1:-1;;;29994:61:0;;19034:2:1;29994:61:0;;;19016:21:1;;;19053:18;;;19046:30;19112:34;19092:18;;;19085:62;19164:18;;29994:61:0;18832:356:1;29994:61:0;28009:4;28033:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28033:16:0;:30;30066:58;;;;-1:-1:-1;;;30066:58:0;;16259:2:1;30066:58:0;;;16241:21:1;16298:2;16278:18;;;16271:30;16337;16317:18;;;16310:58;16385:18;;30066:58:0;16057:352:1;30066:58:0;30137:45;30166:1;30170:2;30174:7;30137:20;:45::i;:::-;-1:-1:-1;;;;;30195:13:0;;;;;;:9;:13;;;;;:18;;30212:1;;30195:13;:18;;30212:1;;30195:18;:::i;:::-;;;;-1:-1:-1;;30224:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30224:21:0;-1:-1:-1;;;;;30224:21:0;;;;;;;;30263:33;;30224:16;;;30263:33;;30224:16;;30263:33;29922:382;;:::o;2825:173::-;2900:6;;;-1:-1:-1;;;;;2917:17:0;;;-1:-1:-1;;;;;;2917:17:0;;;;;;;2950:40;;2900:6;;;2917:17;2900:6;;2950:40;;2881:16;;2950:40;2870:128;2825:173;:::o;27316:315::-;27473:28;27483:4;27489:2;27493:7;27473:9;:28::i;:::-;27520:48;27543:4;27549:2;27553:7;27562:5;27520:22;:48::i;:::-;27512:111;;;;-1:-1:-1;;;27512:111:0;;;;;;;:::i;12859:723::-;12915:13;13136:10;13132:53;;-1:-1:-1;;13163:10:0;;;;;;;;;;;;-1:-1:-1;;;13163:10:0;;;;;12859:723::o;13132:53::-;13210:5;13195:12;13251:78;13258:9;;13251:78;;13284:8;;;;:::i;:::-;;-1:-1:-1;13307:10:0;;-1:-1:-1;13315:2:0;13307:10;;:::i;:::-;;;13251:78;;;13339:19;13371:6;13361:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13361:17:0;;13339:39;;13389:154;13396:10;;13389:154;;13423:11;13433:1;13423:11;;:::i;:::-;;-1:-1:-1;13492:10:0;13500:2;13492:5;:10;:::i;:::-;13479:24;;:2;:24;:::i;:::-;13466:39;;13449:6;13456;13449:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;13449:56:0;;;;;;;;-1:-1:-1;13520:11:0;13529:2;13520:11;;:::i;:::-;;;13389:154;;42237:117;42321:11;;42315:31;;;-1:-1:-1;;;42315:31:0;;;;42282:13;;-1:-1:-1;;;;;42321:11:0;;42315:29;;:31;;;;;42321:11;;42315:31;;;;;;;42321:11;42315:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42315:31:0;;;;;;;;;;;;:::i;:::-;42308:38;;42237:117;:::o;37330:589::-;-1:-1:-1;;;;;37536:18:0;;37532:187;;37571:40;37603:7;38746:10;:17;;38719:24;;;;:15;:24;;;;;:44;;;38774:24;;;;;;;;;;;;38642:164;37571:40;37532:187;;;37641:2;-1:-1:-1;;;;;37633:10:0;:4;-1:-1:-1;;;;;37633:10:0;;37629:90;;37660:47;37693:4;37699:7;37660:32;:47::i;:::-;-1:-1:-1;;;;;37733:16:0;;37729:183;;37766:45;37803:7;37766:36;:45::i;37729:183::-;37839:4;-1:-1:-1;;;;;37833:10:0;:2;-1:-1:-1;;;;;37833:10:0;;37829:83;;37860:40;37888:2;37892:7;37860:27;:40::i;32665:799::-;32820:4;-1:-1:-1;;;;;32841:13:0;;5623:20;5671:8;32837:620;;32877:72;;-1:-1:-1;;;32877:72:0;;-1:-1:-1;;;;;32877:36:0;;;;;:72;;679:10;;32928:4;;32934:7;;32943:5;;32877:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32877:72:0;;;;;;;;-1:-1:-1;;32877:72:0;;;;;;;;;;;;:::i;:::-;;;32873:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33119:13:0;;33115:272;;33162:60;;-1:-1:-1;;;33162:60:0;;;;;;;:::i;33115:272::-;33337:6;33331:13;33322:6;33318:2;33314:15;33307:38;32873:529;-1:-1:-1;;;;;;33000:51:0;-1:-1:-1;;;33000:51:0;;-1:-1:-1;32993:58:0;;32837:620;-1:-1:-1;33441:4:0;32665:799;;;;;;:::o;39433:988::-;39699:22;39749:1;39724:22;39741:4;39724:16;:22::i;:::-;:26;;;;:::i;:::-;39761:18;39782:26;;;:17;:26;;;;;;39699:51;;-1:-1:-1;39915:28:0;;;39911:328;;-1:-1:-1;;;;;39982:18:0;;39960:19;39982:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40033:30;;;;;;:44;;;40150:30;;:17;:30;;;;;:43;;;39911:328;-1:-1:-1;40335:26:0;;;;:17;:26;;;;;;;;40328:33;;;-1:-1:-1;;;;;40379:18:0;;;;;:12;:18;;;;;:34;;;;;;;40372:41;39433:988::o;40716:1079::-;40994:10;:17;40969:22;;40994:21;;41014:1;;40994:21;:::i;:::-;41026:18;41047:24;;;:15;:24;;;;;;41420:10;:26;;40969:46;;-1:-1:-1;41047:24:0;;40969:46;;41420:26;;;;;;:::i;:::-;;;;;;;;;41398:48;;41484:11;41459:10;41470;41459:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41564:28;;;:15;:28;;;;;;;:41;;;41736:24;;;;;41729:31;41771:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40787:1008;;;40716:1079;:::o;38220:221::-;38305:14;38322:20;38339:2;38322:16;:20::i;:::-;-1:-1:-1;;;;;38353:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38398:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38220:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:336:1;78:5;107:52;123:35;151:6;123:35;:::i;:::-;107:52;:::i;:::-;98:61;;182:6;175:5;168:21;222:3;213:6;208:3;204:16;201:25;198:45;;;239:1;236;229:12;198:45;288:6;283:3;276:4;269:5;265:16;252:43;342:1;335:4;326:6;319:5;315:18;311:29;304:40;14:336;;;;;:::o;355:173::-;423:20;;-1:-1:-1;;;;;472:31:1;;462:42;;452:70;;518:1;515;508:12;452:70;355:173;;;:::o;533:186::-;592:6;645:2;633:9;624:7;620:23;616:32;613:52;;;661:1;658;651:12;613:52;684:29;703:9;684:29;:::i;:::-;674:39;533:186;-1:-1:-1;;;533:186:1:o;724:260::-;792:6;800;853:2;841:9;832:7;828:23;824:32;821:52;;;869:1;866;859:12;821:52;892:29;911:9;892:29;:::i;:::-;882:39;;940:38;974:2;963:9;959:18;940:38;:::i;:::-;930:48;;724:260;;;;;:::o;989:328::-;1066:6;1074;1082;1135:2;1123:9;1114:7;1110:23;1106:32;1103:52;;;1151:1;1148;1141:12;1103:52;1174:29;1193:9;1174:29;:::i;:::-;1164:39;;1222:38;1256:2;1245:9;1241:18;1222:38;:::i;:::-;1212:48;;1307:2;1296:9;1292:18;1279:32;1269:42;;989:328;;;;;:::o;1322:666::-;1417:6;1425;1433;1441;1494:3;1482:9;1473:7;1469:23;1465:33;1462:53;;;1511:1;1508;1501:12;1462:53;1534:29;1553:9;1534:29;:::i;:::-;1524:39;;1582:38;1616:2;1605:9;1601:18;1582:38;:::i;:::-;1572:48;;1667:2;1656:9;1652:18;1639:32;1629:42;;1722:2;1711:9;1707:18;1694:32;1749:18;1741:6;1738:30;1735:50;;;1781:1;1778;1771:12;1735:50;1804:22;;1857:4;1849:13;;1845:27;-1:-1:-1;1835:55:1;;1886:1;1883;1876:12;1835:55;1909:73;1974:7;1969:2;1956:16;1951:2;1947;1943:11;1909:73;:::i;:::-;1899:83;;;1322:666;;;;;;;:::o;1993:315::-;2058:6;2066;2119:2;2107:9;2098:7;2094:23;2090:32;2087:52;;;2135:1;2132;2125:12;2087:52;2158:29;2177:9;2158:29;:::i;:::-;2148:39;;2237:2;2226:9;2222:18;2209:32;2250:28;2272:5;2250:28;:::i;:::-;2297:5;2287:15;;;1993:315;;;;;:::o;2313:254::-;2381:6;2389;2442:2;2430:9;2421:7;2417:23;2413:32;2410:52;;;2458:1;2455;2448:12;2410:52;2481:29;2500:9;2481:29;:::i;:::-;2471:39;2557:2;2542:18;;;;2529:32;;-1:-1:-1;;;2313:254:1:o;2572:245::-;2639:6;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2740:9;2734:16;2759:28;2781:5;2759:28;:::i;2822:245::-;2880:6;2933:2;2921:9;2912:7;2908:23;2904:32;2901:52;;;2949:1;2946;2939:12;2901:52;2988:9;2975:23;3007:30;3031:5;3007:30;:::i;3072:249::-;3141:6;3194:2;3182:9;3173:7;3169:23;3165:32;3162:52;;;3210:1;3207;3200:12;3162:52;3242:9;3236:16;3261:30;3285:5;3261:30;:::i;3326:450::-;3395:6;3448:2;3436:9;3427:7;3423:23;3419:32;3416:52;;;3464:1;3461;3454:12;3416:52;3504:9;3491:23;3537:18;3529:6;3526:30;3523:50;;;3569:1;3566;3559:12;3523:50;3592:22;;3645:4;3637:13;;3633:27;-1:-1:-1;3623:55:1;;3674:1;3671;3664:12;3623:55;3697:73;3762:7;3757:2;3744:16;3739:2;3735;3731:11;3697:73;:::i;3781:635::-;3861:6;3914:2;3902:9;3893:7;3889:23;3885:32;3882:52;;;3930:1;3927;3920:12;3882:52;3963:9;3957:16;3996:18;3988:6;3985:30;3982:50;;;4028:1;4025;4018:12;3982:50;4051:22;;4104:4;4096:13;;4092:27;-1:-1:-1;4082:55:1;;4133:1;4130;4123:12;4082:55;4162:2;4156:9;4187:48;4203:31;4231:2;4203:31;:::i;4187:48::-;4258:2;4251:5;4244:17;4298:7;4293:2;4288;4284;4280:11;4276:20;4273:33;4270:53;;;4319:1;4316;4309:12;4270:53;4332:54;4383:2;4378;4371:5;4367:14;4362:2;4358;4354:11;4332:54;:::i;:::-;4405:5;3781:635;-1:-1:-1;;;;;3781:635:1:o;4421:180::-;4480:6;4533:2;4521:9;4512:7;4508:23;4504:32;4501:52;;;4549:1;4546;4539:12;4501:52;-1:-1:-1;4572:23:1;;4421:180;-1:-1:-1;4421:180:1:o;4606:257::-;4647:3;4685:5;4679:12;4712:6;4707:3;4700:19;4728:63;4784:6;4777:4;4772:3;4768:14;4761:4;4754:5;4750:16;4728:63;:::i;:::-;4845:2;4824:15;-1:-1:-1;;4820:29:1;4811:39;;;;4852:4;4807:50;;4606:257;-1:-1:-1;;4606:257:1:o;4868:185::-;4910:3;4948:5;4942:12;4963:52;5008:6;5003:3;4996:4;4989:5;4985:16;4963:52;:::i;:::-;5031:16;;;;;4868:185;-1:-1:-1;;4868:185:1:o;5058:973::-;5143:12;;5108:3;;5198:1;5218:18;;;;5271;;;;5298:61;;5352:4;5344:6;5340:17;5330:27;;5298:61;5378:2;5426;5418:6;5415:14;5395:18;5392:38;5389:161;;;5472:10;5467:3;5463:20;5460:1;5453:31;5507:4;5504:1;5497:15;5535:4;5532:1;5525:15;5389:161;5566:18;5593:104;;;;5711:1;5706:319;;;;5559:466;;5593:104;-1:-1:-1;;5626:24:1;;5614:37;;5671:16;;;;-1:-1:-1;5593:104:1;;5706:319;22692:1;22685:14;;;22729:4;22716:18;;5800:1;5814:165;5828:6;5825:1;5822:13;5814:165;;;5906:14;;5893:11;;;5886:35;5949:16;;;;5843:10;;5814:165;;;5818:3;;6008:6;6003:3;5999:16;5992:23;;5559:466;;;;;;;5058:973;;;;:::o;6434:1257::-;6805:3;6843:6;6837:13;6869:4;6882:51;6926:6;6921:3;6916:2;6908:6;6904:15;6882:51;:::i;:::-;6996:13;;6955:16;;;;7018:55;6996:13;6955:16;7040:15;;;7018:55;:::i;:::-;7140:13;;7095:20;;;7162:55;7140:13;7095:20;7184:15;;;7162:55;:::i;:::-;7284:13;;7239:20;;;7306:55;7284:13;7239:20;7328:15;;;7306:55;:::i;:::-;7428:13;;7383:20;;;7450:55;7428:13;7383:20;7472:15;;;7450:55;:::i;:::-;7572:13;;7527:20;;;7594:55;7572:13;7527:20;7616:15;;;7594:55;:::i;:::-;7665:20;;;;;6434:1257;-1:-1:-1;;;;;;;;;6434:1257:1:o;7696:2106::-;-1:-1:-1;;;8645:41:1;;8715:66;8711:1;8702:11;;8695:87;8812:34;8807:2;8798:12;;8791:56;8877:34;8872:2;8863:12;;8856:56;8942:34;8937:2;8928:12;;8921:56;9008:34;9002:3;8993:13;;8986:57;9074:34;9068:3;9059:13;;9052:57;9140:29;9134:3;9125:13;;9118:52;9193:13;;-1:-1:-1;;9215:61:1;9193:13;9263:3;9254:13;;9249:2;9237:15;;9215:61;:::i;:::-;9341:34;9335:3;9295:16;;;9327:12;;;9320:56;9406:34;9400:3;9392:12;;9385:56;9471:34;9465:3;9457:12;;9450:56;9536:34;9530:3;9522:12;;9515:56;-1:-1:-1;;;9595:3:1;9587:12;;9580:33;9629:167;9659:136;9689:105;9715:78;9745:47;9787:3;9779:12;;9771:6;9745:47;:::i;:::-;-1:-1:-1;;;6379:17:1;;6421:1;6412:11;;6314:115;9715:78;9707:6;9689:105;:::i;:::-;-1:-1:-1;;;6101:16:1;;6142:1;6133:11;;6036:114;9659:136;-1:-1:-1;;;6220:55:1;;6300:2;6291:12;;6155:154;9629:167;9622:174;7696:2106;-1:-1:-1;;;;;;7696:2106:1:o;10091:540::-;-1:-1:-1;;;10439:59:1;;10421:3;10517:47;10560:2;10551:12;;10543:6;10517:47;:::i;:::-;-1:-1:-1;;;10573:26:1;;10623:1;10615:10;;10091:540;-1:-1:-1;;;10091:540:1:o;10636:538::-;-1:-1:-1;;;10984:57:1;;10966:3;11060:47;11103:2;11094:12;;11086:6;11060:47;:::i;11179:750::-;11542:66;11537:3;11530:79;11639:66;11634:2;11629:3;11625:12;11618:88;11512:3;11735:6;11729:13;11751:60;11804:6;11799:2;11794:3;11790:12;11785:2;11777:6;11773:15;11751:60;:::i;:::-;-1:-1:-1;;;11870:2:1;11830:16;;;;11862:11;;;11855:41;-1:-1:-1;11920:2:1;11912:11;;11179:750;-1:-1:-1;11179:750:1:o;11934:847::-;-1:-1:-1;;;12431:45:1;;12413:3;12495:47;12538:2;12529:12;;12521:6;12495:47;:::i;:::-;-1:-1:-1;;;12558:2:1;12551:16;12596:6;12590:13;12612:60;12665:6;12661:1;12657:2;12653:10;12646:4;12638:6;12634:17;12612:60;:::i;:::-;-1:-1:-1;;;12730:1:1;12691:15;;;;12722:10;;;12715:34;12773:1;12765:10;;11934:847;-1:-1:-1;;;;11934:847:1:o;12994:488::-;-1:-1:-1;;;;;13263:15:1;;;13245:34;;13315:15;;13310:2;13295:18;;13288:43;13362:2;13347:18;;13340:34;;;13410:3;13405:2;13390:18;;13383:31;;;13188:4;;13431:45;;13456:19;;13448:6;13431:45;:::i;13766:632::-;13937:2;13989:21;;;14059:13;;13962:18;;;14081:22;;;13908:4;;13937:2;14160:15;;;;14134:2;14119:18;;;13908:4;14203:169;14217:6;14214:1;14211:13;14203:169;;;14278:13;;14266:26;;14347:15;;;;14312:12;;;;14239:1;14232:9;14203:169;;;-1:-1:-1;14389:3:1;;13766:632;-1:-1:-1;;;;;;13766:632:1:o;14595:219::-;14744:2;14733:9;14726:21;14707:4;14764:44;14804:2;14793:9;14789:18;14781:6;14764:44;:::i;15231:414::-;15433:2;15415:21;;;15472:2;15452:18;;;15445:30;15511:34;15506:2;15491:18;;15484:62;-1:-1:-1;;;15577:2:1;15562:18;;15555:48;15635:3;15620:19;;15231:414::o;19962:356::-;20164:2;20146:21;;;20183:18;;;20176:30;20242:34;20237:2;20222:18;;20215:62;20309:2;20294:18;;19962:356::o;21135:413::-;21337:2;21319:21;;;21376:2;21356:18;;;21349:30;21415:34;21410:2;21395:18;;21388:62;-1:-1:-1;;;21481:2:1;21466:18;;21459:47;21538:3;21523:19;;21135:413::o;22148:275::-;22219:2;22213:9;22284:2;22265:13;;-1:-1:-1;;22261:27:1;22249:40;;22319:18;22304:34;;22340:22;;;22301:62;22298:88;;;22366:18;;:::i;:::-;22402:2;22395:22;22148:275;;-1:-1:-1;22148:275:1:o;22428:186::-;22476:4;22509:18;22501:6;22498:30;22495:56;;;22531:18;;:::i;:::-;-1:-1:-1;22597:2:1;22576:15;-1:-1:-1;;22572:29:1;22603:4;22568:40;;22428:186::o;22745:128::-;22785:3;22816:1;22812:6;22809:1;22806:13;22803:39;;;22822:18;;:::i;:::-;-1:-1:-1;22858:9:1;;22745:128::o;22878:120::-;22918:1;22944;22934:35;;22949:18;;:::i;:::-;-1:-1:-1;22983:9:1;;22878:120::o;23003:125::-;23043:4;23071:1;23068;23065:8;23062:34;;;23076:18;;:::i;:::-;-1:-1:-1;23113:9:1;;23003:125::o;23133:258::-;23205:1;23215:113;23229:6;23226:1;23223:13;23215:113;;;23305:11;;;23299:18;23286:11;;;23279:39;23251:2;23244:10;23215:113;;;23346:6;23343:1;23340:13;23337:48;;;-1:-1:-1;;23381:1:1;23363:16;;23356:27;23133:258::o;23396:380::-;23475:1;23471:12;;;;23518;;;23539:61;;23593:4;23585:6;23581:17;23571:27;;23539:61;23646:2;23638:6;23635:14;23615:18;23612:38;23609:161;;;23692:10;23687:3;23683:20;23680:1;23673:31;23727:4;23724:1;23717:15;23755:4;23752:1;23745:15;23609:161;;23396:380;;;:::o;23781:135::-;23820:3;-1:-1:-1;;23841:17:1;;23838:43;;;23861:18;;:::i;:::-;-1:-1:-1;23908:1:1;23897:13;;23781:135::o;23921:112::-;23953:1;23979;23969:35;;23984:18;;:::i;:::-;-1:-1:-1;24018:9:1;;23921:112::o;24038:127::-;24099:10;24094:3;24090:20;24087:1;24080:31;24130:4;24127:1;24120:15;24154:4;24151:1;24144:15;24170:127;24231:10;24226:3;24222:20;24219:1;24212:31;24262:4;24259:1;24252:15;24286:4;24283:1;24276:15;24302:127;24363:10;24358:3;24354:20;24351:1;24344:31;24394:4;24391:1;24384:15;24418:4;24415:1;24408:15;24434:127;24495:10;24490:3;24486:20;24483:1;24476:31;24526:4;24523:1;24516:15;24550:4;24547:1;24540:15;24566:127;24627:10;24622:3;24618:20;24615:1;24608:31;24658:4;24655:1;24648:15;24682:4;24679:1;24672:15;24698:118;24784:5;24777:13;24770:21;24763:5;24760:32;24750:60;;24806:1;24803;24796:12;24821:131;-1:-1:-1;;;;;;24895:32:1;;24885:43;;24875:71;;24942:1;24939;24932:12

Swarm Source

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