ETH Price: $3,480.41 (+2.12%)
Gas: 6 Gwei

Token

Role (ROLE)
 

Overview

Max Total Supply

9,800 ROLE

Holders

2,618

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ROLE
0xd80775766186ef44c73422fdf97d92701c27f70e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Inspired by Loot, we believe that the NFT space should also form multiple building blocks like DeFi. In the DeFi space, multiple basic financial protocols can be combined into a complex decentralized financial ecosystem. The subsequent development of the NFT space will also be the same, Role and Loot both will become important "building blocks" to form the future Metaverse. ## Role is a seed, a seed account for Metaverse Game. **What is the difference between [Role] and [Loot]?** 1. Role is the account character, and Loot is the equipment worn by the character. 2. Role is created by users, while Loot is officially generated. With Role, players can choose their own gender, basic attributes (strength/dexterity, etc.), race, and alignment. Occupations (Warrior/Mage/Dragon Knight, etc.) and traits are randomly generated by the contract. Players can create their own stories, interpret the characters according to their traits and occupations.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Role

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-06
*/

/**
 *Submitted for verification at Etherscan.io on 2021-08-27
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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






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




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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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














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







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





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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 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 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(to).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);
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


contract Role is ERC721Enumerable, ReentrancyGuard, Ownable {

    struct SelfDecidedAttribute {
        uint8 gender;
        uint8 strength;
        uint8 dexterity;
        uint8 constitution;
        uint8 wisdom;
        uint8 charisma;
        uint8 intelligence;
        uint8 race;
        uint8 alignment;
    }
    
    mapping(uint256 => SelfDecidedAttribute) private attrsIndex;
    
    mapping(uint256 => mapping(uint256 => string[])) private mapList;

    string[] private genders = [
        "Male",
        "Female",
        "Unknown"
    ];
    
    string[] private races = [
        "Human",
        "Elf",
        "Orc",
        "Undead",
        "Demons",
        "Deity"
    ];
    
    string[] private alignments = [
        "Lawful Good",
        "Neutral Good",
        "Chaotic Good",
        "Lawful Neutral",
        "Neutral",
        "Chaotic Neutral",
        "Lawful Evil",
        "Neutral Evil",
        "Chaotic Evil"
    ];
    
    string[] private cike_golden = ["Justiciar of Metaverse","Metaverse Planeshifter"];
    string[] private cike_white = ["Rogue","Assassin","Shadowdancer","Guild Thief","Kishi Charger Kishi","Ninja Spy","Yakuza","Slaad Brooder","Orc Scout","Wild Scout","Nentyar Hunter"];
    string[] private cike_green = ["Hunter of the Dead","Perfect Wight","Sword Dancer","Windwalker","Foe Hunter","Dungeon Delver","Spymaster","Thief-Acrobat","Ghostwalker","Ninja of the Crescent Moon"];
    string[] private cike_blue = ["Lifedrinker","Shadow Adept","Mage-Killer","Bloodhound","Master of Flies","Red Avenger","Arachnemancer"];
    string[] private cike_orange = ["Disciple of Baalzebul","Disciple of Dispater","Forsaker","Bayushi Deceiver Bayushi","Darkmask","Void Incarnate","Mage Hunter"];
    string[] private cike_red = ["Shadowdance Assassin","Shadow Scout","Shapeshifter","Soulblade","Shadow Mind"];
    
    string[] private fs_golden = ["Red Wizard","Meta Nightcloak","Mystic Meta Wanderer","Metamind","Pale Master","Truth Seeker"];
    string[] private fs_white = ["Bard","Druid","Sorcerer","Wizard","Loremaster","Thrall of Demogorgon","Thrall of Grazt","Thrall of Jubilex","Thrall of Orcus","Ur-Priest","Vermin Lord","Horned Harbinger","Ocular Adept","Silverstar","Wear of Purple","Arcane Devotee","Guild Wizard of Waterdeep","Spelldancer","Spellfire Channeler","War Wizard of Cormyr","Bane of Infidels","Blighter","Void Disciple","Witch Hunter","ElvenHigh Mage","Emancipated Spawn","Illithid Savant","Sybil","Yuan-Ti Cultist","BlackFlame Zealot","Raumathari Battlemage","Talontar Blightlord","Beholder Mage","Runecaster","Zhentarim Skymage","Incantatrix","Master Harper"];
    string[] private fs_green = ["Arcane Trickster","Archmage","Dragon Disciple","Horizon Walker","Loremaster","A Guidebook to Clerics and Paladins","Divine Oracle","Sacred Exorcist","Warpriest","Wizard of High Sorcery","Heartwarder","Divine Disciple","Harper Scout","Hathran","Red Wizard","Runecaster","Harper Mage","Geomancer","Hexer","Oozemaster","Shifter","Fangof Lolth","Arcane Trickster","Bladesinger","Blood Magus","Entropist ","Fiend of Blasphemy","Fiend of Corruption ","Fiend of Possession","Zhentarim Skymage"];
    string[] private fs_blue = ["Hierophant","Mystic Theurge","Thaumaturgist","Demonologist","Disciple of Mephistopheles","Cosmic Descryer","Divine Emissary","Doomguide","Archmage","Bone Collector","Deathwarden Chanter","Eidoloncer core class","Henshin Mystic Henshin","Iaijutsu Master Iaijutsu","Mirumoto Niten Master Mirumoto Niten","Moto Avenger Moto","Siren","Candle Caster","Dragon Disciple","Elemental Savant","Mage of the Arcane Order","Doomdreamer","Mystic Theurge","Raumathari Battlemage","Ruby Disciple"];
    string[] private fs_orange = ["Diabolist","Disciple of Asmodeus","Disciple of Mammon","Dweomerkeeper","Elemental Archon","Goldeye","Ghost Slayer","Gnome Artificer","Incantatrix","Pyrokineticist","Spellsinger","Durthan","Nar Demonbinder","Telflammar Shadolord","Warpriest","Grim Psion","Lord of the Dead"];
    string[] private fs_red = ["Church Inquisitor","Master of Shrouds","Dreadmaster","Stormlord","Eye of Gruumsh","Queen of the Wild","Elven Bladesinger","Alienist","Mindbender","True Necromancer","Divine Agent","Sangehirn","Spellfire Hierophant"];
    
    string[] private ms_golden = ["Fatespinner"];
    string[] private ms_white = ["Harper","Cleric","Contemplative","ShintaoMonk","Warrior Skald"];
    string[] private ms_green = ["Hierophant","Virtuoso","Harper Priest","Hospitaler"];
    string[] private ms_blue = ["Virtuoso","Cancer Mage","Master Alchemist"];
    string[] private ms_orange = ["Acolyteof the Skin","KnightProtector of the Great Kingdom"];
    string[] private ms_red = ["High Proselytizer","Forest Master"];
    
    string[] private ss_golden = ["God Eater"];
    string[] private ss_white = ["Ranger","Arcane Archer","Mortal Hunter","PeerlessArcher"];
    string[] private ss_green = ["Orderof the Bow Initiate","Consecrated Harrier"];
    string[] private ss_blue = ["Arboreal Guardian","Deepwood Sniper"];
    string[] private ss_orange = ["HalflingWarsling Sniper"];
    string[] private ss_red = ["Exotic Weapon Master"];
    
    string[] private tk_golden = ["Master of the Metaverse"];
    string[] private tk_white = ["Dwarven Defender","Carven Defender","Guardian of the Road"];
    string[] private tk_green = ["Giant-Killer","Tribal Protector"];
    string[] private tk_blue = ["Orc Warlord","Techsmith"];
    string[] private tk_orange = ["Scaled Horror","People Champion"];
    string[] private tk_red = ["Master Arcane Artisan"];

    string[] private zs_golden = ["Auspician","Keshen Blademaster ","Warlord of Metaverse"];
    string[] private zs_red = ["Paladin","Holy Liberator","Divine Champion","Verdant Lord","EunuchWarlock","Gatecrasher","Planar Champion ","Spur the Lord ","Psychic Weapon Master"];
    string[] private zs_orange = ["Eldritch Knight","Templar","Knight of Neraka","Knight of Solamnia","Animal Lord","Bear Warrior","Maho-Bujin","Maho-Tsukai","Outlaw of the Crimson Road","Royal Explorer","Temple Raider of Olidammara","Shou Disciple","Thayan Slaver","Berserk","Soldier of Light ","Life Eater"];
    string[] private zs_blue = ["Knight of the Chalice","Knight of the Middle Circle","Sacred Fist","Agent Retriever","Divine Seeker","Eidolon core class","Watch Detective","Windrider","Battle Maiden","Blade Dancer","Survivor","Waverider","Horde Breaker","Knight Errant of Silverymoon","Dread Pirate","Spellsword","Wayferer Guide","Aglarondan Griffonrider","Runescarred Berserker"];
    string[] private zs_green = ["Warrior of Darkness","Legionnaire of Steel","Guardian Paramount","Union Sentinel","Frenzied Berserker","Tamer of Beasts","Tempest","Urban Ranger variant Ranger core class","DaidojiBodyguard Daidoji","TattooedMonk","Breachgnome","DwarvenBattlerager","GreatRift Skyguard","OrcWarlord","Masterof Chains","MasterSamurai","Ravager","Warmaster","WeaponMaster","Mindknight"];
    string[] private zs_white = ["Barbarian","Fighter","Monk","Blackguard","Duelist","Arachne","Strifeleader","Waveservant","Purple Dragon Knight","Hida DefenderHida","Mantis Mercenary","Shiba Protector","Weapon Master ","Slayer","Vigilante","Cavalier","Devoted Defender","Drunken Master","Duelist","Fist of Hextor","Gladiator","Halfling Outrider","Lasher","Thyan Knight"];
        
    string[] private traits = ["Administrator","Elusive Shadow","Gamer","Genius","Grey Eminence","Immortal","Midas Touched","Mystic","Brilliant Strategist","Charismatic Negotiator","Fortune Builder","Mastermind Theologian","Naive Appeaser","Naive Enthusiast","Nudist","Possessed","Righteous","Skilled Tactician","Tolerant","Amateurish Plotter","Ambitious","Architect","Architectural Visionary","Benevolent","Body Purist","Graceful","Misguided Warrior","Physician","Scholarly Theologian","Speed Demon","Theologian","Too Smart","Tough Soldier","Zealous","Arbitrary","Ascetic","Asexual","Babbling Buffoon","Bisexual","Bloodlust","Body Modder","Born Inthe Purple","Fertile","Fierce Negotiator","Gay","Giant","Gregarious","Hedonist","Idolizer","Iron Gut","Keen Hearing","Lefthanded","Light Eater","Low Thirst","Martial Cleric","Out Of Shape","Outdoorsman","Playful","Robust","Schemer","Scholar","Secretive","Seducer","Seductress","Shy","Slow Reader","Strategist","Sturdy","Tortured Artist","Underhanded Rogue","Wakeful","Well Advised","Well Connected","Zealot","Pyromaniac","Quick Sleeper","Restless Sleeper","Scarred High","Severely Injured","Short Sighted","Silver Tongue","Sleepyhead","Smoker","Socializer","Tactical Genius","Troubled Pregnancy","Trusting","Twin","Undergrounder","Underweight","Very Underweight","Weak Stomach","Willful","Wroth","Bastard","Child Ofconsort","Dwarf","Feeble","Fever","Food Poisoning","Hard Pregnancy","Harelip","Has Measles","Has Small Pox","Has Tuberculosis","Has Typhoid Fever","Impaler","Indolent","Indulgent","Infection","Infirm","Lisp","Loose Lips","Obese","One Eyed","One Handed","One Legged","Stout","Stressed","Syphilitic"];
    

    string[] private preffixes = ["Able","Aggressive","Alert","Ambitious","Attractive","Candid","Careful","Devoted","Dutiful","Easy-Going","Efficient","Expressive","Expressivity","Forceful","Forgetful","Frank","Frugal","Genteel","Gullible","Happy","Hard-Working","Initiative","Inventive","Lazy","Liberal","Modest","Obedient","Porting","Reasonable","Selfless","Sensible","Sensitive","Sincere","Skeptical","Smart","Sociable","Sporting","Steady","Straightforward","Strict",
    "Strong-Willed","Sympathetic","Systematic","Talented","Trustful","Understanding","Unselfish","Active","Adroit","Analytical","Apprehensive","Argumentative","Bad-Tempered","Bossy","Brave","Brilliant","Caring","Charitable","Cheerful","Childish","Comical","Conceited","Confident","Conscientious","Contemplative","Cooperative","Dashing","Dedicated","Demanding","Dependable","Depressing","Determined","Diplomatic","Disciplined","Disorganized","Energetic","Enthusiastic","Faithful",
    "Friendly","Funny","Generous","Hearty","Helpful","Helpless"];
    
    uint256[] private roleScoreMatch = [
        0,
        4,
        15,
        41,
        82,
        99
    ];
    
    uint256[] private roleColorMatch = [
        4,
        14,
        29,
        48,
        71,
        99
    ];
        
        
    uint256[] private traitColorMatch = [
        7,
        18,
        33,
        73,
        93,
        129
    ];
    
    
    function random(string memory input) internal pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input)));
    }
    
    function getGender(uint256 tokenId) public view returns (string memory) {
        return genders[attrsIndex[tokenId].gender];
    }
    
    function getStrength(uint256 tokenId) public view returns (string memory) {
        return toString(attrsIndex[tokenId].strength);
    }
    
    function getDexterity(uint256 tokenId) public view returns (string memory) {
        return toString(attrsIndex[tokenId].dexterity);
    }
    
    function getConstitution(uint256 tokenId) public view returns (string memory) {
        return toString(attrsIndex[tokenId].constitution);
    }
    
    function getWisdom(uint256 tokenId) public view returns (string memory) {
        return toString(attrsIndex[tokenId].wisdom);
    }
    
    function getIntelligence(uint256 tokenId) public view returns (string memory) {
        return toString(attrsIndex[tokenId].intelligence);
    }
    
    function getCharisma(uint256 tokenId) public view returns (string memory) {
        return toString(attrsIndex[tokenId].charisma);
    }

    function getRace(uint256 tokenId) public view returns (string memory) {
        return races[attrsIndex[tokenId].race];
    }
    
    function getAlignment(uint256 tokenId) public view returns (string memory) {
        return alignments[attrsIndex[tokenId].alignment];
    }

    function getOccupation(uint256 tokenId) public view returns (string memory) {
        return pluck1(tokenId);
    }
    
    //@return 1~6
    function getOccupationType(uint256 tokenId) public view returns (uint256) {
        uint256 rand = random(string(abi.encodePacked("Occupation", toString(tokenId))));
        uint256 score = rand % 100;
        
        uint i = 0;
        for(; i < roleScoreMatch.length; i++){
            if(score <= roleScoreMatch[i]){
                break;
            }
        }
        return i+1;
    }
    
    //@return 1~6
    function getOccupationColor(uint256 tokenId) public view returns (uint256) {
        uint256 rand2 = random(string(abi.encodePacked("color", toString(tokenId))));
        uint256 colorScore = rand2 % 100;
        uint j = 0;
        for(; j < roleColorMatch.length; j++){
            if(colorScore <= roleColorMatch[j]){
                break;
            }
        }
        return j+1;
    }
    
    
    function getTrait1(uint256 tokenId) public view returns (string memory) {
        return pluck2(tokenId, "Trait1");
    }
    
    function getTrait2(uint256 tokenId) public view returns (string memory) {
        return pluck2(tokenId, "Trait2");
    }
    
    function getTrait3(uint256 tokenId) public view returns (string memory) {
        return pluck2(tokenId, "Trait3");
    }
    
    function getTraitColor(uint256 tokenId, uint256 index) public view returns (string memory) {
        uint256 rand = random(string(abi.encodePacked("Trait", toString(index), toString(tokenId))));
        uint256 score = rand % traits.length;
        
        uint j = 0;
        for(; j < traitColorMatch.length; j++){
            if(score <= traitColorMatch[j]){
                break;
            }
        }
        return getColorFull(j+1);
    }
    
    function getColorFull(uint256 index) private pure returns  (string memory) {
        if(index == 1){
            return "#ffc000";
        }else if(index == 2){
            return "#c00000";
        }else if(index == 3){
            return "#ed7d31";
        }else if(index == 4){
            return "#5b9bd5";
        }else if(index == 5){
            return "#70ad47";
        }else{
            return "#ffffff";
        }
    }
    
    function pluck1(uint256 tokenId) internal view returns (string memory) {
        uint256 roleType = getOccupationType(tokenId);
        uint256 colorType = getOccupationColor(tokenId);
        string[] memory sourceArray = mapList[roleType][colorType];
        
        uint256 rand = random(string(abi.encodePacked("item", toString(tokenId))));
        string memory output = sourceArray[rand % sourceArray.length];
        
        string memory prefix = preffixes[rand % preffixes.length];
        output = string(abi.encodePacked(prefix, ' ', output));
        return output;
    }
    
    function pluck2(uint256 tokenId, string memory keyPrefix) internal view returns (string memory) {
        uint256 rand = random(string(abi.encodePacked(keyPrefix, toString(tokenId))));
        uint256 index = rand % traits.length;
        string memory output = string(abi.encodePacked('"', traits[index], '"'));
        return output;
    }
    
    function getIcon(uint256 tokenId) internal view returns (string memory) {
        string memory Assassin = '&#x25B2;';
        string memory Mage = '&#x203B;';
        string memory Hunter = '&#x2191;';
        string memory Priest = '&#x25CB;';
        string memory Tank = '&#x25C6;';
        string memory Warior = '&#x25A0;';
        
        string memory output="";
        uint256 typeIndex = getOccupationType(tokenId);

        if(typeIndex == 1){
            output = Tank;
        }else if (typeIndex == 2){
            output = Assassin;
        }else if (typeIndex == 3){
            output = Hunter;
        }else if (typeIndex == 4){
            output = Priest;
        }else if (typeIndex == 5){
            output = Mage;
        }else{
            output = Warior;
        }
        return output;
    }
    
    function getIconName(uint256 tokenId) internal view returns (string memory) {
        string memory Assassin = 'Assassin';
        string memory Mage = 'Mage';
        string memory Hunter = 'Hunter';
        string memory Priest = 'Priest';
        string memory Tank = 'Tank';
        string memory Warior = 'Warior';
        
        uint256 typeIndex = getOccupationType(tokenId);
        string memory output = "";
        if(typeIndex == 1){
            output = Tank;
        }else if (typeIndex == 2){
            output = Assassin;
        }else if (typeIndex == 3){
            output = Hunter;
        }else if (typeIndex == 4){
            output = Priest;
        }else if (typeIndex == 5){
            output = Mage;
        }else{
            output = Warior;
        }
        return output;
    }
    
    function getColorName(uint256 tokenId) internal view returns (string memory) {
        uint256 typeIndex = getOccupationColor(tokenId);
        if(typeIndex == 1){
            return "gold";
        }else if (typeIndex == 2){
            return "red";
        }else if (typeIndex == 3){
            return "orange";
        }else if (typeIndex == 4){
            return "blue";
        }else if (typeIndex == 5){
            return "green";
        }else{
            return "white";
        }
    }

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        string[38] memory parts;
        
        parts[0] = '<?xml version="1.0" encoding="UTF-8"?><svg width="750px" height="750px" viewBox="0 0 750 750" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><rect fill="#231D39" x="0" y="0" width="750" height="750"></rect><g transform="translate(60.000000, 35.000000)" fill="#FFFFFF" fill-rule="nonzero"><g transform="translate(0.000000, 15.000000)"><path d="M41.7518248,77.1077844 C39.1698869,73.5756487 36.8398454,69.9489022 34.7617003,66.2275449 C31.927866,60.9293413 29.3774152,55.4734531 27.1103478,49.8598802 L18.9866896,49.8598802 L18.9866896,77.1077844 L0,77.1077844 L0,1.89221557 L32.2112495,1.89221557 C35.0450837,1.95528942 37.878918,2.36526946 40.7127523,3.12215569 C44.1133534,4.13133733 47.2305711,5.77125749 50.0644053,8.04191617 C55.6061257,12.7093812 58.471447,18.6698603 58.6603693,25.9233533 C58.5973952,30.338523 57.4323744,34.3752495 55.165307,38.0335329 C52.5833691,41.9441118 49.214255,44.9716567 45.0579648,47.1161677 C47.7028768,52.0359281 50.5681981,56.798004 53.6539287,61.4023952 C57.2434521,66.7636727 60.9904108,71.9988024 64.8948046,77.1077844 L41.7518248,77.1077844 Z M18.9866896,36.2359281 L28.6217261,36.2359281 C31.6444826,36.299002 34.3208816,35.3844311 36.6509231,33.4922156 C38.6660942,31.6630739 39.7051667,29.3608782 39.7681408,26.5856287 C39.7051667,23.8734531 38.6031201,21.6027944 36.4620009,19.7736527 C34.1949334,18.0075848 31.6129956,17.093014 28.7161872,17.0299401 L18.9866896,17.0299401 L18.9866896,36.2359281 Z"></path><path d="M106.457707,20.057485 C110.173179,21.3189621 113.447832,23.2742515 116.281666,25.9233533 C119.052526,28.7616766 121.130671,32.041517 122.516101,35.7628743 C124.02748,39.9888224 124.783169,44.3409182 124.783169,48.8191617 C124.783169,53.360479 124.02748,57.7441118 122.516101,61.9700599 C121.130671,65.6914172 119.052526,68.9397206 116.281666,71.7149701 C113.447832,74.4271457 110.173179,76.3824351 106.457707,77.5808383 C103.371977,78.4638723 100.254759,78.9369261 97.1060541,79 C93.8943753,78.9369261 90.7456705,78.4638723 87.6599399,77.5808383 C83.9444683,76.3824351 80.6383283,74.4271457 77.74152,71.7149701 C74.9706598,68.9397206 72.8925147,65.6914172 71.5070846,61.9700599 C69.9957063,57.7441118 69.2715042,53.360479 69.3344783,48.8191617 C69.2715042,44.3409182 69.9957063,39.9888224 71.5070846,35.7628743 C72.8925147,32.041517 74.9706598,28.7616766 77.74152,25.9233533 C80.6383283,23.2742515 83.9444683,21.3189621 87.6599399,20.057485 C90.7456705,19.1744511 93.8943753,18.7013972 97.1060541,18.6383234 C100.254759,18.7013972 103.371977,19.1744511 106.457707,20.057485 Z M100.8845,62.7269461 C102.081008,61.8439122 103.088593,60.7401198 103.907256,59.4155689 C104.788894,57.7756487 105.418635,56.0095808 105.796479,54.1173653 C106.048376,52.3512974 106.205811,50.5852295 106.268785,48.8191617 C106.205811,47.1161677 106.048376,45.3816367 105.796479,43.6155689 C105.418635,41.7233533 104.788894,39.9572854 103.907256,38.3173653 C103.088593,36.9928144 102.081008,35.889022 100.8845,35.005988 C99.687992,34.2491018 98.4285101,33.8391218 97.1060541,33.7760479 C95.6576499,33.8391218 94.366681,34.2491018 93.2331473,35.005988 C91.9736654,35.889022 90.9345928,36.9928144 90.1159296,38.3173653 C89.2342923,39.9572854 88.6045513,41.7233533 88.2267067,43.6155689 C87.9748104,45.3816367 87.8488622,47.1161677 87.8488622,48.8191617 C87.8488622,50.5852295 87.9748104,52.3512974 88.2267067,54.1173653 C88.6045513,56.0095808 89.2342923,57.7756487 90.1159296,59.4155689 C90.9345928,60.8031936 91.9736654,61.906986 93.2331473,62.7269461 C94.366681,63.4838323 95.6576499,63.8622754 97.1060541,63.8622754 C98.4285101,63.8622754 99.687992,63.4838323 100.8845,62.7269461 Z"></path><path d="M162.756548,77.8646707 C158.978102,78.6215569 155.168169,79 151.32675,79 C148.303993,78.9369261 145.438672,78.3692615 142.730786,77.297006 C140.274796,76.1616766 138.196651,74.5532934 136.49635,72.4718563 C134.79605,70.1381238 133.631029,67.5205589 133.001288,64.6191617 C132.434521,62.0331337 132.182625,59.3840319 132.245599,56.6718563 L132.245599,-8.40312517e-15 L150.759983,-8.40312517e-15 L150.759983,52.3197605 C150.634035,54.653493 150.759983,56.9241517 151.137827,59.1317365 C151.389724,60.4562874 152.019465,61.5285429 153.02705,62.348503 C153.971662,63.1053892 155.073708,63.5784431 156.33319,63.7676647 C157.844568,64.0199601 159.387434,64.0830339 160.961786,63.9568862 L162.756548,77.8646707 Z"></path><path d="M184.765994,53.6443114 C185.206813,56.6087824 186.560756,59.0371257 188.827823,60.9293413 C190.150279,61.938523 191.598683,62.6954092 193.173036,63.2 C194.93631,63.7045908 196.762559,63.9253493 198.651782,63.8622754 C201.170746,63.8622754 203.658222,63.5153693 206.114212,62.8215569 C208.633176,62.1277445 211.057679,61.1816367 213.38772,59.9832335 L217.449549,72.4718563 C214.23787,74.742515 210.711321,76.4139721 206.869901,77.4862275 C203.091456,78.4954092 199.281523,79 195.440103,79 C191.031916,79 186.812652,78.2115768 182.78231,76.6347305 C179.129813,75.0578842 175.949621,72.8187625 173.241735,69.9173653 C170.596823,66.7636727 168.7076,63.2 167.574066,59.2263473 C166.692429,55.8203593 166.25161,52.3512974 166.25161,48.8191617 C166.188636,44.2778443 166.881351,39.8311377 168.329755,35.4790419 C169.715185,31.7576846 171.79333,28.5093812 174.564191,25.7341317 C177.460999,23.0850299 180.798626,21.1928144 184.577072,20.057485 C187.725776,19.1744511 190.968942,18.7013972 194.306569,18.6383234 C197.329326,18.7013972 200.289108,19.1744511 203.185917,20.057485 C206.649492,21.1928144 209.672248,23.053493 212.254186,25.639521 C214.836124,28.4147705 216.756834,31.6 218.016316,35.1952096 C219.338772,39.3580838 220,43.6155689 220,47.9676647 C220,49.9229541 219.937026,51.8151697 219.811078,53.6443114 L184.765994,53.6443114 Z M202.524689,42.8586826 C202.398741,40.4618762 201.580077,38.3489022 200.068699,36.5197605 C198.368398,34.7536926 196.32174,33.8391218 193.928725,33.7760479 C191.472735,33.9021956 189.363103,34.8167665 187.599828,36.5197605 C185.899528,38.2858283 184.923429,40.3988024 184.671533,42.8586826 L202.524689,42.8586826 Z"></path></g><polygon transform="translate(95.392136, 15.110538) rotate(-62.153664) translate(-95.392136, -15.110538) " points="89.0944127 -5.31770227 101.68986 -5.31770227 101.68986 35.5387792 89.0944127 35.5387792"></polygon></g><text id="Male-Demons-Chaotic" font-family="Georgia" font-size="28" font-weight="normal" line-spacing="44" fill="#FFFFFF"><tspan x="60" y="212">';
        parts[1] = getGender(tokenId);
        parts[2] = '</tspan><tspan x="60" y="256">';
        parts[3] = getRace(tokenId);
        parts[4] = '</tspan><tspan x="60" y="300">';
        parts[5] = getAlignment(tokenId);
        parts[6] = '</tspan><tspan x="60" y="344" fill="';
        parts[7] = getColorFull(getOccupationColor(tokenId));
        parts[8] = '">';
        parts[9] = getOccupation(tokenId);
        parts[10] = '  ';
        parts[11] = getIcon(tokenId);
        parts[12] = '</tspan><tspan x="60" y="388" fill="';
        parts[13] = getTraitColor(tokenId, 1);
        parts[14] = '">';
        parts[15] = getTrait1(tokenId);
        parts[16] = '</tspan><tspan x="60" y="432" fill="';
        parts[17] = getTraitColor(tokenId, 2);
        parts[18] = '">';
        parts[19] = getTrait2(tokenId);
        parts[20] = '</tspan><tspan x="60" y="476" fill="';
        parts[21] = getTraitColor(tokenId, 3);
        parts[22] = '">';
        parts[23] = getTrait3(tokenId);
        parts[24] = '</tspan></text><text id="Str-Dex-Con-Cha-int" font-family="Georgia" font-size="28" font-weight="normal" line-spacing="44" fill="#FFFFFF"><tspan x="522" y="216">Str</tspan><tspan x="522" y="260">Dex</tspan><tspan x="522" y="304">Con</tspan><tspan x="522" y="348">Cha</tspan><tspan x="522" y="392">Int</tspan><tspan x="522" y="436">Wis</tspan></text><text id="2-3-6-7-1-1" font-family="Georgia" font-size="28" font-weight="normal" line-spacing="44" fill="#FFFFFF"><tspan x="618" y="216">';
        parts[25] = getStrength(tokenId);
        parts[26] = '</tspan><tspan x="618" y="260">';
        parts[27] = getDexterity(tokenId);
        parts[28] = '</tspan><tspan x="618" y="304">';
        parts[29] = getConstitution(tokenId);
        parts[30] = '</tspan><tspan x="618" y="348">';
        parts[31] = getCharisma(tokenId);
        parts[32] = '</tspan><tspan x="618" y="392">';
        parts[33] = getIntelligence(tokenId);
        parts[34] = '</tspan><tspan x="618" y="436">';
        parts[35] = getWisdom(tokenId);
        parts[36] = '</tspan></text><line x1="490.5" y1="192.5" x2="490.5" y2="475.5" stroke="#979797" stroke-linecap="square"></line>';
        parts[37] = '</g></svg>'; 
       
        string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6]));
        output = string(abi.encodePacked(output, parts[7], parts[8],parts[9], parts[10], parts[11], parts[12], parts[13], parts[14]));
        output = string(abi.encodePacked(output, parts[15], parts[16],parts[17], parts[18], parts[19], parts[20], parts[21]));
        output = string(abi.encodePacked(output, parts[22], parts[23], parts[24],parts[25], parts[26], parts[27], parts[28]));
        output = string(abi.encodePacked(output, parts[29], parts[30], parts[31],parts[32], parts[33], parts[34]));
        output = string(abi.encodePacked(output, parts[35], parts[36], parts[37]));
        
        string memory atrrOutput = makeAttributeParts(getGender(tokenId), getRace(tokenId), getAlignment(tokenId), getIconName(tokenId), getColorName(tokenId));
        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Role #', toString(tokenId), '", "description": "Role is a seed, a seed account for Metaverse Game.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"', ',"attributes":', atrrOutput, '}'))));
        output = string(abi.encodePacked('data:application/json;base64,', json));

        return output;
    }

    function makeAttributeParts(string memory gender, string memory race, string memory ali, string memory flag, string memory color) internal pure returns (string memory){
        string[11] memory attrParts;
        attrParts[0] = '[{ "trait_type": "Gender", "value": "';
        attrParts[1] = gender;
        attrParts[2] = '" }, { "trait_type": "OccupatColor", "value": "';
        attrParts[3] = color;
        attrParts[4] = '" }, { "trait_type": "Race", "value": "';
        attrParts[5] = race;
        attrParts[6] = '" }, { "trait_type": "Alignment", "value": "';
        attrParts[7] = ali;
        attrParts[8] = '" }, { "trait_type": "OccupatFlag", "value": "';
        attrParts[9] = flag;
        attrParts[10] = '" }]';
        
        string memory atrrOutput = string(abi.encodePacked(attrParts[0], attrParts[1], attrParts[2], attrParts[3], attrParts[4], attrParts[5], attrParts[6], attrParts[7]));
        atrrOutput = string(abi.encodePacked(atrrOutput, attrParts[8], attrParts[9], attrParts[10]));
        return atrrOutput;
    }

    function claim(uint256 tokenId, uint256 genderId, uint256 raceId, uint256 alignId, uint256 strNum, uint256 dexNum, uint256 conNum, uint256 wisNum, uint256 chaNum, uint256 intNum) public nonReentrant {
        require(tokenId > 0 && tokenId <= 9800, "Token ID invalid");
        require(!_exists(tokenId), "Token ID invalid");
        require(genderId < genders.length, "genderId invalid");
        require(strNum + dexNum+ conNum+ wisNum+ chaNum+ intNum <= 30, "attributes num invalid");
        require(raceId < races.length, "raceId invalid");
        require(alignId < alignments.length, "alignId invalid");
        
        attrsIndex[tokenId].gender = uint8(genderId);
        attrsIndex[tokenId].strength = uint8(strNum);
        attrsIndex[tokenId].dexterity = uint8(dexNum);
        attrsIndex[tokenId].constitution = uint8(conNum);
        attrsIndex[tokenId].wisdom = uint8(wisNum);
        attrsIndex[tokenId].charisma = uint8(chaNum);
        attrsIndex[tokenId].intelligence = uint8(intNum);
        attrsIndex[tokenId].race = uint8(raceId);
        attrsIndex[tokenId].alignment = uint8(alignId);
        
        _safeMint(_msgSender(), tokenId);
    }
    
    function ownerClaim(uint256 tokenId, uint256 genderId, uint256 raceId, uint256 alignId, uint256 strNum, uint256 dexNum, uint256 conNum, uint256 wisNum, uint256 chaNum, uint256 intNum) public nonReentrant onlyOwner {
        require(tokenId > 9800 && tokenId < 10000, "Token ID invalid");
        require(!_exists(tokenId), "Token ID invalid");
        require(genderId < genders.length, "genderId invalid");
        require(strNum + dexNum+ conNum+ wisNum+ chaNum+ intNum <= 30, "attributes num invalid");
        require(raceId < races.length, "raceId invalid");
        require(alignId < alignments.length, "alignId invalid");
        
        attrsIndex[tokenId].gender = uint8(genderId);
        attrsIndex[tokenId].strength = uint8(strNum);
        attrsIndex[tokenId].dexterity = uint8(dexNum);
        attrsIndex[tokenId].constitution = uint8(conNum);
        attrsIndex[tokenId].wisdom = uint8(wisNum);
        attrsIndex[tokenId].charisma = uint8(chaNum);
        attrsIndex[tokenId].intelligence = uint8(intNum);
        attrsIndex[tokenId].race = uint8(raceId);
        attrsIndex[tokenId].alignment = uint8(alignId);
        
        _safeMint(owner(), tokenId);
    }
    
    function toString(uint256 value) internal pure returns (string memory) {
    // Inspired by OraclizeAPI's implementation - MIT license
    // 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);
    }
    
    constructor() ERC721("Role", "ROLE") Ownable() {
        mapList[1][1] = tk_golden;
		mapList[1][2] = tk_red;
		mapList[1][3] = tk_orange;
		mapList[1][4] = tk_blue;
		mapList[1][5] = tk_green;
		mapList[1][6] = tk_white;
		
		mapList[2][1] = cike_golden;
		mapList[2][2] = cike_red;
		mapList[2][3] = cike_orange;
		mapList[2][4] = cike_blue;
		mapList[2][5] = cike_green;
		mapList[2][6] = cike_white;
		
		mapList[3][1] = ss_golden;
		mapList[3][2] = ss_red;
		mapList[3][3] = ss_orange;
		mapList[3][4] = ss_blue;
		mapList[3][5] = ss_green;
		mapList[3][6] = ss_white;
		
		mapList[4][1] = ms_golden;
		mapList[4][2] = ms_red;
		mapList[4][3] = ms_orange;
		mapList[4][4] = ms_blue;
		mapList[4][5] = ms_green;
		mapList[4][6] = ms_white;
		
		mapList[5][1] = fs_golden;
		mapList[5][2] = fs_red;
		mapList[5][3] = fs_orange;
		mapList[5][4] = fs_blue;
		mapList[5][5] = fs_green;
		mapList[5][6] = fs_white;
		
		mapList[6][1] = zs_golden;
		mapList[6][2] = zs_red;
		mapList[6][3] = zs_orange;
		mapList[6][4] = zs_blue;
		mapList[6][5] = zs_green;
		mapList[6][6] = zs_white;
    }
}


library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"genderId","type":"uint256"},{"internalType":"uint256","name":"raceId","type":"uint256"},{"internalType":"uint256","name":"alignId","type":"uint256"},{"internalType":"uint256","name":"strNum","type":"uint256"},{"internalType":"uint256","name":"dexNum","type":"uint256"},{"internalType":"uint256","name":"conNum","type":"uint256"},{"internalType":"uint256","name":"wisNum","type":"uint256"},{"internalType":"uint256","name":"chaNum","type":"uint256"},{"internalType":"uint256","name":"intNum","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getAlignment","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCharisma","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getConstitution","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getDexterity","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getGender","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getIntelligence","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOccupation","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOccupationColor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOccupationType","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRace","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getStrength","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTrait1","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTrait2","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTrait3","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getTraitColor","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getWisdom","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":[],"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"},{"internalType":"uint256","name":"genderId","type":"uint256"},{"internalType":"uint256","name":"raceId","type":"uint256"},{"internalType":"uint256","name":"alignId","type":"uint256"},{"internalType":"uint256","name":"strNum","type":"uint256"},{"internalType":"uint256","name":"dexNum","type":"uint256"},{"internalType":"uint256","name":"conNum","type":"uint256"},{"internalType":"uint256","name":"wisNum","type":"uint256"},{"internalType":"uint256","name":"chaNum","type":"uint256"},{"internalType":"uint256","name":"intNum","type":"uint256"}],"name":"ownerClaim","outputs":[],"stateMutability":"nonpayable","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600460e0908152634d616c6560e01b61010052608090815260066101209081526546656d616c6560d01b6101405260a0526101a06040526007610160908152662ab735b737bbb760c91b6101805260c0526200006090600e90600362006100565b506040805161010081018252600560c0820181815264243ab6b0b760d91b60e084015282528251808401845260038082526222b63360e91b6020838101919091528085019290925284518086018652908152624f726360e81b818301528385015283518085018552600680825265155b9919585960d21b828401526060850191909152845180860186528181526544656d6f6e7360d01b818401526080850152845180860190955291845264446569747960d81b9084015260a08201929092526200012f91600f919062006164565b506040805161016081018252600b61012082018181526a13185dd99d5b0811dbdbd960aa1b610140840152825282518084018452600c8082526b13995d5d1c985b0811dbdbd960a21b60208381019190915280850192909252845180860186528181526b10da185bdd1a58c811dbdbd960a21b818401528486015284518086018652600e81526d13185dd99d5b0813995d5d1c985b60921b81840152606085015284518086018652600781526613995d5d1c985b60ca1b81840152608085015284518086018652600f81526e10da185bdd1a58c813995d5d1c985b608a1b8184015260a0850152845180860186529283526a13185dd99d5b08115d9a5b60aa1b8383015260c0840192909252835180850185528281526b13995d5d1c985b08115d9a5b60a21b8183015260e084015283518085019094529083526b10da185bdd1a58c8115d9a5b60a21b9083015261010081019190915262000296906010906009620061b6565b506040805160808101825260168183018181527f4a7573746963696172206f66204d65746176657273650000000000000000000060608401528252825180840190935282527f4d657461766572736520506c616e6573686966746572000000000000000000006020838101919091528101919091526200031b90601190600262006208565b50604080516101a0810182526005610160820190815264526f67756560d81b610180830152815281518083018352600881526720b9b9b0b9b9b4b760c11b6020828101919091528083019190915282518084018452600c81526b29b430b237bbb230b731b2b960a11b818301528284015282518084018452600b8082526a23bab4b632102a3434b2b360a91b82840152606084019190915283518085018552601381527f4b697368692043686172676572204b6973686900000000000000000000000000818401526080840152835180850185526009808252684e696e6a612053707960b81b8285015260a085019190915284518086018652600681526559616b757a6160d01b8185015260c085015284518086018652600d81526c29b630b0b210213937b7b232b960991b8185015260e0850152845180860186529081526813dc98c814d8dbdd5d60ba1b8184015261010084015283518085018552600a81526915da5b190814d8dbdd5d60b21b818401526101208401528351808501909452600e84526d2732b73a3cb0b910243ab73a32b960911b91840191909152610140820192909252620004d191601291906200625a565b5060408051610180810182526012610140820190815271121d5b9d195c881bd9881d1a19481119585960721b610160830152815281518083018352600d8082526c14195c999958dd0815da59da1d609a1b6020838101919091528084019290925283518085018552600c81526b29bbb7b932102230b731b2b960a11b818401528385015283518085018552600a808252692bb4b7323bb0b635b2b960b11b82850152606085019190915284518086018652818152692337b290243ab73a32b960b11b81850152608085015284518086018652600e81526d223ab733b2b7b7102232b63b32b960911b8185015260a085015284518086018652600981526829b83cb6b0b9ba32b960b91b8185015260c0850152845180860186529182526c151a1a59598b5058dc9bd8985d609a1b8284015260e084019190915283518085018552600b81526a23b437b9ba3bb0b635b2b960a91b818401526101008401528351808501909452601a84527f4e696e6a61206f6620746865204372657363656e74204d6f6f6e000000000000918401919091526101208201929092526200067a9160139190620062ac565b506040805161012081018252600b60e082018181526a2634b332b23934b735b2b960a91b610100840152825282518084018452600c81526b14da18591bddc81059195c1d60a21b60208281019190915280840191909152835180850185528281526a26b0b3b296a5b4b63632b960a91b818301528385015283518085018552600a815269109b1bdbd91a1bdd5b9960b21b81830152606084015283518085018552600f81526e4d6173746572206f6620466c69657360881b818301526080840152835180850185529182526a2932b21020bb32b733b2b960a91b8282015260a08301919091528251808401909352600d83526c20b930b1b43732b6b0b731b2b960991b9083015260c081019190915262000799906014906007620062fe565b506040805161012081018252601560e082018181527f4469736369706c65206f66204261616c7a6562756c0000000000000000000000610100840152825282518084018452601481527f4469736369706c65206f6620446973706174657200000000000000000000000060208281019190915280840191909152835180850185526008808252672337b939b0b5b2b960c11b828401528486019190915284518086018652601881527f426179757368692044656365697665722042617975736869000000000000000081840152606085015284518086018652908152674461726b6d61736b60c01b81830152608084015283518085018552600e81526d566f696420496e6361726e61746560901b8183015260a08401528351808501909452600b84526a26b0b3b290243ab73a32b960a91b9084015260c0820192909252620008e591906007620062fe565b506040805160e081018252601460a082019081527f536861646f7764616e636520417373617373696e00000000000000000000000060c0830152815281518083018352600c8082526b14da18591bddc814d8dbdd5d60a21b60208381019190915280840192909252835180850185529081526b29b430b832b9b434b33a32b960a11b8183015282840152825180840184526009815268536f756c626c61646560b81b8183015260608301528251808401909352600b83526a14da18591bddc8135a5b9960aa1b908301526080810191909152620009c790601690600562006350565b506040805161010081018252600a60c08201908152691499590815da5e985c9960b21b60e0830152815281518083018352600f81526e4d657461204e69676874636c6f616b60881b6020828101919091528083019190915282518084018452601481527f4d7973746963204d6574612057616e6465726572000000000000000000000000818301528284015282518084018452600881526713595d185b5a5b9960c21b81830152606083015282518084018452600b81526a2830b6329026b0b9ba32b960a91b8183015260808301528251808401909352600c83526b2a393aba341029b2b2b5b2b960a11b9083015260a081019190915262000ace90601790600662006164565b50604051806104a001604052806040518060400160405280600481526020016310985c9960e21b815250815260200160405180604001604052806005815260200164111c9d5a5960da1b81525081526020016040518060400160405280600881526020016729b7b931b2b932b960c11b81525081526020016040518060400160405280600681526020016515da5e985c9960d21b81525081526020016040518060400160405280600a8152602001692637b932b6b0b9ba32b960b11b81525081526020016040518060400160405280601481526020017f546872616c6c206f662044656d6f676f72676f6e00000000000000000000000081525081526020016040518060400160405280600f81526020016e151a1c985b1b081bd98811dc985e9d608a1b8152508152602001604051806040016040528060118152602001700a8d0e4c2d8d840decc4094eac4d2d8caf607b1b81525081526020016040518060400160405280600f81526020016e546872616c6c206f66204f7263757360881b815250815260200160405180604001604052806009815260200168155c8b541c9a595cdd60ba1b81525081526020016040518060400160405280600b81526020016a15995c9b5a5b88131bdc9960aa1b81525081526020016040518060400160405280601081526020016f2437b93732b2102430b93134b733b2b960811b81525081526020016040518060400160405280600c81526020016b13d8dd5b185c881059195c1d60a21b81525081526020016040518060400160405280600a81526020016929b4b63b32b939ba30b960b11b81525081526020016040518060400160405280600e81526020016d57656172206f6620507572706c6560901b81525081526020016040518060400160405280600e81526020016d417263616e65204465766f74656560901b81525081526020016040518060400160405280601981526020017f4775696c642057697a617264206f66205761746572646565700000000000000081525081526020016040518060400160405280600b81526020016a29b832b6363230b731b2b960a91b81525081526020016040518060400160405280601381526020017f5370656c6c66697265204368616e6e656c65720000000000000000000000000081525081526020016040518060400160405280601481526020017f5761722057697a617264206f6620436f726d797200000000000000000000000081525081526020016040518060400160405280601081526020016f42616e65206f6620496e666964656c7360801b815250815260200160405180604001604052806008815260200167213634b3b43a32b960c11b81525081526020016040518060400160405280600d81526020016c566f6964204469736369706c6560981b81525081526020016040518060400160405280600c81526020016b2bb4ba31b410243ab73a32b960a11b81525081526020016040518060400160405280600e81526020016d456c76656e48696768204d61676560901b81525081526020016040518060400160405280601181526020017022b6b0b731b4b830ba32b21029b830bbb760791b81525081526020016040518060400160405280600f81526020016e125b1b1a5d1a1a590814d85d985b9d608a1b81525081526020016040518060400160405280600581526020016414de589a5b60da1b81525081526020016040518060400160405280600f81526020016e165d585b8b551a4810dd5b1d1a5cdd608a1b815250815260200160405180604001604052806011815260200170109b1858dad19b185b59481699585b1bdd607a1b81525081526020016040518060400160405280601581526020017f5261756d61746861726920426174746c656d616765000000000000000000000081525081526020016040518060400160405280601381526020017f54616c6f6e74617220426c696768746c6f72640000000000000000000000000081525081526020016040518060400160405280600d81526020016c4265686f6c646572204d61676560981b81525081526020016040518060400160405280600a815260200169293ab732b1b0b9ba32b960b11b8152508152602001604051806040016040528060118152602001705a68656e746172696d20536b796d61676560781b81525081526020016040518060400160405280600b81526020016a092dcc6c2dce8c2e8e4d2f60ab1b81525081526020016040518060400160405280600d81526020016c26b0b9ba32b9102430b93832b960991b815250815250601890602562001164929190620063a2565b50604051806103c001604052806040518060400160405280601081526020016f20b931b0b732902a3934b1b5b9ba32b960811b815250815260200160405180604001604052806008815260200167417263686d61676560c01b81525081526020016040518060400160405280600f81526020016e447261676f6e204469736369706c6560881b81525081526020016040518060400160405280600e81526020016d2437b934bd37b7102bb0b635b2b960911b81525081526020016040518060400160405280600a8152602001692637b932b6b0b9ba32b960b11b81525081526020016040518060600160405280602381526020016200c6f0602391398152604080518082018252600d81526c446976696e65204f7261636c6560981b6020828101919091528084019190915281518083018352600f8082526e14d858dc995908115e1bdc98da5cdd608a1b82840152838501919091528251808401845260098082526815d85c9c1c9a595cdd60ba1b82850152606086019190915283518085018552601681527f57697a617264206f66204869676820536f72636572790000000000000000000081850152608086015283518085018552600b8082526a2432b0b93a3bb0b93232b960a91b8286015260a0870191909152845180860186529283526e446976696e65204469736369706c6560881b8385015260c086019290925283518085018552600c8082526b12185c9c195c8814d8dbdd5d60a21b8286015260e0870191909152845180860186526007808252662430ba343930b760c91b8287015261010088019190915285518087018752600a808252691499590815da5e985c9960b21b828801526101208901919091528651808801885281815269293ab732b1b0b9ba32b960b11b81880152610140890152865180880188528581526a486172706572204d61676560a81b81880152610160890152865180880188529384526823b2b7b6b0b731b2b960b91b848701526101808801939093528551808701875260058152642432bc32b960d91b818701526101a0880152855180870187528381526927b7bd32b6b0b9ba32b960b11b818701526101c0880152855180870187529081526629b434b33a32b960c91b818601526101e0870152845180860186529081526b08cc2dccedecc4098ded8e8d60a31b8185015261020086015283518085018552601081526f20b931b0b732902a3934b1b5b9ba32b960811b81850152610220860152835180850185528281526a213630b232b9b4b733b2b960a91b81850152610240860152835180850185529182526a426c6f6f64204d6167757360a81b828401526102608501919091528251808401845290815269022b73a3937b834b9ba160b51b818301526102808401528151808301835260128152714669656e64206f6620426c61737068656d7960701b818301526102a084015281518083018352601481527f4669656e64206f6620436f7272757074696f6e20000000000000000000000000818301526102c084015281518083018352601381527f4669656e64206f6620506f7373657373696f6e00000000000000000000000000818301526102e0840152815180830190925260118252705a68656e746172696d20536b796d61676560781b90820152610300909101526200162a90601990601e620063f4565b506040805161036081018252600a610320820190815269121a595c9bdc1a185b9d60b21b610340830152815281518083018352600e8082526d4d7973746963205468657572676560901b6020838101919091528084019290925283518085018552600d81526c151a185d5b585d1d5c99da5cdd609a1b818401528385015283518085018552600c81526b11195b5bdb9bdb1bd9da5cdd60a21b8184015260608085019190915284518086018652601a81527f4469736369706c65206f66204d6570686973746f7068656c657300000000000081850152608085015284518086018652600f8082526e21b7b9b6b4b1902232b9b1b93cb2b960891b8286015260a0860191909152855180870187529081526e446976696e6520456d69737361727960881b8185015260c0850152845180860186526009815268446f6f6d677569646560b81b8185015260e0850152845180860186526008815267417263686d61676560c01b81850152610100850152845180860186529182526d2137b7329021b7b63632b1ba37b960911b8284015261012084019190915283518085018552601381527f446561746877617264656e204368616e746572000000000000000000000000008184015261014084015283518085018552601581527f4569646f6c6f6e63657220636f726520636c61737300000000000000000000008184015261016084015283518085018552601681527f48656e7368696e204d79737469632048656e7368696e000000000000000000008184015261018084015283518085018552601881527f4961696a75747375204d6173746572204961696a757473750000000000000000818401526101a08401528351908101909352602480845291926101c084019290916200c60690830139815260408051808201825260118152704d6f746f204176656e676572204d6f746f60781b6020828101919091528084019190915281518083018352600581526429b4b932b760d91b818301528284015281518083018352600d8082526c21b0b73236329021b0b9ba32b960991b82840152606085019190915282518084018452600f81526e447261676f6e204469736369706c6560881b81840152608085015282518084018452601081526f115b195b595b9d185b0814d85d985b9d60821b8184015260a085015282518084018452601881527f4d616765206f662074686520417263616e65204f7264657200000000000000008184015260c085015282518084018452600b81526a2237b7b6b23932b0b6b2b960a91b8184015260e085015282518084018452600e81526d4d7973746963205468657572676560901b8184015261010085015282518084018452601581527f5261756d61746861726920426174746c656d616765000000000000000000000081840152610120850152825180840190935282526c52756279204469736369706c6560981b908201526101409091015262001a6b90601a90601962006446565b5060408051610260810182526009610220820181815268111a58589bdb1a5cdd60ba1b61024084015282528251808401845260148082527f4469736369706c65206f662041736d6f64657573000000000000000000000000602083810191909152808501929092528451808601865260128152712234b9b1b4b836329037b31026b0b6b6b7b760711b818401528486015284518086018652600d81526c223bb2b7b6b2b935b2b2b832b960991b8184015260608501528451808601865260108082526f22b632b6b2b73a30b61020b931b437b760811b82850152608086019190915285518087018752600780825266476f6c6465796560c81b8286015260a087019190915286518088018852600c81526b23b437b9ba1029b630bcb2b960a11b8186015260c087015286518088018852600f8082526e23b737b6b29020b93a34b334b1b2b960891b8287015260e088019190915287518089018952600b8082526a092dcc6c2dce8c2e8e4d2f60ab1b828801526101008901919091528851808a018a52600e81526d141e5c9bdada5b995d1a58da5cdd60921b818801526101208901528851808a018a529081526a29b832b63639b4b733b2b960a91b818701526101408801528751808901895291825266223ab93a3430b760c91b82860152610160870191909152865180880188529081526e2730b9102232b6b7b73134b73232b960891b81850152610180860152855180870187529182527f54656c666c616d6d617220536861646f6c6f7264000000000000000000000000828401526101a0850191909152845180860186529283526815d85c9c1c9a595cdd60ba1b838301526101c084019290925283518085018552600a81526923b934b6902839b4b7b760b11b818301526101e084015283518085019094529083526f131bdc99081bd9881d1a19481119585960821b9083015261020081019190915262001d3590601b90601162006498565b50604080516101e08101825260116101a082018181527021b43ab931b41024b738bab4b9b4ba37b960791b6101c0840152825282518084018452818152704d6173746572206f66205368726f75647360781b6020828101919091528084019190915283518085018552600b81526a223932b0b236b0b9ba32b960a91b81830152838501528351808501855260098082526814dd1bdc9b5b1bdc9960ba1b82840152606085019190915284518086018652600e81526d08af2ca40decc408ee4eaeadae6d60931b8184015260808501528451808601865283815270145d59595b881bd9881d1a194815da5b19607a1b8184015260a0850152845180860186529283527022b63b32b710213630b232b9b4b733b2b960791b8383015260c0840192909252835180850185526008815267105b1a595b9a5cdd60c21b8183015260e084015283518085018552600a81526926b4b7323132b73232b960b11b8183015261010084015283518085018552601081526f2a393ab2902732b1b937b6b0b731b2b960811b8183015261012084015283518085018552600c81526b111a5d9a5b99481059d95b9d60a21b81830152610140840152835180850185529182526829b0b733b2b434b93760b91b828201526101608301919091528251808401909352601483527f5370656c6c6669726520486965726f7068616e740000000000000000000000009083015261018081019190915262001f5690601c90600d620064ea565b5060408051606081018252600b602082019081526a2330ba32b9b834b73732b960a91b9282019290925290815262001f9390601d9060016200653c565b506040805160e081018252600660a08201818152652430b93832b960d11b60c084015282528251808401845290815265436c6572696360d01b6020828101919091528083019190915282518084018452600d8082526c436f6e74656d706c617469766560981b828401528385019190915283518085018552600b81526a5368696e74616f4d6f6e6b60a81b818401526060840152835180850190945283526c15d85c9c9a5bdc8814dad85b19609a1b9083015260808101919091526200205e90601e90600562006350565b506040805160c081018252600a6080820181815269121a595c9bdc1a185b9d60b21b60a0840152825282518084018452600881526756697274756f736f60c01b6020828101919091528084019190915283518085018552600d81526c12185c9c195c88141c9a595cdd609a1b81830152838501528351808501909452908352692437b9b834ba30b632b960b11b9083015260608101919091526200210790601f9060046200658e565b506040805160a0810182526008606082019081526756697274756f736f60c01b6080830152815281518083018352600b81526a43616e636572204d61676560a81b6020828101919091528083019190915282518084018452601081526f13585cdd195c88105b18da195b5a5cdd60821b8183015292820192909252620021909190600362006100565b5060405180604001604052806040518060400160405280601281526020017120b1b7b63cba32b7b3103a34329029b5b4b760711b81525081526020016040518060600160405280602481526020016200c713602491399052620021f890602190600262006208565b50604080516080810182526011818301908152702434b3b410283937b9b2b63cba34bd32b960791b606083015281528151808301909252600d82526c2337b932b9ba1026b0b9ba32b960991b6020838101919091528101919091526200226390602290600262006208565b50604080516060810182526009602082019081526823b7b21022b0ba32b960b91b928201929092529081526200229e9060239060016200653c565b506040805160c081018252600660808201908152652930b733b2b960d11b60a0830152815281518083018352600d8082526c20b931b0b7329020b931b432b960991b60208381019190915280840192909252835180850185529081526c26b7b93a30b610243ab73a32b960991b81830152828401528251808401909352600e83526d2832b2b93632b9b9a0b931b432b960911b9083015260608101919091526200234d9060249060046200658e565b506040805160808101825260188183019081527f4f726465726f662074686520426f7720496e6974696174650000000000000000606083015281528151808301909252601382527f436f6e7365637261746564204861727269657200000000000000000000000000602083810191909152810191909152620023d490602590600262006208565b506040805160808101825260118183019081527020b93137b932b0b61023bab0b93234b0b760791b606083015281528151808301909252600f82526e2232b2b83bb7b7b21029b734b832b960891b6020838101919091528101919091526200244190602690600262006208565b50604080516060810182526017602082019081527f48616c666c696e67576172736c696e6720536e6970657200000000000000000092820192909252908152620024909060279060016200653c565b50604080516060810182526014602082019081527f45786f74696320576561706f6e204d617374657200000000000000000000000092820192909252908152620024df9060289060016200653c565b50604080516060810182526017602082019081527f4d6173746572206f6620746865204d6574617665727365000000000000000000928201929092529081526200252e9060299060016200653c565b5060405180606001604052806040518060400160405280601081526020016f223bb0b93b32b7102232b332b73232b960811b81525081526020016040518060400160405280600f81526020016e21b0b93b32b7102232b332b73232b960891b81525081526020016040518060400160405280601481526020017f477561726469616e206f662074686520526f6164000000000000000000000000815250815250602a906003620025e092919062006100565b5060408051608081018252600c8183019081526b23b4b0b73a16a5b4b63632b960a11b606083015281528151808301909252601082526f2a3934b130b610283937ba32b1ba37b960811b6020838101919091528101919091526200264990602b90600262006208565b5060408051608081018252600b8183019081526a13dc98c815d85c9b1bdc9960aa1b60608301528152815180830190925260098252680a8cac6d0e6dad2e8d60bb1b602083810191909152810191909152620026aa90602c90600262006208565b5060408051608081018252600d8183019081526c29b1b0b632b2102437b93937b960991b606083015281528151808301909252600f82526e2832b7b836329021b430b6b834b7b760891b6020838101919091528101919091526200271390602d90600262006208565b50604080516060810182526015602082019081527f4d617374657220417263616e65204172746973616e0000000000000000000000928201929092529081526200276290602e9060016200653c565b5060405180606001604052806040518060400160405280600981526020016820bab9b834b1b4b0b760b91b81525081526020016040518060400160405280601381526020017f4b657368656e20426c6164656d6173746572200000000000000000000000000081525081526020016040518060400160405280601481526020017f5761726c6f7264206f66204d6574617665727365000000000000000000000000815250815250602f9060036200281b92919062006100565b50604080516101608101825260076101208201908152662830b630b234b760c91b610140830152815281518083018352600e8082526d2437b63c902634b132b930ba37b960911b6020838101919091528084019290925283518085018552600f81526e2234bb34b7329021b430b6b834b7b760891b818401528385015283518085018552600c81526b15995c99185b9d08131bdc9960a21b81840152606084015283518085018552600d81526c45756e7563685761726c6f636b60981b81840152608084015283518085018552600b81526a23b0ba32b1b930b9b432b960a91b8184015260a084015283518085018552601081526f0283630b730b91021b430b6b834b7b7160851b8184015260c0840152835180850185529081526d029b83ab9103a3432902637b932160951b8183015260e08301528251808401909352601583527f5073796368696320576561706f6e204d61737465720000000000000000000000908301526101008101919091526200299b906030906009620061b6565b506040805161024081018252600f61020082019081526e115b191c9a5d18da0812db9a59da1d608a1b6102208301528152815180830183526007808252662a32b6b83630b960c91b602083810191909152808401929092528351808501855260108082526f4b6e69676874206f66204e6572616b6160801b82850152848601919091528451808601865260128152714b6e69676874206f6620536f6c616d6e696160701b81850152606085015284518086018652600b8082526a105b9a5b585b08131bdc9960aa1b82860152608086019190915285518087018752600c81526b2132b0b9102bb0b93934b7b960a11b8186015260a086015285518087018752600a8082526926b0b43796a13ab534b760b11b8287015260c0870191909152865180880188529182526a4d61686f2d5473756b616960a81b8286015260e086019190915285518087018752601a81527f4f75746c6177206f6620746865204372696d736f6e20526f61640000000000008186015261010086015285518087018752600e81526d2937bcb0b61022bc383637b932b960911b8186015261012086015285518087018752601b81527f54656d706c6520526169646572206f66204f6c6964616d6d61726100000000008186015261014086015285518087018752600d8082526c53686f75204469736369706c6560981b82870152610160870191909152865180880188529081526c2a3430bcb0b71029b630bb32b960991b8186015261018086015285518087018752928352664265727365726b60c81b838501526101a0850192909252845180860186526011815270029b7b63234b2b91037b3102634b3b43a1607d1b818501526101c08501528451808601909552908452692634b3329022b0ba32b960b11b918401919091526101e082019290925262002c449160319190620065e0565b50604080516102a081018252601561026082018181527f4b6e69676874206f6620746865204368616c6963650000000000000000000000610280840152825282518084018452601b81527f4b6e69676874206f6620746865204d6964646c6520436972636c6500000000006020828101919091528084019190915283518085018552600b81526a14d858dc995908119a5cdd60aa1b818301528385015283518085018552600f8082526e20b3b2b73a102932ba3934b2bb32b960891b82840152606085019190915284518086018652600d8082526c2234bb34b7329029b2b2b5b2b960991b8285015260808601919091528551808701875260128152714569646f6c6f6e20636f726520636c61737360701b8185015260a0860152855180870187529182526e57617463682044657465637469766560881b8284015260c0850191909152845180860186526009808252682bb4b7323934b232b960b91b8285015260e0860191909152855180870187528281526c2130ba3a36329026b0b4b232b760991b8185015261010086015285518087018752600c8082526b213630b232902230b731b2b960a11b8286015261012087019190915286518088018852600881526729bab93b34bb37b960c11b8186015261014087015286518088018852918252682bb0bb32b934b232b960b91b82850152610160860191909152855180870187529182526c2437b9323290213932b0b5b2b960991b8284015261018085019190915284518086018652601c81527f4b6e6967687420457272616e74206f662053696c766572796d6f6f6e00000000818401526101a0850152845180860186529081526b44726561642050697261746560a01b818301526101c084015283518085018552600a81526914dc195b1b1cdddbdc9960b21b818301526101e084015283518085018552600e81526d576179666572657220477569646560901b8183015261020084015283518085018552601781527f41676c61726f6e64616e2047726966666f6e72696465720000000000000000008183015261022084015283518085019094529083527f52756e6573636172726564204265727365726b657200000000000000000000009083015261024081019190915262002f8b90603290601362006632565b506040518061028001604052806040518060400160405280601381526020017f57617272696f72206f66204461726b6e6573730000000000000000000000000081525081526020016040518060400160405280601481526020017f4c6567696f6e6e61697265206f6620537465656c00000000000000000000000081525081526020016040518060400160405280601281526020017111dd585c991a585b8814185c985b5bdd5b9d60721b81525081526020016040518060400160405280600e81526020016d155b9a5bdb8814d95b9d1a5b995b60921b815250815260200160405180604001604052806012815260200171233932b73d34b2b2102132b939b2b935b2b960711b81525081526020016040518060400160405280600f81526020016e54616d6572206f662042656173747360881b81525081526020016040518060400160405280600781526020016615195b5c195cdd60ca1b81525081526020016040518060600160405280602681526020016200c62a602691398152604080518082018252601881527f446169646f6a69426f6479677561726420446169646f6a6900000000000000006020828101919091528084019190915281518083018352600c8082526b546174746f6f65644d6f6e6b60a01b828401528385019190915282518084018452600b81526a427265616368676e6f6d6560a81b81840152606085015282518084018452601280825271223bb0b93b32b72130ba3a3632b930b3b2b960711b828501526080860191909152835180850185529081527111dc99585d149a599d0814dade59dd585c9960721b8184015260a085015282518084018452600a8082526913dc98d5d85c9b1bdc9960b21b8285015260c086019190915283518085018552600f81526e4d61737465726f6620436861696e7360881b8185015260e086015283518085018552600d81526c4d617374657253616d7572616960981b818501526101008601528351808501855260078152662930bb30b3b2b960c91b818501526101208601528351808501855260098152682bb0b936b0b9ba32b960b91b81850152610140860152835180850185529182526b2bb2b0b837b726b0b9ba32b960a11b828401526101608501919091528251808401909352825269135a5b991adb9a59da1d60b21b9082015261018090910152620032f690603390601462006684565b50604080516103408101825260096103008201818152682130b93130b934b0b760b91b6103208401528252825180840184526007808252662334b3b43a32b960c91b602083810191909152808501929092528451808601865260048152634d6f6e6b60e01b818401528486015284518086018652600a815269109b1858dad9dd585c9960b21b8184015260608501528451808601865281815266111d595b1a5cdd60ca1b8184018190526080860191909152855180870187528281526641726163686e6560c81b8185015260a086015285518087018752600c8082526b29ba3934b332b632b0b232b960a11b8286015260c087019190915286518088018852600b81526a15d85d995cd95c9d985b9d60aa1b8186015260e087015286518088018852601481527f507572706c6520447261676f6e204b6e6967687400000000000000000000000081860152610100870152865180880188526011808252704869646120446566656e6465724869646160781b828701526101208801919091528751808901895260108082526f4d616e746973204d657263656e61727960801b828801526101408901919091528851808a018a52600f81526e29b434b13090283937ba32b1ba37b960891b818801526101608901528851808a018a52600e8082526d02bb2b0b837b71026b0b9ba32b9160951b828901526101808a01919091528951808b018b5260068082526529b630bcb2b960d11b828a01526101a08b01919091528a51808c018c5289815268566967696c616e746560b81b818a01526101c08b01528a51808c018c52600881526721b0bb30b634b2b960c11b818a01526101e08b01528a51808c018c529283526f2232bb37ba32b2102232b332b73232b960811b838901526102008a01929092528951808b018b528181526d22393ab735b2b71026b0b9ba32b960911b818901526102208a01528951808b018b5295865285870194909452610240880194909452875180890189529283526d2334b9ba1037b3102432bc3a37b960911b83860152610260870192909252865180880188529485526823b630b234b0ba37b960b91b8585015261028086019490945285518087018752908152702430b6333634b7339027baba3934b232b960791b818401526102a085015284518086018652908152652630b9b432b960d11b818301526102c084015283518085019094529083526b151a1e585b8812db9a59da1d60a21b908301526102e081019190915262003691906034906018620066d6565b5060405180610f0001604052806040518060400160405280600d81526020016c20b236b4b734b9ba3930ba37b960991b81525081526020016040518060400160405280600e81526020016d456c757369766520536861646f7760901b81525081526020016040518060400160405280600581526020016423b0b6b2b960d91b81525081526020016040518060400160405280600681526020016547656e69757360d01b81525081526020016040518060400160405280600d81526020016c4772657920456d696e656e636560981b815250815260200160405180604001604052806008815260200167125b5b5bdc9d185b60c21b81525081526020016040518060400160405280600d81526020016c135a59185cc8151bdd58da1959609a1b8152508152602001604051806040016040528060068152602001654d797374696360d01b81525081526020016040518060400160405280601481526020017f4272696c6c69616e74205374726174656769737400000000000000000000000081525081526020016040518060400160405280601681526020017f4368617269736d61746963204e65676f746961746f720000000000000000000081525081526020016040518060400160405280600f81526020016e2337b93a3ab73290213ab4b63232b960891b81525081526020016040518060400160405280601581526020017f4d61737465726d696e64205468656f6c6f6769616e000000000000000000000081525081526020016040518060400160405280600e81526020016d2730b4bb329020b83832b0b9b2b960911b81525081526020016040518060400160405280601081526020016f13985a5d9948115b9d1a1d5cda585cdd60821b815250815260200160405180604001604052806006815260200165139d591a5cdd60d21b815250815260200160405180604001604052806009815260200168141bdcdcd95cdcd95960ba1b8152508152602001604051806040016040528060098152602001685269676874656f757360b81b81525081526020016040518060400160405280601181526020017029b5b4b63632b2102a30b1ba34b1b4b0b760791b815250815260200160405180604001604052806008815260200167151bdb195c985b9d60c21b81525081526020016040518060400160405280601281526020017120b6b0ba32bab934b9b410283637ba3a32b960711b815250815260200160405180604001604052806009815260200168416d626974696f757360b81b815250815260200160405180604001604052806009815260200168105c98da1a5d1958dd60ba1b81525081526020016040518060400160405280601781526020017f4172636869746563747572616c20566973696f6e61727900000000000000000081525081526020016040518060400160405280600a81526020016910995b995d9bdb195b9d60b21b81525081526020016040518060400160405280600b81526020016a109bd91e48141d5c9a5cdd60aa1b81525081526020016040518060400160405280600881526020016711dc9858d9599d5b60c21b81525081526020016040518060400160405280601181526020017026b4b9b3bab4b232b2102bb0b93934b7b960791b81525081526020016040518060400160405280600981526020016828343cb9b4b1b4b0b760b91b81525081526020016040518060400160405280601481526020017f5363686f6c61726c79205468656f6c6f6769616e00000000000000000000000081525081526020016040518060400160405280600b81526020016a29b832b2b2102232b6b7b760a91b81525081526020016040518060400160405280600a8152602001692a3432b7b637b3b4b0b760b11b815250815260200160405180604001604052806009815260200168151bdbc814db585c9d60ba1b81525081526020016040518060400160405280600d81526020016c2a37bab3b41029b7b63234b2b960991b8152508152602001604051806040016040528060078152602001665a65616c6f757360c81b81525081526020016040518060400160405280600981526020016841726269747261727960b81b8152508152602001604051806040016040528060078152602001664173636574696360c81b815250815260200160405180604001604052806007815260200166105cd95e1d585b60ca1b81525081526020016040518060400160405280601081526020016f2130b1313634b73390213ab33337b7b760811b815250815260200160405180604001604052806008815260200167109a5cd95e1d585b60c21b815250815260200160405180604001604052806009815260200168109b1bdbd91b1d5cdd60ba1b81525081526020016040518060400160405280600b81526020016a2137b23c9026b7b23232b960a91b815250815260200160405180604001604052806011815260200170426f726e20496e74686520507572706c6560781b81525081526020016040518060400160405280600781526020016646657274696c6560c81b8152508152602001604051806040016040528060118152602001702334b2b931b2902732b3b7ba34b0ba37b960791b81525081526020016040518060400160405280600381526020016247617960e81b81525081526020016040518060400160405280600581526020016411da585b9d60da1b81525081526020016040518060400160405280600a815260200169477265676172696f757360b01b8152508152602001604051806040016040528060088152602001671219591bdb9a5cdd60c21b81525081526020016040518060400160405280600881526020016724b237b634bd32b960c11b815250815260200160405180604001604052806008815260200167125c9bdb8811dd5d60c21b81525081526020016040518060400160405280600c81526020016b4b65656e2048656172696e6760a01b81525081526020016040518060400160405280600a8152602001691319599d1a185b99195960b21b81525081526020016040518060400160405280600b81526020016a2634b3b43a1022b0ba32b960a91b81525081526020016040518060400160405280600a815260200169131bddc8151a1a5c9cdd60b21b81525081526020016040518060400160405280600e81526020016d4d61727469616c20436c6572696360901b81525081526020016040518060400160405280600c81526020016b4f7574204f6620536861706560a01b81525081526020016040518060400160405280600b81526020016a27baba3237b7b939b6b0b760a91b815250815260200160405180604001604052806007815260200166141b185e599d5b60ca1b815250815260200160405180604001604052806006815260200165149bd89d5cdd60d21b81525081526020016040518060400160405280600781526020016629b1b432b6b2b960c91b81525081526020016040518060400160405280600781526020016629b1b437b630b960c91b81525081526020016040518060400160405280600981526020016853656372657469766560b81b81525081526020016040518060400160405280600781526020016629b2b23ab1b2b960c91b81525081526020016040518060400160405280600a8152602001695365647563747265737360b01b81525081526020016040518060400160405280600381526020016253687960e81b81525081526020016040518060400160405280600b81526020016a29b637bb902932b0b232b960a91b81525081526020016040518060400160405280600a81526020016914dd1c985d1959da5cdd60b21b81525081526020016040518060400160405280600681526020016553747572647960d01b81525081526020016040518060400160405280600f81526020016e151bdc9d1d5c995908105c9d1a5cdd608a1b815250815260200160405180604001604052806011815260200170556e64657268616e64656420526f67756560781b81525081526020016040518060400160405280600781526020016615d85ad9599d5b60ca1b81525081526020016040518060400160405280600c81526020016b15d95b1b0810591d9a5cd95960a21b81525081526020016040518060400160405280600e81526020016d15d95b1b0810dbdb9b9958dd195960921b8152508152602001604051806040016040528060068152602001651699585b1bdd60d21b81525081526020016040518060400160405280600a8152602001695079726f6d616e69616360b01b81525081526020016040518060400160405280600d81526020016c28bab4b1b59029b632b2b832b960991b81525081526020016040518060400160405280601081526020016f2932b9ba3632b9b99029b632b2b832b960811b81525081526020016040518060400160405280600c81526020016b0a6c6c2e4e4cac84090d2ced60a31b81525081526020016040518060400160405280601081526020016f14d95d995c995b1e48125b9a9d5c995960821b81525081526020016040518060400160405280600d81526020016c14da1bdc9d0814da59da1d1959609a1b81525081526020016040518060400160405280600d81526020016c53696c76657220546f6e67756560981b81525081526020016040518060400160405280600a81526020016914db19595c1e5a19585960b21b81525081526020016040518060400160405280600681526020016529b6b7b5b2b960d11b81525081526020016040518060400160405280600a81526020016929b7b1b4b0b634bd32b960b11b81525081526020016040518060400160405280600f81526020016e546163746963616c2047656e69757360881b81525081526020016040518060400160405280601281526020017154726f75626c656420507265676e616e637960701b8152508152602001604051806040016040528060088152602001675472757374696e6760c01b8152508152602001604051806040016040528060048152602001632a3bb4b760e11b81525081526020016040518060400160405280600d81526020016c2ab73232b933b937bab73232b960991b81525081526020016040518060400160405280600b81526020016a155b99195c9dd95a59da1d60aa1b81525081526020016040518060400160405280601081526020016f15995c9e48155b99195c9dd95a59da1d60821b81525081526020016040518060400160405280600c81526020016b0aecac2d640a6e8dedac2c6d60a31b81525081526020016040518060400160405280600781526020016615da5b1b199d5b60ca1b8152508152602001604051806040016040528060058152602001640aee4dee8d60db1b81525081526020016040518060400160405280600781526020016610985cdd185c9960ca1b81525081526020016040518060400160405280600f81526020016e10da1a5b190813d998dbdb9cdbdc9d608a1b815250815260200160405180604001604052806005815260200164223bb0b93360d91b815250815260200160405180604001604052806006815260200165466565626c6560d01b8152508152602001604051806040016040528060058152602001642332bb32b960d91b81525081526020016040518060400160405280600e81526020016d466f6f6420506f69736f6e696e6760901b81525081526020016040518060400160405280600e81526020016d4861726420507265676e616e637960901b8152508152602001604051806040016040528060078152602001660486172656c69760cc1b81525081526020016040518060400160405280600b81526020016a486173204d6561736c657360a81b81525081526020016040518060400160405280600d81526020016c090c2e640a6dac2d8d840a0def609b1b81525081526020016040518060400160405280601081526020016f48617320547562657263756c6f73697360801b8152508152602001604051806040016040528060118152602001702430b9902a3cb83437b4b2102332bb32b960791b81525081526020016040518060400160405280600781526020016624b6b830b632b960c91b815250815260200160405180604001604052806008815260200167125b991bdb195b9d60c21b815250815260200160405180604001604052806009815260200168125b991d5b19d95b9d60ba1b81525081526020016040518060400160405280600981526020016824b73332b1ba34b7b760b91b815250815260200160405180604001604052806006815260200165496e6669726d60d01b81525081526020016040518060400160405280600481526020016304c6973760e41b81525081526020016040518060400160405280600a8152602001694c6f6f7365204c69707360b01b8152508152602001604051806040016040528060058152602001644f6265736560d81b81525081526020016040518060400160405280600881526020016713db9948115e595960c21b81525081526020016040518060400160405280600a81526020016913db994812185b99195960b21b81525081526020016040518060400160405280600a81526020016913db9948131959d9d95960b21b81525081526020016040518060400160405280600581526020016414dd1bdd5d60da1b81525081526020016040518060400160405280600881526020016714dd1c995cdcd95960c21b81525081526020016040518060400160405280600a81526020016953797068696c6974696360b01b8152508152506035906078620049db92919062006728565b5060408051610ac0810182526004610a8082018181526341626c6560e01b610aa0840152825282518084018452600a808252694167677265737369766560b01b6020838101919091528085019290925284518086018652600580825264105b195c9d60da1b828501528587019190915285518087018752600980825268416d626974696f757360b81b82860152606087019190915286518088018852838152694174747261637469766560b01b8186015260808701528651808801885260068082526510d85b991a5960d21b8287015260a08801919091528751808901895260078082526610d85c99599d5b60ca1b8288015260c08901919091528851808a018a528181526611195d9bdd195960ca1b8188015260e08901528851808a018a5281815266111d5d1a599d5b60ca1b818801526101008901528851808a018a5285815269456173792d476f696e6760b01b818801526101208901528851808a018a52838152681159999a58da595b9d60ba1b818801526101408901528851808a018a52858152694578707265737369766560b01b818801526101608901528851808a018a52600c8082526b45787072657373697669747960a01b828901526101808a01919091528951808b018b52600880825267119bdc98d9599d5b60c21b828a01526101a08b01919091528a51808c018c5285815268119bdc99d95d199d5b60ba1b818a01526101c08b01528a51808c018c52868152644672616e6b60d81b818a01526101e08b01528a51808c018c5284815265119c9d59d85b60d21b818a01526102008b01528a51808c018c528381526611d95b9d19595b60ca1b818a01526102208b01528a51808c018c528181526747756c6c69626c6560c01b818a01526102408b01528a51808c018c5286815264486170707960d81b818a01526102608b01528a51808c018c528281526b486172642d576f726b696e6760a01b818a01526102808b01528a51808c018c5287815269496e697469617469766560b01b818a01526102a08b01528a51808c018c5285815268496e76656e7469766560b81b818a01526102c08b01528a51808c018c52988952634c617a7960e01b898901526102e08a01989098528951808b018b5282815266131a58995c985b60ca1b818901526103008a01528951808b018b5283815265135bd9195cdd60d21b818901526103208a01528951808b018b528881526713d899591a595b9d60c21b818901526103408a01528951808b018b5282815266506f7274696e6760c81b818901526103608a01528951808b018b5286815269526561736f6e61626c6560b01b818901526103808a01528951808b018b528881526753656c666c65737360c01b818901526103a08a01528951808b018b528881526753656e7369626c6560c01b818901526103c08a01528951808b018b528481526853656e73697469766560b81b818901526103e08a01528951808b018b528281526653696e6365726560c81b818901526104008a01528951808b018b528481526814dad95c1d1a58d85b60ba1b818901526104208a01528951808b018b528581526414db585c9d60da1b818901526104408a01528951808b018b5288815267536f636961626c6560c01b818901526104608a01528951808b018b528881526753706f7274696e6760c01b818901526104808a01528951808b018b528381526553746561647960d01b818901526104a08a01528951808b018b52600f81526e14dd1c985a59da1d199bdc9dd85c99608a1b818901526104c08a01528951808b018b528381526514dd1c9a58dd60d21b818901526104e08a01528951808b018b52600d8082526c14dd1c9bdb99cb55da5b1b1959609a1b828a01526105008b01919091528a51808c018c52600b8082526a53796d706174686574696360a81b828b01526105208c01919091528b51808d018d528881526953797374656d6174696360b01b818b01526105408c01528b51808d018d528a81526715185b195b9d195960c21b818b01526105608c01528b51808d018d528a815267151c9d5cdd199d5b60c21b818b01526105808c01528b51808d018d528281526c556e6465727374616e64696e6760981b818b01526105a08c01528b51808d018d52868152680aadce6cad8ccd2e6d60bb1b818b01526105c08c01528b51808d018d528581526541637469766560d01b818b01526105e08c01528b51808d018d528581526510591c9bda5d60d21b818b01526106008c01528b51808d018d5288815269105b985b1e5d1a58d85b60b21b818b01526106208c01528b51808d018d528381526b417070726568656e7369766560a01b818b01526106408c01528b51808d018d528281526c417267756d656e74617469766560981b818b01526106608c01528b51808d018d528381526b1098590b55195b5c195c995960a21b818b01526106808c01528b51808d018d5287815264426f73737960d81b818b01526106a08c01528b51808d018d5287815264427261766560d81b818b01526106c08c01528b51808d018d5286815268109c9a5b1b1a585b9d60ba1b818b01526106e08c01528b51808d018d5285815265436172696e6760d01b818b01526107008c01528b51808d018d528881526943686172697461626c6560b01b818b01526107208c01528b51808d018d528a81526710da19595c999d5b60c21b818b01526107408c01528b51808d018d528a815267086d0d2d8c8d2e6d60c31b818b01526107608c01528b51808d018d528481526610dbdb5a58d85b60ca1b818b01526107808c01528b51808d018d528681526810dbdb98d95a5d195960ba1b818b01526107a08c01528b51808d018d528681526810dbdb999a59195b9d60ba1b818b01526107c08c01528b51808d018d528281526c436f6e736369656e74696f757360981b818b01526107e08c01528b51808d018d529182526c436f6e74656d706c617469766560981b828a01526108008b01919091528a51808c018c528181526a436f6f706572617469766560a81b818a01526108208b01528a51808c018c528381526644617368696e6760c81b818a01526108408b01528a51808c018c52858152681119591a58d85d195960ba1b818a01526108608b01528a51808c018c528581526844656d616e64696e6760b81b818a01526108808b01528a51808c018c5287815269446570656e6461626c6560b01b818a01526108a08b01528a51808c018c528781526944657072657373696e6760b01b818a01526108c08b01528a51808c018c528781526911195d195c9b5a5b995960b21b818a01526108e08b01528a51808c018c52968752694469706c6f6d6174696360b01b878901526109008a01969096528951808b018b529586526a111a5cd8da5c1b1a5b995960aa1b868801526109208901959095528851808a018a528581526b111a5cdbdc99d85b9a5e995960a21b818801526109408901528851808a018a5292835268456e6572676574696360b81b83870152610960880192909252875180890189529384526b456e7468757369617374696360a01b84860152610980870193909352865180880188528581526711985a5d1a199d5b60c21b818601526109a08701528651808801885285815267467269656e646c7960c01b818601526109c0870152865180880188529182526446756e6e7960d81b828501526109e0860191909152855180870187528481526747656e65726f757360c01b81850152610a00860152855180870187529182526548656172747960d01b82840152610a20850191909152845180860186529081526612195b1c199d5b60ca1b81830152610a4084015283518085019094529083526748656c706c65737360c01b90830152610a60810191909152620054ea9060369060546200677a565b506040805160c0810182526000815260046020820152600f918101919091526029606082015260526080820152606360a08201526200552e906037906006620067cc565b506040805160c08101825260048152600e6020820152601d918101919091526030606082015260476080820152606360a082015262005572906038906006620067cc565b506040805160c081018252600781526012602082015260219181019190915260496060820152605d6080820152608160a0820152620055b6906039906006620067cc565b50348015620055c457600080fd5b5060405180604001604052806004815260200163526f6c6560e01b81525060405180604001604052806004815260200163524f4c4560e01b8152508160009080519060200190620056179291906200681d565b5080516200562d9060019060208401906200681d565b50506001600a55506200564033620060ae565b60016000526000805160206200c6908339815191526020526029805462005689917f9786f677b3dff6c36ad0d47ef13860fd51b928c112d9702e0dea2fe690bf6ec1916200689a565b5060026000526000805160206200c690833981519152602052602e8054620056d3917f54bf5bc4b2226bde4cc3e74a9ec72288325c7fa9a62e34b6f2e529209d79e0fb916200689a565b5060036000526000805160206200c690833981519152602052602d80546200571d917fca689a1f7db89b8710c79c63830a1317054bd8ec2ee851f1b33a21b2a41ae4f9916200689a565b5060046000526000805160206200c690833981519152602052602c805462005767917fdb2da11dbc18f3a612d4bc458e6c7f31855984a65faa205e357783ef96b5f053916200689a565b5060056000526000805160206200c690833981519152602052602b8054620057b1917f956a16288183a5fa20266b8227ba1f9bfb95628732f8c5dcd3edd5ed3f30102f916200689a565b5060066000526000805160206200c690833981519152602052602a8054620057fb917fe47962f3517910a1c6da7cbb71f9a40393a63a8e7bda45c8ee4ab4b3b02db51c916200689a565b5060016000526000805160206200c7378339815191526020526011805462005845917f332275a058505107a86f8909487584ee26365a1ad866fdfd7d0ca217736986ed916200689a565b5060026000526000805160206200c737833981519152602052601680546200588f917f43a1014b6961384d1120382c968e1e5a446fd730c5b0be82a93447b93d8c5780916200689a565b5060036000526000805160206200c73783398151915260205260158054620058d9917fb963a2cc96831b7d1bee11154ddec13c7b5e8ac05c70661c4538de70ac16a32a916200689a565b5060046000526000805160206200c7378339815191526020526014805462005923917f13e573e12d0a272934280a8dcf7705a08d708490f67ab59f70b9b76ea0941189916200689a565b5060056000526000805160206200c737833981519152602052601380546200596d917fe5f25dc16bb1a7ea16eaa31b170c90fa46336ee66a56fe6e9b85f30bf355f185916200689a565b5060066000526000805160206200c73783398151915260205260128054620059b7917f037266986c6f9c6ed340eab4329942cdced8c64eb8f9d3530280fee3c8cc45bd916200689a565b5060016000526000805160206200c6708339815191526020526023805462005a01917fa4b2ae645069b0fe342e4873e7f3a2b47b2e1410299f64d1a1b2c9313380bac8916200689a565b5060026000526000805160206200c6708339815191526020526028805462005a4b917fdf907ee502102e7c62cec3210e3216baba694172f98d9878eb35ef1bec0d16b0916200689a565b5060036000526000805160206200c6708339815191526020526027805462005a95917f453e2823e0c78b590eaeddf7807d57c263c48a0a3d13054dd8d170a8a0b54690916200689a565b5060046000526000805160206200c6708339815191526020526026805462005adf917fd4d17f3dfcaad0457158eed76fbc8d57cc8b3c80aae169dc6cfafeb074aeeb53916200689a565b5060056000526000805160206200c6708339815191526020526025805462005b29917f2d59f287f6c2da692536447a5aa2fff8a3e34e7a8a7aff4409374cd27d8a153e916200689a565b5060066000526000805160206200c6708339815191526020526024805462005b73917f1a12163d8f5b0159cca7df6a8f75a4194622b89d28b0085514afdc275de20dd9916200689a565b5060016000526000805160206200c650833981519152602052601d805462005bbd917f6868be3980be7fd972596ca506cada9b78aca12a9006443b1916ce784f8ef8a8916200689a565b5060026000526000805160206200c6508339815191526020526022805462005c07917f84e722789c62b0dc97803f3d1dab51fd1ef82b0c463751f13b5ecc891f27158a916200689a565b5060036000526000805160206200c6508339815191526020526021805462005c51917f11a6df99eada7208f7aa93e8b6930faa7431d65501c040d3866253a695b946f0916200689a565b5060046000526000805160206200c6508339815191526020908152805462005c9b917f20746fe009d34953a307298e449648771531a7fbef58ee8357ded5b961ec03f8916200689a565b5060056000526000805160206200c650833981519152602052601f805462005ce5917f4d46e58dcd0f103958dc5dd2b7896b386b456ef637c81e91f8c0f4f75acfe338916200689a565b5060066000526000805160206200c650833981519152602052601e805462005d2f917fbb705d6d24e0c5000dc44388cf5d00c9e5d66473b382fbe9d3821c3fc11a3746916200689a565b5060016000526000805160206200c6d08339815191526020526017805462005d79917f258b311fdbc5b9406bebc411e3db4e8c24ddc70cdf726f12e2420e8e40199cd0916200689a565b5060026000526000805160206200c6d0833981519152602052601c805462005dc3917fccc637506da1a634040c39851816cdc15ec8706fd5bb5cf030e32f3b5707e00d916200689a565b5060036000526000805160206200c6d0833981519152602052601b805462005e0d917fbbc468684b2defec2483a9f49b2b0f348612729be8edbbf8dd3b2247da7f4069916200689a565b5060046000526000805160206200c6d0833981519152602052601a805462005e57917fef1e0e713c3a08ecdfe0b8b65c3a6ab7a8bc74ffc2fd58fb3da2f36c89174a03916200689a565b5060056000526000805160206200c6d08339815191526020526019805462005ea1917f5ca4ae437bffa84818d81093be0cfe42fa46a564e6fbe05fcdb7f08016014ecb916200689a565b5060066000526000805160206200c6d08339815191526020526018805462005eeb917f26a436503bc6e9854dfdef555b5df53f8a5317693951459f8bedae0ddcade901916200689a565b5060016000526000805160206200c6b0833981519152602052602f805462005f35917fddcff1f08d96acf351eac2feb6a39490632bde5e7d6f92fc60b6720fa6ab31a7916200689a565b5060026000526000805160206200c6b08339815191526020526030805462005f7f917f4e47cd8276e51c125784829d86d45766a926ac9b83731479bcca07ea52358272916200689a565b5060036000526000805160206200c6b08339815191526020526031805462005fc9917f785a5a69882ab9e9dc9e43575eb3de4e321c8b6763efac2f67e10fa4f3c78c5c916200689a565b5060046000526000805160206200c6b08339815191526020526032805462006013917f50adf8fa9449d599b8ce00900529eccac601fffa6da26ee8944144496e6b9bbd916200689a565b5060056000526000805160206200c6b0833981519152602052603380546200605d917f871ea6afba0d1b9a2049f2bcce474eb866d2f968867b358c6c56ca87cc4d61dc916200689a565b5060066000526000805160206200c6b083398151915260205260348054620060a7917f8eb1ae9ebcaf61d8fdcce0fd4086bbaf8157ee1a250e1fa37d8eef7f80ab556b916200689a565b5062006a32565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562006152579160200282015b82811115620061525782518051620061419184916020909101906200681d565b509160200191906001019062006121565b5062006160929150620068f7565b5090565b82805482825590600052602060002090810192821562006152579160200282015b82811115620061525782518051620061a59184916020909101906200681d565b509160200191906001019062006185565b82805482825590600052602060002090810192821562006152579160200282015b82811115620061525782518051620061f79184916020909101906200681d565b5091602001919060010190620061d7565b82805482825590600052602060002090810192821562006152579160200282015b82811115620061525782518051620062499184916020909101906200681d565b509160200191906001019062006229565b82805482825590600052602060002090810192821562006152579160200282015b828111156200615257825180516200629b9184916020909101906200681d565b50916020019190600101906200627b565b82805482825590600052602060002090810192821562006152579160200282015b82811115620061525782518051620062ed9184916020909101906200681d565b5091602001919060010190620062cd565b82805482825590600052602060002090810192821562006152579160200282015b828111156200615257825180516200633f9184916020909101906200681d565b50916020019190600101906200631f565b82805482825590600052602060002090810192821562006152579160200282015b82811115620061525782518051620063919184916020909101906200681d565b509160200191906001019062006371565b82805482825590600052602060002090810192821562006152579160200282015b82811115620061525782518051620063e39184916020909101906200681d565b5091602001919060010190620063c3565b82805482825590600052602060002090810192821562006152579160200282015b82811115620061525782518051620064359184916020909101906200681d565b509160200191906001019062006415565b82805482825590600052602060002090810192821562006152579160200282015b82811115620061525782518051620064879184916020909101906200681d565b509160200191906001019062006467565b82805482825590600052602060002090810192821562006152579160200282015b82811115620061525782518051620064d99184916020909101906200681d565b5091602001919060010190620064b9565b82805482825590600052602060002090810192821562006152579160200282015b828111156200615257825180516200652b9184916020909101906200681d565b50916020019190600101906200650b565b82805482825590600052602060002090810192821562006152579160200282015b828111156200615257825180516200657d9184916020909101906200681d565b50916020019190600101906200655d565b82805482825590600052602060002090810192821562006152579160200282015b82811115620061525782518051620065cf9184916020909101906200681d565b5091602001919060010190620065af565b82805482825590600052602060002090810192821562006152579160200282015b82811115620061525782518051620066219184916020909101906200681d565b509160200191906001019062006601565b82805482825590600052602060002090810192821562006152579160200282015b82811115620061525782518051620066739184916020909101906200681d565b509160200191906001019062006653565b82805482825590600052602060002090810192821562006152579160200282015b82811115620061525782518051620066c59184916020909101906200681d565b5091602001919060010190620066a5565b82805482825590600052602060002090810192821562006152579160200282015b82811115620061525782518051620067179184916020909101906200681d565b5091602001919060010190620066f7565b82805482825590600052602060002090810192821562006152579160200282015b82811115620061525782518051620067699184916020909101906200681d565b509160200191906001019062006749565b82805482825590600052602060002090810192821562006152579160200282015b82811115620061525782518051620067bb9184916020909101906200681d565b50916020019190600101906200679b565b8280548282559060005260206000209081019282156200680f579160200282015b828111156200680f578251829060ff16905591602001919060010190620067ed565b506200616092915062006918565b8280546200682b90620069f5565b90600052602060002090601f0160209004810192826200684f57600085556200680f565b82601f106200686a57805160ff19168380011785556200680f565b828001600101855582156200680f579182015b828111156200680f5782518255916020019190600101906200687d565b828054828255906000526020600020908101928215620061525760005260206000209182015b8281111562006152578282908054620068d990620069f5565b620068e69291906200692f565b5091600101919060010190620068c0565b80821115620061605760006200690e8282620069b3565b50600101620068f7565b5b8082111562006160576000815560010162006919565b8280546200693d90620069f5565b90600052602060002090601f0160209004810192826200696157600085556200680f565b82601f106200697457805485556200680f565b828001600101855582156200680f57600052602060002091601f016020900482015b828111156200680f57825482559160010191906001019062006996565b508054620069c190620069f5565b6000825580601f10620069d2575050565b601f016020900490600052602060002090810190620069f2919062006918565b50565b600181811c9082168062006a0a57607f821691505b6020821081141562006a2c57634e487b7160e01b600052602260045260246000fd5b50919050565b615bc48062006a426000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c80634f6ccce711610130578063baa5b27f116100b8578063e15f22551161007c578063e15f2255146104ac578063e53fbda6146104bf578063e985e9c5146104d2578063f2fde38b1461050e578063f3a4aba91461052157600080fd5b8063baa5b27f1461044d578063c87b56dd14610460578063d09e059114610473578063d866e15214610486578063e06d2eb51461049957600080fd5b806381f56fe9116100ff57806381f56fe9146103fb5780638da5cb5b1461040e57806395d89b411461041f578063a22cb46514610427578063b88d4fde1461043a57600080fd5b80634f6ccce7146103ba5780636352211e146103cd57806370a08231146103e0578063715018a6146103f357600080fd5b806323b872dd116101b35780632f745c59116101825780632f745c591461035b57806330799dc61461036e57806342842e0e14610381578063432f320814610394578063499309c3146103a757600080fd5b806323b872dd1461030f57806327257c75146103225780632df78d31146103355780632eba8a9a1461034857600080fd5b8063095ea7b3116101fa578063095ea7b3146102ab5780630d71aba5146102c057806315b2d0f6146102d3578063176c4182146102e657806318160ddd1461030757600080fd5b806301716d9c1461022c57806301ffc9a71461025557806306fdde0314610278578063081812fc14610280575b600080fd5b61023f61023a36600461350a565b610534565b60405161024c9190613bac565b60405180910390f35b6102686102633660046134b7565b6105ec565b604051901515815260200161024c565b61023f610617565b61029361028e3660046134f1565b6106a9565b6040516001600160a01b03909116815260200161024c565b6102be6102b936600461348d565b610743565b005b61023f6102ce3660046134f1565b610859565b61023f6102e13660046134f1565b610926565b6102f96102f43660046134f1565b610931565b60405190815260200161024c565b6008546102f9565b6102be61031d366004613339565b6109bd565b61023f6103303660046134f1565b6109ee565b61023f6103433660046134f1565b610a22565b61023f6103563660046134f1565b610a49565b6102f961036936600461348d565b610a73565b61023f61037c3660046134f1565b610b09565b6102be61038f366004613339565b610b2f565b6102be6103a236600461352c565b610b4a565b61023f6103b53660046134f1565b610f4a565b6102f96103c83660046134f1565b610f74565b6102936103db3660046134f1565b611007565b6102f96103ee3660046132e4565b61107e565b6102be611105565b6102f96104093660046134f1565b61113b565b600b546001600160a01b0316610293565b61023f6111b3565b6102be610435366004613451565b6111c2565b6102be610448366004613375565b611287565b61023f61045b3660046134f1565b6112bf565b61023f61046e3660046134f1565b6112e7565b6102be61048136600461352c565b611982565b61023f6104943660046134f1565b611d35565b61023f6104a73660046134f1565b611d5f565b61023f6104ba3660046134f1565b611d87565b61023f6104cd3660046134f1565b611dab565b6102686104e0366004613306565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102be61051c3660046132e4565b611dce565b61023f61052f3660046134f1565b611e69565b6060600061057261054484611e8a565b61054d86611e8a565b60405160200161055e929190613b36565b604051602081830303815290604052611f90565b6035549091506000906105859083613d9f565b905060005b6039548110156105cf57603981815481106105a7576105a7613df5565b906000526020600020015482116105bd576105cf565b806105c781613d84565b91505061058a565b6105e26105dd826001613cc1565b611fc1565b9695505050505050565b60006001600160e01b0319821663780e9d6360e01b14806106115750610611826120c7565b92915050565b60606000805461062690613d4f565b80601f016020809104026020016040519081016040528092919081815260200182805461065290613d4f565b801561069f5780601f106106745761010080835404028352916020019161069f565b820191906000526020600020905b81548152906001019060200180831161068257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107275760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061074e82611007565b9050806001600160a01b0316836001600160a01b031614156107bc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161071e565b336001600160a01b03821614806107d857506107d881336104e0565b61084a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161071e565b6108548383612117565b505050565b6000818152600c6020526040902054600f8054606092670100000000000000900460ff1690811061088c5761088c613df5565b9060005260206000200180546108a190613d4f565b80601f01602080910402602001604051908101604052809291908181526020018280546108cd90613d4f565b801561091a5780601f106108ef5761010080835404028352916020019161091a565b820191906000526020600020905b8154815290600101906020018083116108fd57829003601f168201915b50505050509050919050565b606061061182612185565b60008061095061094084611e8a565b60405160200161055e91906139df565b9050600061095f606483613d9f565b905060005b6037548110156109a9576037818154811061098157610981613df5565b90600052602060002001548211610997576109a9565b806109a181613d84565b915050610964565b6109b4816001613cc1565b95945050505050565b6109c733826123ba565b6109e35760405162461bcd60e51b815260040161071e90613c70565b6108548383836124ad565b6000818152600c60205260409020546010805460609268010000000000000000900460ff1690811061088c5761088c613df5565b6000818152600c60205260409020546060906106119065010000000000900460ff16611e8a565b6060610611826040518060400160405280600681526020016554726169743160d01b815250612658565b6000610a7e8361107e565b8210610ae05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161071e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000818152600c602052604090205460609061061190640100000000900460ff16611e8a565b61085483838360405180602001604052806000815250611287565b6002600a541415610b9d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161071e565b6002600a55600b546001600160a01b03163314610bcc5760405162461bcd60e51b815260040161071e90613c11565b6126488a118015610bde57506127108a105b610bfa5760405162461bcd60e51b815260040161071e90613c46565b60008a8152600260205260409020546001600160a01b031615610c2f5760405162461bcd60e51b815260040161071e90613c46565b600e548910610c735760405162461bcd60e51b815260206004820152601060248201526f19d95b99195c9259081a5b9d985b1a5960821b604482015260640161071e565b601e81838587610c838a8c613cc1565b610c8d9190613cc1565b610c979190613cc1565b610ca19190613cc1565b610cab9190613cc1565b1115610cf25760405162461bcd60e51b8152602060048201526016602482015275185d1d1c9a589d5d195cc81b9d5b481a5b9d985b1a5960521b604482015260640161071e565b600f548810610d345760405162461bcd60e51b815260206004820152600e60248201526d1c9858d95259081a5b9d985b1a5960921b604482015260640161071e565b6010548710610d775760405162461bcd60e51b815260206004820152600f60248201526e185b1a59db9259081a5b9d985b1a59608a1b604482015260640161071e565b88600c60008c815260200190815260200160002060000160006101000a81548160ff021916908360ff16021790555085600c60008c815260200190815260200160002060000160016101000a81548160ff021916908360ff16021790555084600c60008c815260200190815260200160002060000160026101000a81548160ff021916908360ff16021790555083600c60008c815260200190815260200160002060000160036101000a81548160ff021916908360ff16021790555082600c60008c815260200190815260200160002060000160046101000a81548160ff021916908360ff16021790555081600c60008c815260200190815260200160002060000160056101000a81548160ff021916908360ff16021790555080600c60008c815260200190815260200160002060000160066101000a81548160ff021916908360ff16021790555087600c60008c815260200190815260200160002060000160076101000a81548160ff021916908360ff16021790555086600c60008c815260200190815260200160002060000160086101000a81548160ff021916908360ff160217905550610f39610f33600b546001600160a01b031690565b8b6126d8565b50506001600a555050505050505050565b6060610611826040518060400160405280600681526020016554726169743360d01b815250612658565b6000610f7f60085490565b8210610fe25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161071e565b60088281548110610ff557610ff5613df5565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106115760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161071e565b60006001600160a01b0382166110e95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161071e565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b0316331461112f5760405162461bcd60e51b815260040161071e90613c11565b61113960006126f6565b565b60008061115a61114a84611e8a565b60405160200161055e9190613ac4565b90506000611169606483613d9f565b905060005b6038548110156109a9576038818154811061118b5761118b613df5565b906000526020600020015482116111a1576109a9565b806111ab81613d84565b91505061116e565b60606001805461062690613d4f565b6001600160a01b03821633141561121b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161071e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61129133836123ba565b6112ad5760405162461bcd60e51b815260040161071e90613c70565b6112b984848484612748565b50505050565b6000818152600c6020526040902054606090610611906601000000000000900460ff16611e8a565b60606112f161328a565b60405180611980016040528061195c81526020016141ab61195c9139815261131883611d5f565b602082810191909152604080518082018252601e81527f3c2f747370616e3e3c747370616e20783d2236302220793d22323536223e00009281019290925282015261136283610859565b606082015260408051808201909152601e81527f3c2f747370616e3e3c747370616e20783d2236302220793d22333030223e0000602082015260808201526113a9836109ee565b60a082015260408051606081019091526024808252613e92602083013960c08201526113d76105dd8461113b565b60e0820152604080518082019091526002815261111f60f11b602082015261010082015261140483610926565b610120820152604080518082019091526002815261010160f51b60208201526101408201526114328361277b565b61016082015260408051606081019091526024808252615b476020830139610180820152611461836001610534565b6101a0820152604080518082019091526002815261111f60f11b60208201526101c082015261148f83610a49565b6101e082015260408051606081019091526024808252613eb660208301396102008201526114be836002610534565b610220820152604080518082019091526002815261111f60f11b60208201526102408201526114ec83611d35565b61026082015260408051606081019091526024808252615b6b602083013961028082015261151b836003610534565b6102a0820152604080518082019091526002815261111f60f11b60208201526102c082015261154983610f4a565b6102e08201526040805161022081019091526101e5808252613eda602083013961030082015261157883611dab565b61032082015260408051808201909152601f81527f3c2f747370616e3e3c747370616e20783d223631382220793d22323630223e0060208201526103408201526115c183611d87565b61036082015260408051808201909152601f81527f3c2f747370616e3e3c747370616e20783d223631382220793d22333034223e00602082015261038082015261160a83611e69565b6103a082015260408051808201909152601f81527f3c2f747370616e3e3c747370616e20783d223631382220793d22333438223e0060208201526103c082015261165383610a22565b6103e082015260408051808201909152601f81527f3c2f747370616e3e3c747370616e20783d223631382220793d22333932223e00602082015261040082015261169c836112bf565b61042082015260408051808201909152601f81527f3c2f747370616e3e3c747370616e20783d223631382220793d22343336223e0060208201526104408201526116e583610b09565b6104608201526040805160a08101909152607180825261413a6020830139610480820152604080518082018252600a8152691e17b39f1e17b9bb339f60b11b6020808301919091526104a0840191909152825181840151838501516060860151608087015160a088015160c0890151975160009861176598909101613662565b60408051808303601f190181529082905260e08401516101008501516101208601516101408701516101608801516101808901516101a08a01516101c08b01519799506117b7988a9890602001613799565b60408051808303601f19018152908290526101e08401516102008501516102208601516102408701516102608801516102808901516102a08a0151969850611804978997906020016136f4565b60408051808303601f19018152908290526102c08401516102e08501516103008601516103208701516103408801516103608901516103808a0151969850611851978997906020016136f4565b60408051601f19818403018152908290526103a08401516103c08501516103e086015161040087015161042088015161044089015195975061189896889690602001613662565b60408051808303601f19018152908290526104608401516104808501516104a08601519294506118cd9385939060200161360b565b604051602081830303815290604052905060006119156118ec86611d5f565b6118f587610859565b6118fe886109ee565b611907896128aa565b6119108a6129cf565b612ae0565b9050600061195561192587611e8a565b61192e85612c4e565b84604051602001611941939291906138c1565b604051602081830303815290604052612c4e565b9050806040516020016119689190613af1565b60408051601f198184030181529190529695505050505050565b6002600a5414156119d55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161071e565b6002600a5589158015906119eb57506126488a11155b611a075760405162461bcd60e51b815260040161071e90613c46565b60008a8152600260205260409020546001600160a01b031615611a3c5760405162461bcd60e51b815260040161071e90613c46565b600e548910611a805760405162461bcd60e51b815260206004820152601060248201526f19d95b99195c9259081a5b9d985b1a5960821b604482015260640161071e565b601e81838587611a908a8c613cc1565b611a9a9190613cc1565b611aa49190613cc1565b611aae9190613cc1565b611ab89190613cc1565b1115611aff5760405162461bcd60e51b8152602060048201526016602482015275185d1d1c9a589d5d195cc81b9d5b481a5b9d985b1a5960521b604482015260640161071e565b600f548810611b415760405162461bcd60e51b815260206004820152600e60248201526d1c9858d95259081a5b9d985b1a5960921b604482015260640161071e565b6010548710611b845760405162461bcd60e51b815260206004820152600f60248201526e185b1a59db9259081a5b9d985b1a59608a1b604482015260640161071e565b88600c60008c815260200190815260200160002060000160006101000a81548160ff021916908360ff16021790555085600c60008c815260200190815260200160002060000160016101000a81548160ff021916908360ff16021790555084600c60008c815260200190815260200160002060000160026101000a81548160ff021916908360ff16021790555083600c60008c815260200190815260200160002060000160036101000a81548160ff021916908360ff16021790555082600c60008c815260200190815260200160002060000160046101000a81548160ff021916908360ff16021790555081600c60008c815260200190815260200160002060000160056101000a81548160ff021916908360ff16021790555080600c60008c815260200190815260200160002060000160066101000a81548160ff021916908360ff16021790555087600c60008c815260200190815260200160002060000160076101000a81548160ff021916908360ff16021790555086600c60008c815260200190815260200160002060000160086101000a81548160ff021916908360ff160217905550610f39610f333390565b606061061182604051806040016040528060068152602001652a3930b4ba1960d11b815250612658565b6000818152600c6020526040902054600e805460609260ff1690811061088c5761088c613df5565b6000818152600c60205260409020546060906106119062010000900460ff16611e8a565b6000818152600c602052604090205460609061061190610100900460ff16611e8a565b600b546001600160a01b03163314611df85760405162461bcd60e51b815260040161071e90613c11565b6001600160a01b038116611e5d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071e565b611e66816126f6565b50565b6000818152600c6020526040902054606090610611906301000000900460ff165b606081611eae5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ed85780611ec281613d84565b9150611ed19050600a83613cd9565b9150611eb2565b60008167ffffffffffffffff811115611ef357611ef3613e0b565b6040519080825280601f01601f191660200182016040528015611f1d576020820181803683370190505b5090505b8415611f8857611f32600183613d0c565b9150611f3f600a86613d9f565b611f4a906030613cc1565b60f81b818381518110611f5f57611f5f613df5565b60200101906001600160f81b031916908160001a905350611f81600a86613cd9565b9450611f21565b949350505050565b600081604051602001611fa391906135c0565b60408051601f19818403018152919052805160209091012092915050565b60608160011415611fef5750506040805180820190915260078152660236666633030360cc1b602082015290565b816002141561201b5750506040805180820190915260078152660236330303030360cc1b602082015290565b81600314156120475750506040805180820190915260078152662365643764333160c81b602082015290565b81600414156120735750506040805180820190915260078152662335623962643560c81b602082015290565b816005141561209f5750506040805180820190915260078152662337306164343760c81b602082015290565b505060408051808201909152600781526611b3333333333360c91b602082015290565b919050565b60006001600160e01b031982166380ac58cd60e01b14806120f857506001600160e01b03198216635b5e139f60e01b145b8061061157506301ffc9a760e01b6001600160e01b0319831614610611565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061214c82611007565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060600061219283610931565b9050600061219f8461113b565b6000838152600d60209081526040808320848452825280832080548251818502810185019093528083529495509293909291849084015b828210156122825783829060005260206000200180546121f590613d4f565b80601f016020809104026020016040519081016040528092919081815260200182805461222190613d4f565b801561226e5780601f106122435761010080835404028352916020019161226e565b820191906000526020600020905b81548152906001019060200180831161225157829003601f168201915b5050505050815260200190600101906121d6565b50505050905060006122a661229687611e8a565b60405160200161055e9190613895565b90506000828351836122b89190613d9f565b815181106122c8576122c8613df5565b60200260200101519050600060368080549050846122e69190613d9f565b815481106122f6576122f6613df5565b90600052602060002001805461230b90613d4f565b80601f016020809104026020016040519081016040528092919081815260200182805461233790613d4f565b80156123845780601f1061235957610100808354040283529160200191612384565b820191906000526020600020905b81548152906001019060200180831161236757829003601f168201915b50505050509050808260405160200161239e929190613859565b60408051601f1981840301815291905298975050505050505050565b6000818152600260205260408120546001600160a01b03166124335760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161071e565b600061243e83611007565b9050806001600160a01b0316846001600160a01b031614806124795750836001600160a01b031661246e846106a9565b6001600160a01b0316145b80611f8857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611f88565b826001600160a01b03166124c082611007565b6001600160a01b0316146125285760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161071e565b6001600160a01b03821661258a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161071e565b612595838383612db4565b6125a0600082612117565b6001600160a01b03831660009081526003602052604081208054600192906125c9908490613d0c565b90915550506001600160a01b03821660009081526003602052604081208054600192906125f7908490613cc1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060600061267a8361266986611e8a565b60405160200161055e9291906135dc565b60355490915060009061268d9083613d9f565b90506000603582815481106126a4576126a4613df5565b906000526020600020016040516020016126be9190613a11565b60408051808303601f190181529190529695505050505050565b6126f2828260405180602001604052806000815250612e6c565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127538484846124ad565b61275f84848484612e9f565b6112b95760405162461bcd60e51b815260040161071e90613bbf565b604080518082018252600880825267262378323542323b60c01b6020808401919091528351808501855282815267262378323033423b60c01b818301528451808601865283815267262378323139313b60c01b818401528551808701875284815267262378323543423b60c01b818501528651808801885285815267262378323543363b60c01b818601528751808901895295865267262378323541303b60c01b86860152875194850190975260008085526060979395929491939291906128428a610931565b905080600114156128555783915061289d565b80600214156128665787915061289d565b80600314156128775785915061289d565b80600414156128885784915061289d565b80600514156128995786915061289d565b8291505b5098975050505050505050565b604080518082018252600881526720b9b9b0b9b9b4b760c11b602080830191909152825180840184526004808252634d61676560e01b8284015284518086018652600680825265243ab73a32b960d11b828601528651808801885281815265141c9a595cdd60d21b81870152875180890189529384526354616e6b60e01b848701528751808901909852908752652bb0b934b7b960d11b9487019490945260609592939092909190600061295d89610931565b604080516020810190915260008152909150600182141561297f5750826129c2565b816002141561298f5750866129c2565b816003141561299f5750846129c2565b81600414156129af5750836129c2565b81600514156129bf5750856129c2565b50815b9998505050505050505050565b606060006129dc8361113b565b90508060011415612a0957505060408051808201909152600481526319dbdb1960e21b6020820152919050565b8060021415612a335750506040805180820190915260038152621c995960ea1b6020820152919050565b8060031415612a605750506040805180820190915260068152656f72616e676560d01b6020820152919050565b8060041415612a8b575050604080518082019091526004815263626c756560e01b6020820152919050565b8060051415612ab757505060408051808201909152600581526433b932b2b760d91b6020820152919050565b5050604080518082019091526005815264776869746560d81b6020820152919050565b50919050565b6060612aea6132b2565b60405180606001604052806025815260200161411560259139815260208082018890526040805160608101909152602f80825290916140e6908301396040808301919091526060808301859052815190810190915260278082526140bf6020830139608082015260a081018690526040805160608101909152602c808252613e38602083013960c082015260e081018590526040805160608101909152602e808252613e6460208301396101008201526101208101849052604080518082018252600481526322207d5d60e01b602080830191909152610140840191909152825181840151838501516060860151608087015160a088015160c089015160e08a01519851600099612bfd999091016136f4565b60408051808303601f1901815290829052610100840151610120850151610140860151929450612c329385939060200161360b565b60408051808303601f1901815291905298975050505050505050565b805160609080612c6e575050604080516020810190915260008152919050565b60006003612c7d836002613cc1565b612c879190613cd9565b612c92906004613ced565b90506000612ca1826020613cc1565b67ffffffffffffffff811115612cb957612cb9613e0b565b6040519080825280601f01601f191660200182016040528015612ce3576020820181803683370190505b5090506000604051806060016040528060408152602001615b07604091399050600181016020830160005b86811015612d6f576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612d0e565b506003860660018114612d895760028114612d9a57612da6565b613d3d60f01b600119830152612da6565b603d60f81b6000198301525b505050918152949350505050565b6001600160a01b038316612e0f57612e0a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612e32565b816001600160a01b0316836001600160a01b031614612e3257612e328382612fac565b6001600160a01b038216612e495761085481613049565b826001600160a01b0316826001600160a01b0316146108545761085482826130f8565b612e76838361313c565b612e836000848484612e9f565b6108545760405162461bcd60e51b815260040161071e90613bbf565b60006001600160a01b0384163b15612fa157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ee3903390899088908890600401613b79565b602060405180830381600087803b158015612efd57600080fd5b505af1925050508015612f2d575060408051601f3d908101601f19168201909252612f2a918101906134d4565b60015b612f87573d808015612f5b576040519150601f19603f3d011682016040523d82523d6000602084013e612f60565b606091505b508051612f7f5760405162461bcd60e51b815260040161071e90613bbf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f88565b506001949350505050565b60006001612fb98461107e565b612fc39190613d0c565b600083815260076020526040902054909150808214613016576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061305b90600190613d0c565b6000838152600960205260408120546008805493945090928490811061308357613083613df5565b9060005260206000200154905080600883815481106130a4576130a4613df5565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806130dc576130dc613ddf565b6001900381819060005260206000200160009055905550505050565b60006131038361107e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166131925760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161071e565b6000818152600260205260409020546001600160a01b0316156131f75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161071e565b61320360008383612db4565b6001600160a01b038216600090815260036020526040812080546001929061322c908490613cc1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b604051806104c001604052806026905b606081526020019060019003908161329a5790505090565b60408051610160810190915260608152600a6020820161329a565b80356001600160a01b03811681146120c257600080fd5b6000602082840312156132f657600080fd5b6132ff826132cd565b9392505050565b6000806040838503121561331957600080fd5b613322836132cd565b9150613330602084016132cd565b90509250929050565b60008060006060848603121561334e57600080fd5b613357846132cd565b9250613365602085016132cd565b9150604084013590509250925092565b6000806000806080858703121561338b57600080fd5b613394856132cd565b93506133a2602086016132cd565b925060408501359150606085013567ffffffffffffffff808211156133c657600080fd5b818701915087601f8301126133da57600080fd5b8135818111156133ec576133ec613e0b565b604051601f8201601f19908116603f0116810190838211818310171561341457613414613e0b565b816040528281528a602084870101111561342d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561346457600080fd5b61346d836132cd565b91506020830135801515811461348257600080fd5b809150509250929050565b600080604083850312156134a057600080fd5b6134a9836132cd565b946020939093013593505050565b6000602082840312156134c957600080fd5b81356132ff81613e21565b6000602082840312156134e657600080fd5b81516132ff81613e21565b60006020828403121561350357600080fd5b5035919050565b6000806040838503121561351d57600080fd5b50508035926020909101359150565b6000806000806000806000806000806101408b8d03121561354c57600080fd5b505088359a60208a01359a5060408a013599606081013599506080810135985060a0810135975060c0810135965060e081013595506101008101359450610120013592509050565b600081518084526135ac816020860160208601613d23565b601f01601f19169290920160200192915050565b600082516135d2818460208701613d23565b9190910192915050565b600083516135ee818460208801613d23565b835190830190613602818360208801613d23565b01949350505050565b6000855161361d818460208a01613d23565b855190830190613631818360208a01613d23565b8551910190613644818360208901613d23565b8451910190613657818360208801613d23565b019695505050505050565b6000885160206136758285838e01613d23565b8951918401916136888184848e01613d23565b895192019161369a8184848d01613d23565b88519201916136ac8184848c01613d23565b87519201916136be8184848b01613d23565b86519201916136d08184848a01613d23565b85519201916136e28184848901613d23565b919091019a9950505050505050505050565b6000895160206137078285838f01613d23565b8a519184019161371a8184848f01613d23565b8a5192019161372c8184848e01613d23565b895192019161373e8184848d01613d23565b88519201916137508184848c01613d23565b87519201916137628184848b01613d23565b86519201916137748184848a01613d23565b85519201916137868184848901613d23565b919091019b9a5050505050505050505050565b60008a516137ab818460208f01613d23565b8a516137bd8183860160208f01613d23565b8a5191840101906137d2818360208e01613d23565b89516137e48183850160208e01613d23565b89519290910101906137fa818360208c01613d23565b875161380c8183850160208c01613d23565b8751929091010190613822818360208a01613d23565b8551910190613835818360208901613d23565b84516138478183850160208901613d23565b9101019b9a5050505050505050505050565b6000835161386b818460208801613d23565b600160fd1b9083019081528351613889816001840160208801613d23565b01600101949350505050565b636974656d60e01b8152600082516138b4816004850160208701613d23565b9190910160040192915050565b6f7b226e616d65223a2022526f6c65202360801b815283516000906138ed816010850160208901613d23565b7f222c20226465736372697074696f6e223a2022526f6c652069732061207365656010918401918201527f642c20612073656564206163636f756e7420666f72204d65746176657273652060308201527f47616d652e222c2022696d616765223a2022646174613a696d6167652f73766760508201526b0ade1b5b0ed8985cd94d8d0b60a21b6070820152845161398b81607c840160208901613d23565b601160f91b607c92909101918201526d161130ba3a3934b13aba32b9911d60911b607d82015283516139c481608b840160208801613d23565b607d60f81b608b9290910191820152608c0195945050505050565b6927b1b1bab830ba34b7b760b11b815260008251613a0481600a850160208701613d23565b91909101600a0192915050565b601160f91b81528154600090600190829080831c81841680613a3457607f821691505b6020808310821415613a5457634e487b7160e01b85526022600452602485fd5b818015613a685760018114613a7d57613aae565b60ff1985168988015283890187019550613aae565b60008a81526020902060005b85811015613aa45781548b82018a0152908801908301613a89565b505086848a010195505b50505050506109b481601160f91b815260010190565b6431b7b637b960d91b815260008251613ae4816005850160208701613d23565b9190910160050192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613b2981601d850160208701613d23565b91909101601d0192915050565b64151c985a5d60da1b815260008351613b56816005850160208801613d23565b835190830190613b6d816005840160208801613d23565b01600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906105e290830184613594565b6020815260006132ff6020830184613594565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f151bdad95b881251081a5b9d985b1a5960821b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115613cd457613cd4613db3565b500190565b600082613ce857613ce8613dc9565b500490565b6000816000190483118215151615613d0757613d07613db3565b500290565b600082821015613d1e57613d1e613db3565b500390565b60005b83811015613d3e578181015183820152602001613d26565b838111156112b95750506000910152565b600181811c90821680613d6357607f821691505b60208210811415612ada57634e487b7160e01b600052602260045260246000fd5b6000600019821415613d9857613d98613db3565b5060010190565b600082613dae57613dae613dc9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611e6657600080fdfe22207d2c207b202274726169745f74797065223a2022416c69676e6d656e74222c202276616c7565223a202222207d2c207b202274726169745f74797065223a20224f636375706174466c6167222c202276616c7565223a20223c2f747370616e3e3c747370616e20783d2236302220793d22333434222066696c6c3d223c2f747370616e3e3c747370616e20783d2236302220793d22343332222066696c6c3d223c2f747370616e3e3c2f746578743e3c746578742069643d225374722d4465782d436f6e2d4368612d696e742220666f6e742d66616d696c793d2247656f726769612220666f6e742d73697a653d2232382220666f6e742d7765696768743d226e6f726d616c22206c696e652d73706163696e673d223434222066696c6c3d2223464646464646223e3c747370616e20783d223532322220793d22323136223e5374723c2f747370616e3e3c747370616e20783d223532322220793d22323630223e4465783c2f747370616e3e3c747370616e20783d223532322220793d22333034223e436f6e3c2f747370616e3e3c747370616e20783d223532322220793d22333438223e4368613c2f747370616e3e3c747370616e20783d223532322220793d22333932223e496e743c2f747370616e3e3c747370616e20783d223532322220793d22343336223e5769733c2f747370616e3e3c2f746578743e3c746578742069643d22322d332d362d372d312d312220666f6e742d66616d696c793d2247656f726769612220666f6e742d73697a653d2232382220666f6e742d7765696768743d226e6f726d616c22206c696e652d73706163696e673d223434222066696c6c3d2223464646464646223e3c747370616e20783d223631382220793d22323136223e22207d2c207b202274726169745f74797065223a202252616365222c202276616c7565223a202222207d2c207b202274726169745f74797065223a20224f636375706174436f6c6f72222c202276616c7565223a20225b7b202274726169745f74797065223a202247656e646572222c202276616c7565223a20223c2f747370616e3e3c2f746578743e3c6c696e652078313d223439302e35222079313d223139322e35222078323d223439302e35222079323d223437352e3522207374726f6b653d222339373937393722207374726f6b652d6c696e656361703d22737175617265223e3c2f6c696e653e3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d38223f3e3c7376672077696474683d22373530707822206865696768743d223735307078222076696577426f783d223020302037353020373530222076657273696f6e3d22312e312220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672220786d6c6e733a786c696e6b3d22687474703a2f2f7777772e77332e6f72672f313939392f786c696e6b223e3c67207374726f6b653d226e6f6e6522207374726f6b652d77696474683d2231222066696c6c3d226e6f6e65222066696c6c2d72756c653d226576656e6f6464223e3c726563742066696c6c3d22233233314433392220783d22302220793d2230222077696474683d2237353022206865696768743d22373530223e3c2f726563743e3c67207472616e73666f726d3d227472616e736c6174652836302e3030303030302c2033352e30303030303029222066696c6c3d2223464646464646222066696c6c2d72756c653d226e6f6e7a65726f223e3c67207472616e73666f726d3d227472616e736c61746528302e3030303030302c2031352e30303030303029223e3c7061746820643d224d34312e373531383234382c37372e31303737383434204333392e313639383836392c37332e353735363438372033362e383339383435342c36392e393438393032322033342e373631373030332c36362e32323735343439204333312e3932373836362c36302e393239333431332032392e333737343135322c35352e343733343533312032372e313130333437382c34392e38353938383032204c31382e393836363839362c34392e38353938383032204c31382e393836363839362c37372e31303737383434204c302c37372e31303737383434204c302c312e3839323231353537204c33322e323131323439352c312e3839323231353537204333352e303435303833372c312e39353532383934322033372e3837383931382c322e33363532363934362034302e373132373532332c332e3132323135353639204334342e313133333533342c342e31333133333733332034372e323330353731312c352e37373132353734392035302e303634343035332c382e3034313931363137204335352e363036313235372c31322e373039333831322035382e3437313434372c31382e363639383630332035382e363630333639332c32352e39323333353333204335382e353937333935322c33302e3333383532332035372e343332333734342c33342e333735323439352035352e3136353330372c33382e30333335333239204335322e353833333639312c34312e393434313131382034392e3231343235352c34342e393731363536372034352e303537393634382c34372e31313631363737204334372e373032383736382c35322e303335393238312035302e353638313938312c35362e3739383030342035332e363533393238372c36312e34303233393532204335372e323433343532312c36362e373633363732372036302e393930343130382c37312e393938383032342036342e383934383034362c37372e31303737383434204c34312e373531383234382c37372e31303737383434205a204d31382e393836363839362c33362e32333539323831204c32382e363231373236312c33362e32333539323831204333312e363434343832362c33362e3239393030322033342e333230383831362c33352e333834343331312033362e363530393233312c33332e34393232313536204333382e363636303934322c33312e363633303733392033392e373035313636372c32392e333630383738322033392e373638313430382c32362e35383536323837204333392e373035313636372c32332e383733343533312033382e363033313230312c32312e363032373934342033362e343632303030392c31392e37373336353237204333342e313934393333342c31382e303037353834382033312e363132393935362c31372e3039333031342032382e373136313837322c31372e30323939343031204c31382e393836363839362c31372e30323939343031204c31382e393836363839362c33362e32333539323831205a223e3c2f706174683e3c7061746820643d224d3130362e3435373730372c32302e30353734383520433131302e3137333137392c32312e33313839363231203131332e3434373833322c32332e32373432353135203131362e3238313636362c32352e3932333335333320433131392e3035323532362c32382e37363136373636203132312e3133303637312c33322e303431353137203132322e3531363130312c33352e3736323837343320433132342e30323734382c33392e39383838323234203132342e3738333136392c34342e33343039313832203132342e3738333136392c34382e3831393136313720433132342e3738333136392c35332e333630343739203132342e30323734382c35372e37343431313138203132322e3531363130312c36312e3937303035393920433132312e3133303637312c36352e36393134313732203131392e3035323532362c36382e39333937323036203131362e3238313636362c37312e3731343937303120433131332e3434373833322c37342e34323731343537203131302e3137333137392c37362e33383234333531203130362e3435373730372c37372e3538303833383320433130332e3337313937372c37382e34363338373233203130302e3235343735392c37382e393336393236312039372e313036303534312c3739204339332e383934333735332c37382e393336393236312039302e373435363730352c37382e343633383732332038372e363539393339392c37372e35383038333833204338332e393434343638332c37362e333832343335312038302e363338333238332c37342e343237313435372037372e37343135322c37312e37313439373031204337342e393730363539382c36382e393339373230362037322e383932353134372c36352e363931343137322037312e353037303834362c36312e39373030353939204336392e393935373036332c35372e373434313131382036392e323731353034322c35332e3336303437392036392e333334343738332c34382e38313931363137204336392e323731353034322c34342e333430393138322036392e393935373036332c33392e393838383232342037312e353037303834362c33352e37363238373433204337322e383932353134372c33322e3034313531372037342e393730363539382c32382e373631363736362037372e37343135322c32352e39323333353333204338302e363338333238332c32332e323734323531352038332e393434343638332c32312e333138393632312038372e363539393339392c32302e303537343835204339302e373435363730352c31392e313734343531312039332e383934333735332c31382e373031333937322039372e313036303534312c31382e3633383332333420433130302e3235343735392c31382e37303133393732203130332e3337313937372c31392e31373434353131203130362e3435373730372c32302e303537343835205a204d3130302e383834352c36322e3732363934363120433130322e3038313030382c36312e38343339313232203130332e3038383539332c36302e37343031313938203130332e3930373235362c35392e3431353536383920433130342e3738383839342c35372e37373536343837203130352e3431383633352c35362e30303935383038203130352e3739363437392c35342e3131373336353320433130362e3034383337362c35322e33353132393734203130362e3230353831312c35302e35383532323935203130362e3236383738352c34382e3831393136313720433130362e3230353831312c34372e31313631363737203130362e3034383337362c34352e33383136333637203130352e3739363437392c34332e3631353536383920433130352e3431383633352c34312e37323333353333203130342e3738383839342c33392e39353732383534203130332e3930373235362c33382e3331373336353320433130332e3038383539332c33362e39393238313434203130322e3038313030382c33352e383839303232203130302e383834352c33352e303035393838204339392e3638373939322c33342e323439313031382039382e343238353130312c33332e383339313231382039372e313036303534312c33332e37373630343739204339352e363537363439392c33332e383339313231382039342e3336363638312c33342e323439313031382039332e323333313437332c33352e303035393838204339312e393733363635342c33352e3838393032322039302e393334353932382c33362e393932383134342039302e313135393239362c33382e33313733363533204338392e323334323932332c33392e393537323835342038382e363034353531332c34312e373233333533332038382e323236373036372c34332e36313535363839204338372e393734383130342c34352e333831363336372038372e383438383632322c34372e313136313637372038372e383438383632322c34382e38313931363137204338372e383438383632322c35302e353835323239352038372e393734383130342c35322e333531323937342038382e323236373036372c35342e31313733363533204338382e363034353531332c35362e303039353830382038392e323334323932332c35372e373735363438372039302e313135393239362c35392e34313535363839204339302e393334353932382c36302e383033313933362039312e393733363635342c36312e3930363938362039332e323333313437332c36322e37323639343631204339342e3336363638312c36332e343833383332332039352e363537363439392c36332e383632323735342039372e313036303534312c36332e38363232373534204339382e343238353130312c36332e383632323735342039392e3638373939322c36332e34383338333233203130302e383834352c36322e37323639343631205a223e3c2f706174683e3c7061746820643d224d3136322e3735363534382c37372e3836343637303720433135382e3937383130322c37382e36323135353639203135352e3136383136392c3739203135312e33323637352c373920433134382e3330333939332c37382e39333639323631203134352e3433383637322c37382e33363932363135203134322e3733303738362c37372e32393730303620433134302e3237343739362c37362e31363136373636203133382e3139363635312c37342e35353332393334203133362e34393633352c37322e3437313835363320433133342e37393630352c37302e31333831323338203133332e3633313032392c36372e35323035353839203133332e3030313238382c36342e3631393136313720433133322e3433343532312c36322e30333331333337203133322e3138323632352c35392e33383430333139203133322e3234353539392c35362e36373138353633204c3133322e3234353539392c2d382e3430333132353137652d3135204c3135302e3735393938332c2d382e3430333132353137652d3135204c3135302e3735393938332c35322e3331393736303520433135302e3633343033352c35342e363533343933203135302e3735393938332c35362e39323431353137203135312e3133373832372c35392e3133313733363520433135312e3338393732342c36302e34353632383734203135322e3031393436352c36312e35323835343239203135332e30323730352c36322e33343835303320433135332e3937313636322c36332e31303533383932203135352e3037333730382c36332e35373834343331203135362e33333331392c36332e3736373636343720433135372e3834343536382c36342e30313939363031203135392e3338373433342c36342e30383330333339203136302e3936313738362c36332e39353638383632204c3136322e3735363534382c37372e38363436373037205a223e3c2f706174683e3c7061746820643d224d3138342e3736353939342c35332e3634343331313420433138352e3230363831332c35362e36303837383234203138362e3536303735362c35392e30333731323537203138382e3832373832332c36302e3932393334313320433139302e3135303237392c36312e393338353233203139312e3539383638332c36322e36393534303932203139332e3137333033362c36332e3220433139342e39333633312c36332e37303435393038203139362e3736323535392c36332e39323533343933203139382e3635313738322c36332e3836323237353420433230312e3137303734362c36332e38363232373534203230332e3635383232322c36332e35313533363933203230362e3131343231322c36322e3832313535363920433230382e3633333137362c36322e31323737343435203231312e3035373637392c36312e31383136333637203231332e33383737322c35392e39383332333335204c3231372e3434393534392c37322e3437313835363320433231342e32333738372c37342e373432353135203231302e3731313332312c37362e34313339373231203230362e3836393930312c37372e3438363232373520433230332e3039313435362c37382e34393534303932203139392e3238313532332c3739203139352e3434303130332c373920433139312e3033313931362c3739203138362e3831323635322c37382e32313135373638203138322e37383233312c37362e3633343733303520433137392e3132393831332c37352e30353738383432203137352e3934393632312c37322e38313837363235203137332e3234313733352c36392e3931373336353320433137302e3539363832332c36362e37363336373237203136382e373037362c36332e32203136372e3537343036362c35392e3232363334373320433136362e3639323432392c35352e38323033353933203136362e32353136312c35322e33353132393734203136362e32353136312c34382e3831393136313720433136362e3138383633362c34342e32373738343433203136362e3838313335312c33392e38333131333737203136382e3332393735352c33352e3437393034313920433136392e3731353138352c33312e37353736383436203137312e37393333332c32382e35303933383132203137342e3536343139312c32352e3733343133313720433137372e3436303939392c32332e30383530323939203138302e3739383632362c32312e31393238313434203138342e3537373037322c32302e30353734383520433138372e3732353737362c31392e31373434353131203139302e3936383934322c31382e37303133393732203139342e3330363536392c31382e3633383332333420433139372e3332393332362c31382e37303133393732203230302e3238393130382c31392e31373434353131203230332e3138353931372c32302e30353734383520433230362e3634393439322c32312e31393238313434203230392e3637323234382c32332e303533343933203231322e3235343138362c32352e36333935323120433231342e3833363132342c32382e34313437373035203231362e3735363833342c33312e36203231382e3031363331362c33352e3139353230393620433231392e3333383737322c33392e33353830383338203232302c34332e36313535363839203232302c34372e3936373636343720433232302c34392e39323239353431203231392e3933373032362c35312e38313531363937203231392e3831313037382c35332e36343433313134204c3138342e3736353939342c35332e36343433313134205a204d3230322e3532343638392c34322e3835383638323620433230322e3339383734312c34302e34363138373632203230312e3538303037372c33382e33343839303232203230302e3036383639392c33362e3531393736303520433139382e3336383339382c33342e37353336393236203139362e33323137342c33332e38333931323138203139332e3932383732352c33332e3737363034373920433139312e3437323733352c33332e39303231393536203138392e3336333130332c33342e38313637363635203138372e3539393832382c33362e3531393736303520433138352e3839393532382c33382e32383538323833203138342e3932333432392c34302e33393838303234203138342e3637313533332c34322e38353836383236204c3230322e3532343638392c34322e38353836383236205a223e3c2f706174683e3c2f673e3c706f6c79676f6e207472616e73666f726d3d227472616e736c6174652839352e3339323133362c2031352e3131303533382920726f74617465282d36322e31353336363429207472616e736c617465282d39352e3339323133362c202d31352e31313035333829202220706f696e74733d2238392e30393434313237202d352e3331373730323237203130312e3638393836202d352e3331373730323237203130312e36383938362033352e353338373739322038392e303934343132372033352e35333837373932223e3c2f706f6c79676f6e3e3c2f673e3c746578742069643d224d616c652d44656d6f6e732d4368616f7469632220666f6e742d66616d696c793d2247656f726769612220666f6e742d73697a653d2232382220666f6e742d7765696768743d226e6f726d616c22206c696e652d73706163696e673d223434222066696c6c3d2223464646464646223e3c747370616e20783d2236302220793d22323132223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f747370616e3e3c747370616e20783d2236302220793d22333838222066696c6c3d223c2f747370616e3e3c747370616e20783d2236302220793d22343736222066696c6c3d22a26469706673582212201f69131cc0b40d517f8791f36d0393c56dffd07f43d3cfe57896e887e5c6a04364736f6c634300080700334d6972756d6f746f204e6974656e204d6173746572204d6972756d6f746f204e6974656e557262616e2052616e6765722076617269616e742052616e67657220636f726520636c617373afafe8948a4ed9d478b1e9a5780b119b5edd00ea7d07bc35bef7c814824eb94b26b4a10d0f0b04925c23bd4480ee147c916e5e87a7d68206a533dad160ac81e2fd54ff1ed53f34a900b24c5ba64f85761163b5d82d98a47b9bd80e45466993c5a48544818c2c710afa9849c61ec9c60e8acdb3eaa2885f33b37e118cc8fd04aca5049387d9cb649c59f4bda666105ba636c2a103d8e2b232ba4d125737cd214941204775696465626f6f6b20746f20436c657269637320616e642050616c6164696e734b6e6967687450726f746563746f72206f6620746865204772656174204b696e67646f6d10a81eed9d63d16face5e76357905348e6253d3394086026bb2bf2145d7cc249

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102275760003560e01c80634f6ccce711610130578063baa5b27f116100b8578063e15f22551161007c578063e15f2255146104ac578063e53fbda6146104bf578063e985e9c5146104d2578063f2fde38b1461050e578063f3a4aba91461052157600080fd5b8063baa5b27f1461044d578063c87b56dd14610460578063d09e059114610473578063d866e15214610486578063e06d2eb51461049957600080fd5b806381f56fe9116100ff57806381f56fe9146103fb5780638da5cb5b1461040e57806395d89b411461041f578063a22cb46514610427578063b88d4fde1461043a57600080fd5b80634f6ccce7146103ba5780636352211e146103cd57806370a08231146103e0578063715018a6146103f357600080fd5b806323b872dd116101b35780632f745c59116101825780632f745c591461035b57806330799dc61461036e57806342842e0e14610381578063432f320814610394578063499309c3146103a757600080fd5b806323b872dd1461030f57806327257c75146103225780632df78d31146103355780632eba8a9a1461034857600080fd5b8063095ea7b3116101fa578063095ea7b3146102ab5780630d71aba5146102c057806315b2d0f6146102d3578063176c4182146102e657806318160ddd1461030757600080fd5b806301716d9c1461022c57806301ffc9a71461025557806306fdde0314610278578063081812fc14610280575b600080fd5b61023f61023a36600461350a565b610534565b60405161024c9190613bac565b60405180910390f35b6102686102633660046134b7565b6105ec565b604051901515815260200161024c565b61023f610617565b61029361028e3660046134f1565b6106a9565b6040516001600160a01b03909116815260200161024c565b6102be6102b936600461348d565b610743565b005b61023f6102ce3660046134f1565b610859565b61023f6102e13660046134f1565b610926565b6102f96102f43660046134f1565b610931565b60405190815260200161024c565b6008546102f9565b6102be61031d366004613339565b6109bd565b61023f6103303660046134f1565b6109ee565b61023f6103433660046134f1565b610a22565b61023f6103563660046134f1565b610a49565b6102f961036936600461348d565b610a73565b61023f61037c3660046134f1565b610b09565b6102be61038f366004613339565b610b2f565b6102be6103a236600461352c565b610b4a565b61023f6103b53660046134f1565b610f4a565b6102f96103c83660046134f1565b610f74565b6102936103db3660046134f1565b611007565b6102f96103ee3660046132e4565b61107e565b6102be611105565b6102f96104093660046134f1565b61113b565b600b546001600160a01b0316610293565b61023f6111b3565b6102be610435366004613451565b6111c2565b6102be610448366004613375565b611287565b61023f61045b3660046134f1565b6112bf565b61023f61046e3660046134f1565b6112e7565b6102be61048136600461352c565b611982565b61023f6104943660046134f1565b611d35565b61023f6104a73660046134f1565b611d5f565b61023f6104ba3660046134f1565b611d87565b61023f6104cd3660046134f1565b611dab565b6102686104e0366004613306565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102be61051c3660046132e4565b611dce565b61023f61052f3660046134f1565b611e69565b6060600061057261054484611e8a565b61054d86611e8a565b60405160200161055e929190613b36565b604051602081830303815290604052611f90565b6035549091506000906105859083613d9f565b905060005b6039548110156105cf57603981815481106105a7576105a7613df5565b906000526020600020015482116105bd576105cf565b806105c781613d84565b91505061058a565b6105e26105dd826001613cc1565b611fc1565b9695505050505050565b60006001600160e01b0319821663780e9d6360e01b14806106115750610611826120c7565b92915050565b60606000805461062690613d4f565b80601f016020809104026020016040519081016040528092919081815260200182805461065290613d4f565b801561069f5780601f106106745761010080835404028352916020019161069f565b820191906000526020600020905b81548152906001019060200180831161068257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107275760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061074e82611007565b9050806001600160a01b0316836001600160a01b031614156107bc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161071e565b336001600160a01b03821614806107d857506107d881336104e0565b61084a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161071e565b6108548383612117565b505050565b6000818152600c6020526040902054600f8054606092670100000000000000900460ff1690811061088c5761088c613df5565b9060005260206000200180546108a190613d4f565b80601f01602080910402602001604051908101604052809291908181526020018280546108cd90613d4f565b801561091a5780601f106108ef5761010080835404028352916020019161091a565b820191906000526020600020905b8154815290600101906020018083116108fd57829003601f168201915b50505050509050919050565b606061061182612185565b60008061095061094084611e8a565b60405160200161055e91906139df565b9050600061095f606483613d9f565b905060005b6037548110156109a9576037818154811061098157610981613df5565b90600052602060002001548211610997576109a9565b806109a181613d84565b915050610964565b6109b4816001613cc1565b95945050505050565b6109c733826123ba565b6109e35760405162461bcd60e51b815260040161071e90613c70565b6108548383836124ad565b6000818152600c60205260409020546010805460609268010000000000000000900460ff1690811061088c5761088c613df5565b6000818152600c60205260409020546060906106119065010000000000900460ff16611e8a565b6060610611826040518060400160405280600681526020016554726169743160d01b815250612658565b6000610a7e8361107e565b8210610ae05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161071e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000818152600c602052604090205460609061061190640100000000900460ff16611e8a565b61085483838360405180602001604052806000815250611287565b6002600a541415610b9d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161071e565b6002600a55600b546001600160a01b03163314610bcc5760405162461bcd60e51b815260040161071e90613c11565b6126488a118015610bde57506127108a105b610bfa5760405162461bcd60e51b815260040161071e90613c46565b60008a8152600260205260409020546001600160a01b031615610c2f5760405162461bcd60e51b815260040161071e90613c46565b600e548910610c735760405162461bcd60e51b815260206004820152601060248201526f19d95b99195c9259081a5b9d985b1a5960821b604482015260640161071e565b601e81838587610c838a8c613cc1565b610c8d9190613cc1565b610c979190613cc1565b610ca19190613cc1565b610cab9190613cc1565b1115610cf25760405162461bcd60e51b8152602060048201526016602482015275185d1d1c9a589d5d195cc81b9d5b481a5b9d985b1a5960521b604482015260640161071e565b600f548810610d345760405162461bcd60e51b815260206004820152600e60248201526d1c9858d95259081a5b9d985b1a5960921b604482015260640161071e565b6010548710610d775760405162461bcd60e51b815260206004820152600f60248201526e185b1a59db9259081a5b9d985b1a59608a1b604482015260640161071e565b88600c60008c815260200190815260200160002060000160006101000a81548160ff021916908360ff16021790555085600c60008c815260200190815260200160002060000160016101000a81548160ff021916908360ff16021790555084600c60008c815260200190815260200160002060000160026101000a81548160ff021916908360ff16021790555083600c60008c815260200190815260200160002060000160036101000a81548160ff021916908360ff16021790555082600c60008c815260200190815260200160002060000160046101000a81548160ff021916908360ff16021790555081600c60008c815260200190815260200160002060000160056101000a81548160ff021916908360ff16021790555080600c60008c815260200190815260200160002060000160066101000a81548160ff021916908360ff16021790555087600c60008c815260200190815260200160002060000160076101000a81548160ff021916908360ff16021790555086600c60008c815260200190815260200160002060000160086101000a81548160ff021916908360ff160217905550610f39610f33600b546001600160a01b031690565b8b6126d8565b50506001600a555050505050505050565b6060610611826040518060400160405280600681526020016554726169743360d01b815250612658565b6000610f7f60085490565b8210610fe25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161071e565b60088281548110610ff557610ff5613df5565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106115760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161071e565b60006001600160a01b0382166110e95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161071e565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b0316331461112f5760405162461bcd60e51b815260040161071e90613c11565b61113960006126f6565b565b60008061115a61114a84611e8a565b60405160200161055e9190613ac4565b90506000611169606483613d9f565b905060005b6038548110156109a9576038818154811061118b5761118b613df5565b906000526020600020015482116111a1576109a9565b806111ab81613d84565b91505061116e565b60606001805461062690613d4f565b6001600160a01b03821633141561121b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161071e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61129133836123ba565b6112ad5760405162461bcd60e51b815260040161071e90613c70565b6112b984848484612748565b50505050565b6000818152600c6020526040902054606090610611906601000000000000900460ff16611e8a565b60606112f161328a565b60405180611980016040528061195c81526020016141ab61195c9139815261131883611d5f565b602082810191909152604080518082018252601e81527f3c2f747370616e3e3c747370616e20783d2236302220793d22323536223e00009281019290925282015261136283610859565b606082015260408051808201909152601e81527f3c2f747370616e3e3c747370616e20783d2236302220793d22333030223e0000602082015260808201526113a9836109ee565b60a082015260408051606081019091526024808252613e92602083013960c08201526113d76105dd8461113b565b60e0820152604080518082019091526002815261111f60f11b602082015261010082015261140483610926565b610120820152604080518082019091526002815261010160f51b60208201526101408201526114328361277b565b61016082015260408051606081019091526024808252615b476020830139610180820152611461836001610534565b6101a0820152604080518082019091526002815261111f60f11b60208201526101c082015261148f83610a49565b6101e082015260408051606081019091526024808252613eb660208301396102008201526114be836002610534565b610220820152604080518082019091526002815261111f60f11b60208201526102408201526114ec83611d35565b61026082015260408051606081019091526024808252615b6b602083013961028082015261151b836003610534565b6102a0820152604080518082019091526002815261111f60f11b60208201526102c082015261154983610f4a565b6102e08201526040805161022081019091526101e5808252613eda602083013961030082015261157883611dab565b61032082015260408051808201909152601f81527f3c2f747370616e3e3c747370616e20783d223631382220793d22323630223e0060208201526103408201526115c183611d87565b61036082015260408051808201909152601f81527f3c2f747370616e3e3c747370616e20783d223631382220793d22333034223e00602082015261038082015261160a83611e69565b6103a082015260408051808201909152601f81527f3c2f747370616e3e3c747370616e20783d223631382220793d22333438223e0060208201526103c082015261165383610a22565b6103e082015260408051808201909152601f81527f3c2f747370616e3e3c747370616e20783d223631382220793d22333932223e00602082015261040082015261169c836112bf565b61042082015260408051808201909152601f81527f3c2f747370616e3e3c747370616e20783d223631382220793d22343336223e0060208201526104408201526116e583610b09565b6104608201526040805160a08101909152607180825261413a6020830139610480820152604080518082018252600a8152691e17b39f1e17b9bb339f60b11b6020808301919091526104a0840191909152825181840151838501516060860151608087015160a088015160c0890151975160009861176598909101613662565b60408051808303601f190181529082905260e08401516101008501516101208601516101408701516101608801516101808901516101a08a01516101c08b01519799506117b7988a9890602001613799565b60408051808303601f19018152908290526101e08401516102008501516102208601516102408701516102608801516102808901516102a08a0151969850611804978997906020016136f4565b60408051808303601f19018152908290526102c08401516102e08501516103008601516103208701516103408801516103608901516103808a0151969850611851978997906020016136f4565b60408051601f19818403018152908290526103a08401516103c08501516103e086015161040087015161042088015161044089015195975061189896889690602001613662565b60408051808303601f19018152908290526104608401516104808501516104a08601519294506118cd9385939060200161360b565b604051602081830303815290604052905060006119156118ec86611d5f565b6118f587610859565b6118fe886109ee565b611907896128aa565b6119108a6129cf565b612ae0565b9050600061195561192587611e8a565b61192e85612c4e565b84604051602001611941939291906138c1565b604051602081830303815290604052612c4e565b9050806040516020016119689190613af1565b60408051601f198184030181529190529695505050505050565b6002600a5414156119d55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161071e565b6002600a5589158015906119eb57506126488a11155b611a075760405162461bcd60e51b815260040161071e90613c46565b60008a8152600260205260409020546001600160a01b031615611a3c5760405162461bcd60e51b815260040161071e90613c46565b600e548910611a805760405162461bcd60e51b815260206004820152601060248201526f19d95b99195c9259081a5b9d985b1a5960821b604482015260640161071e565b601e81838587611a908a8c613cc1565b611a9a9190613cc1565b611aa49190613cc1565b611aae9190613cc1565b611ab89190613cc1565b1115611aff5760405162461bcd60e51b8152602060048201526016602482015275185d1d1c9a589d5d195cc81b9d5b481a5b9d985b1a5960521b604482015260640161071e565b600f548810611b415760405162461bcd60e51b815260206004820152600e60248201526d1c9858d95259081a5b9d985b1a5960921b604482015260640161071e565b6010548710611b845760405162461bcd60e51b815260206004820152600f60248201526e185b1a59db9259081a5b9d985b1a59608a1b604482015260640161071e565b88600c60008c815260200190815260200160002060000160006101000a81548160ff021916908360ff16021790555085600c60008c815260200190815260200160002060000160016101000a81548160ff021916908360ff16021790555084600c60008c815260200190815260200160002060000160026101000a81548160ff021916908360ff16021790555083600c60008c815260200190815260200160002060000160036101000a81548160ff021916908360ff16021790555082600c60008c815260200190815260200160002060000160046101000a81548160ff021916908360ff16021790555081600c60008c815260200190815260200160002060000160056101000a81548160ff021916908360ff16021790555080600c60008c815260200190815260200160002060000160066101000a81548160ff021916908360ff16021790555087600c60008c815260200190815260200160002060000160076101000a81548160ff021916908360ff16021790555086600c60008c815260200190815260200160002060000160086101000a81548160ff021916908360ff160217905550610f39610f333390565b606061061182604051806040016040528060068152602001652a3930b4ba1960d11b815250612658565b6000818152600c6020526040902054600e805460609260ff1690811061088c5761088c613df5565b6000818152600c60205260409020546060906106119062010000900460ff16611e8a565b6000818152600c602052604090205460609061061190610100900460ff16611e8a565b600b546001600160a01b03163314611df85760405162461bcd60e51b815260040161071e90613c11565b6001600160a01b038116611e5d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071e565b611e66816126f6565b50565b6000818152600c6020526040902054606090610611906301000000900460ff165b606081611eae5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ed85780611ec281613d84565b9150611ed19050600a83613cd9565b9150611eb2565b60008167ffffffffffffffff811115611ef357611ef3613e0b565b6040519080825280601f01601f191660200182016040528015611f1d576020820181803683370190505b5090505b8415611f8857611f32600183613d0c565b9150611f3f600a86613d9f565b611f4a906030613cc1565b60f81b818381518110611f5f57611f5f613df5565b60200101906001600160f81b031916908160001a905350611f81600a86613cd9565b9450611f21565b949350505050565b600081604051602001611fa391906135c0565b60408051601f19818403018152919052805160209091012092915050565b60608160011415611fef5750506040805180820190915260078152660236666633030360cc1b602082015290565b816002141561201b5750506040805180820190915260078152660236330303030360cc1b602082015290565b81600314156120475750506040805180820190915260078152662365643764333160c81b602082015290565b81600414156120735750506040805180820190915260078152662335623962643560c81b602082015290565b816005141561209f5750506040805180820190915260078152662337306164343760c81b602082015290565b505060408051808201909152600781526611b3333333333360c91b602082015290565b919050565b60006001600160e01b031982166380ac58cd60e01b14806120f857506001600160e01b03198216635b5e139f60e01b145b8061061157506301ffc9a760e01b6001600160e01b0319831614610611565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061214c82611007565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060600061219283610931565b9050600061219f8461113b565b6000838152600d60209081526040808320848452825280832080548251818502810185019093528083529495509293909291849084015b828210156122825783829060005260206000200180546121f590613d4f565b80601f016020809104026020016040519081016040528092919081815260200182805461222190613d4f565b801561226e5780601f106122435761010080835404028352916020019161226e565b820191906000526020600020905b81548152906001019060200180831161225157829003601f168201915b5050505050815260200190600101906121d6565b50505050905060006122a661229687611e8a565b60405160200161055e9190613895565b90506000828351836122b89190613d9f565b815181106122c8576122c8613df5565b60200260200101519050600060368080549050846122e69190613d9f565b815481106122f6576122f6613df5565b90600052602060002001805461230b90613d4f565b80601f016020809104026020016040519081016040528092919081815260200182805461233790613d4f565b80156123845780601f1061235957610100808354040283529160200191612384565b820191906000526020600020905b81548152906001019060200180831161236757829003601f168201915b50505050509050808260405160200161239e929190613859565b60408051601f1981840301815291905298975050505050505050565b6000818152600260205260408120546001600160a01b03166124335760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161071e565b600061243e83611007565b9050806001600160a01b0316846001600160a01b031614806124795750836001600160a01b031661246e846106a9565b6001600160a01b0316145b80611f8857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611f88565b826001600160a01b03166124c082611007565b6001600160a01b0316146125285760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161071e565b6001600160a01b03821661258a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161071e565b612595838383612db4565b6125a0600082612117565b6001600160a01b03831660009081526003602052604081208054600192906125c9908490613d0c565b90915550506001600160a01b03821660009081526003602052604081208054600192906125f7908490613cc1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060600061267a8361266986611e8a565b60405160200161055e9291906135dc565b60355490915060009061268d9083613d9f565b90506000603582815481106126a4576126a4613df5565b906000526020600020016040516020016126be9190613a11565b60408051808303601f190181529190529695505050505050565b6126f2828260405180602001604052806000815250612e6c565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127538484846124ad565b61275f84848484612e9f565b6112b95760405162461bcd60e51b815260040161071e90613bbf565b604080518082018252600880825267262378323542323b60c01b6020808401919091528351808501855282815267262378323033423b60c01b818301528451808601865283815267262378323139313b60c01b818401528551808701875284815267262378323543423b60c01b818501528651808801885285815267262378323543363b60c01b818601528751808901895295865267262378323541303b60c01b86860152875194850190975260008085526060979395929491939291906128428a610931565b905080600114156128555783915061289d565b80600214156128665787915061289d565b80600314156128775785915061289d565b80600414156128885784915061289d565b80600514156128995786915061289d565b8291505b5098975050505050505050565b604080518082018252600881526720b9b9b0b9b9b4b760c11b602080830191909152825180840184526004808252634d61676560e01b8284015284518086018652600680825265243ab73a32b960d11b828601528651808801885281815265141c9a595cdd60d21b81870152875180890189529384526354616e6b60e01b848701528751808901909852908752652bb0b934b7b960d11b9487019490945260609592939092909190600061295d89610931565b604080516020810190915260008152909150600182141561297f5750826129c2565b816002141561298f5750866129c2565b816003141561299f5750846129c2565b81600414156129af5750836129c2565b81600514156129bf5750856129c2565b50815b9998505050505050505050565b606060006129dc8361113b565b90508060011415612a0957505060408051808201909152600481526319dbdb1960e21b6020820152919050565b8060021415612a335750506040805180820190915260038152621c995960ea1b6020820152919050565b8060031415612a605750506040805180820190915260068152656f72616e676560d01b6020820152919050565b8060041415612a8b575050604080518082019091526004815263626c756560e01b6020820152919050565b8060051415612ab757505060408051808201909152600581526433b932b2b760d91b6020820152919050565b5050604080518082019091526005815264776869746560d81b6020820152919050565b50919050565b6060612aea6132b2565b60405180606001604052806025815260200161411560259139815260208082018890526040805160608101909152602f80825290916140e6908301396040808301919091526060808301859052815190810190915260278082526140bf6020830139608082015260a081018690526040805160608101909152602c808252613e38602083013960c082015260e081018590526040805160608101909152602e808252613e6460208301396101008201526101208101849052604080518082018252600481526322207d5d60e01b602080830191909152610140840191909152825181840151838501516060860151608087015160a088015160c089015160e08a01519851600099612bfd999091016136f4565b60408051808303601f1901815290829052610100840151610120850151610140860151929450612c329385939060200161360b565b60408051808303601f1901815291905298975050505050505050565b805160609080612c6e575050604080516020810190915260008152919050565b60006003612c7d836002613cc1565b612c879190613cd9565b612c92906004613ced565b90506000612ca1826020613cc1565b67ffffffffffffffff811115612cb957612cb9613e0b565b6040519080825280601f01601f191660200182016040528015612ce3576020820181803683370190505b5090506000604051806060016040528060408152602001615b07604091399050600181016020830160005b86811015612d6f576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612d0e565b506003860660018114612d895760028114612d9a57612da6565b613d3d60f01b600119830152612da6565b603d60f81b6000198301525b505050918152949350505050565b6001600160a01b038316612e0f57612e0a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612e32565b816001600160a01b0316836001600160a01b031614612e3257612e328382612fac565b6001600160a01b038216612e495761085481613049565b826001600160a01b0316826001600160a01b0316146108545761085482826130f8565b612e76838361313c565b612e836000848484612e9f565b6108545760405162461bcd60e51b815260040161071e90613bbf565b60006001600160a01b0384163b15612fa157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ee3903390899088908890600401613b79565b602060405180830381600087803b158015612efd57600080fd5b505af1925050508015612f2d575060408051601f3d908101601f19168201909252612f2a918101906134d4565b60015b612f87573d808015612f5b576040519150601f19603f3d011682016040523d82523d6000602084013e612f60565b606091505b508051612f7f5760405162461bcd60e51b815260040161071e90613bbf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f88565b506001949350505050565b60006001612fb98461107e565b612fc39190613d0c565b600083815260076020526040902054909150808214613016576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061305b90600190613d0c565b6000838152600960205260408120546008805493945090928490811061308357613083613df5565b9060005260206000200154905080600883815481106130a4576130a4613df5565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806130dc576130dc613ddf565b6001900381819060005260206000200160009055905550505050565b60006131038361107e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166131925760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161071e565b6000818152600260205260409020546001600160a01b0316156131f75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161071e565b61320360008383612db4565b6001600160a01b038216600090815260036020526040812080546001929061322c908490613cc1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b604051806104c001604052806026905b606081526020019060019003908161329a5790505090565b60408051610160810190915260608152600a6020820161329a565b80356001600160a01b03811681146120c257600080fd5b6000602082840312156132f657600080fd5b6132ff826132cd565b9392505050565b6000806040838503121561331957600080fd5b613322836132cd565b9150613330602084016132cd565b90509250929050565b60008060006060848603121561334e57600080fd5b613357846132cd565b9250613365602085016132cd565b9150604084013590509250925092565b6000806000806080858703121561338b57600080fd5b613394856132cd565b93506133a2602086016132cd565b925060408501359150606085013567ffffffffffffffff808211156133c657600080fd5b818701915087601f8301126133da57600080fd5b8135818111156133ec576133ec613e0b565b604051601f8201601f19908116603f0116810190838211818310171561341457613414613e0b565b816040528281528a602084870101111561342d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561346457600080fd5b61346d836132cd565b91506020830135801515811461348257600080fd5b809150509250929050565b600080604083850312156134a057600080fd5b6134a9836132cd565b946020939093013593505050565b6000602082840312156134c957600080fd5b81356132ff81613e21565b6000602082840312156134e657600080fd5b81516132ff81613e21565b60006020828403121561350357600080fd5b5035919050565b6000806040838503121561351d57600080fd5b50508035926020909101359150565b6000806000806000806000806000806101408b8d03121561354c57600080fd5b505088359a60208a01359a5060408a013599606081013599506080810135985060a0810135975060c0810135965060e081013595506101008101359450610120013592509050565b600081518084526135ac816020860160208601613d23565b601f01601f19169290920160200192915050565b600082516135d2818460208701613d23565b9190910192915050565b600083516135ee818460208801613d23565b835190830190613602818360208801613d23565b01949350505050565b6000855161361d818460208a01613d23565b855190830190613631818360208a01613d23565b8551910190613644818360208901613d23565b8451910190613657818360208801613d23565b019695505050505050565b6000885160206136758285838e01613d23565b8951918401916136888184848e01613d23565b895192019161369a8184848d01613d23565b88519201916136ac8184848c01613d23565b87519201916136be8184848b01613d23565b86519201916136d08184848a01613d23565b85519201916136e28184848901613d23565b919091019a9950505050505050505050565b6000895160206137078285838f01613d23565b8a519184019161371a8184848f01613d23565b8a5192019161372c8184848e01613d23565b895192019161373e8184848d01613d23565b88519201916137508184848c01613d23565b87519201916137628184848b01613d23565b86519201916137748184848a01613d23565b85519201916137868184848901613d23565b919091019b9a5050505050505050505050565b60008a516137ab818460208f01613d23565b8a516137bd8183860160208f01613d23565b8a5191840101906137d2818360208e01613d23565b89516137e48183850160208e01613d23565b89519290910101906137fa818360208c01613d23565b875161380c8183850160208c01613d23565b8751929091010190613822818360208a01613d23565b8551910190613835818360208901613d23565b84516138478183850160208901613d23565b9101019b9a5050505050505050505050565b6000835161386b818460208801613d23565b600160fd1b9083019081528351613889816001840160208801613d23565b01600101949350505050565b636974656d60e01b8152600082516138b4816004850160208701613d23565b9190910160040192915050565b6f7b226e616d65223a2022526f6c65202360801b815283516000906138ed816010850160208901613d23565b7f222c20226465736372697074696f6e223a2022526f6c652069732061207365656010918401918201527f642c20612073656564206163636f756e7420666f72204d65746176657273652060308201527f47616d652e222c2022696d616765223a2022646174613a696d6167652f73766760508201526b0ade1b5b0ed8985cd94d8d0b60a21b6070820152845161398b81607c840160208901613d23565b601160f91b607c92909101918201526d161130ba3a3934b13aba32b9911d60911b607d82015283516139c481608b840160208801613d23565b607d60f81b608b9290910191820152608c0195945050505050565b6927b1b1bab830ba34b7b760b11b815260008251613a0481600a850160208701613d23565b91909101600a0192915050565b601160f91b81528154600090600190829080831c81841680613a3457607f821691505b6020808310821415613a5457634e487b7160e01b85526022600452602485fd5b818015613a685760018114613a7d57613aae565b60ff1985168988015283890187019550613aae565b60008a81526020902060005b85811015613aa45781548b82018a0152908801908301613a89565b505086848a010195505b50505050506109b481601160f91b815260010190565b6431b7b637b960d91b815260008251613ae4816005850160208701613d23565b9190910160050192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613b2981601d850160208701613d23565b91909101601d0192915050565b64151c985a5d60da1b815260008351613b56816005850160208801613d23565b835190830190613b6d816005840160208801613d23565b01600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906105e290830184613594565b6020815260006132ff6020830184613594565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f151bdad95b881251081a5b9d985b1a5960821b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115613cd457613cd4613db3565b500190565b600082613ce857613ce8613dc9565b500490565b6000816000190483118215151615613d0757613d07613db3565b500290565b600082821015613d1e57613d1e613db3565b500390565b60005b83811015613d3e578181015183820152602001613d26565b838111156112b95750506000910152565b600181811c90821680613d6357607f821691505b60208210811415612ada57634e487b7160e01b600052602260045260246000fd5b6000600019821415613d9857613d98613db3565b5060010190565b600082613dae57613dae613dc9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611e6657600080fdfe22207d2c207b202274726169745f74797065223a2022416c69676e6d656e74222c202276616c7565223a202222207d2c207b202274726169745f74797065223a20224f636375706174466c6167222c202276616c7565223a20223c2f747370616e3e3c747370616e20783d2236302220793d22333434222066696c6c3d223c2f747370616e3e3c747370616e20783d2236302220793d22343332222066696c6c3d223c2f747370616e3e3c2f746578743e3c746578742069643d225374722d4465782d436f6e2d4368612d696e742220666f6e742d66616d696c793d2247656f726769612220666f6e742d73697a653d2232382220666f6e742d7765696768743d226e6f726d616c22206c696e652d73706163696e673d223434222066696c6c3d2223464646464646223e3c747370616e20783d223532322220793d22323136223e5374723c2f747370616e3e3c747370616e20783d223532322220793d22323630223e4465783c2f747370616e3e3c747370616e20783d223532322220793d22333034223e436f6e3c2f747370616e3e3c747370616e20783d223532322220793d22333438223e4368613c2f747370616e3e3c747370616e20783d223532322220793d22333932223e496e743c2f747370616e3e3c747370616e20783d223532322220793d22343336223e5769733c2f747370616e3e3c2f746578743e3c746578742069643d22322d332d362d372d312d312220666f6e742d66616d696c793d2247656f726769612220666f6e742d73697a653d2232382220666f6e742d7765696768743d226e6f726d616c22206c696e652d73706163696e673d223434222066696c6c3d2223464646464646223e3c747370616e20783d223631382220793d22323136223e22207d2c207b202274726169745f74797065223a202252616365222c202276616c7565223a202222207d2c207b202274726169745f74797065223a20224f636375706174436f6c6f72222c202276616c7565223a20225b7b202274726169745f74797065223a202247656e646572222c202276616c7565223a20223c2f747370616e3e3c2f746578743e3c6c696e652078313d223439302e35222079313d223139322e35222078323d223439302e35222079323d223437352e3522207374726f6b653d222339373937393722207374726f6b652d6c696e656361703d22737175617265223e3c2f6c696e653e3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d38223f3e3c7376672077696474683d22373530707822206865696768743d223735307078222076696577426f783d223020302037353020373530222076657273696f6e3d22312e312220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672220786d6c6e733a786c696e6b3d22687474703a2f2f7777772e77332e6f72672f313939392f786c696e6b223e3c67207374726f6b653d226e6f6e6522207374726f6b652d77696474683d2231222066696c6c3d226e6f6e65222066696c6c2d72756c653d226576656e6f6464223e3c726563742066696c6c3d22233233314433392220783d22302220793d2230222077696474683d2237353022206865696768743d22373530223e3c2f726563743e3c67207472616e73666f726d3d227472616e736c6174652836302e3030303030302c2033352e30303030303029222066696c6c3d2223464646464646222066696c6c2d72756c653d226e6f6e7a65726f223e3c67207472616e73666f726d3d227472616e736c61746528302e3030303030302c2031352e30303030303029223e3c7061746820643d224d34312e373531383234382c37372e31303737383434204333392e313639383836392c37332e353735363438372033362e383339383435342c36392e393438393032322033342e373631373030332c36362e32323735343439204333312e3932373836362c36302e393239333431332032392e333737343135322c35352e343733343533312032372e313130333437382c34392e38353938383032204c31382e393836363839362c34392e38353938383032204c31382e393836363839362c37372e31303737383434204c302c37372e31303737383434204c302c312e3839323231353537204c33322e323131323439352c312e3839323231353537204333352e303435303833372c312e39353532383934322033372e3837383931382c322e33363532363934362034302e373132373532332c332e3132323135353639204334342e313133333533342c342e31333133333733332034372e323330353731312c352e37373132353734392035302e303634343035332c382e3034313931363137204335352e363036313235372c31322e373039333831322035382e3437313434372c31382e363639383630332035382e363630333639332c32352e39323333353333204335382e353937333935322c33302e3333383532332035372e343332333734342c33342e333735323439352035352e3136353330372c33382e30333335333239204335322e353833333639312c34312e393434313131382034392e3231343235352c34342e393731363536372034352e303537393634382c34372e31313631363737204334372e373032383736382c35322e303335393238312035302e353638313938312c35362e3739383030342035332e363533393238372c36312e34303233393532204335372e323433343532312c36362e373633363732372036302e393930343130382c37312e393938383032342036342e383934383034362c37372e31303737383434204c34312e373531383234382c37372e31303737383434205a204d31382e393836363839362c33362e32333539323831204c32382e363231373236312c33362e32333539323831204333312e363434343832362c33362e3239393030322033342e333230383831362c33352e333834343331312033362e363530393233312c33332e34393232313536204333382e363636303934322c33312e363633303733392033392e373035313636372c32392e333630383738322033392e373638313430382c32362e35383536323837204333392e373035313636372c32332e383733343533312033382e363033313230312c32312e363032373934342033362e343632303030392c31392e37373336353237204333342e313934393333342c31382e303037353834382033312e363132393935362c31372e3039333031342032382e373136313837322c31372e30323939343031204c31382e393836363839362c31372e30323939343031204c31382e393836363839362c33362e32333539323831205a223e3c2f706174683e3c7061746820643d224d3130362e3435373730372c32302e30353734383520433131302e3137333137392c32312e33313839363231203131332e3434373833322c32332e32373432353135203131362e3238313636362c32352e3932333335333320433131392e3035323532362c32382e37363136373636203132312e3133303637312c33322e303431353137203132322e3531363130312c33352e3736323837343320433132342e30323734382c33392e39383838323234203132342e3738333136392c34342e33343039313832203132342e3738333136392c34382e3831393136313720433132342e3738333136392c35332e333630343739203132342e30323734382c35372e37343431313138203132322e3531363130312c36312e3937303035393920433132312e3133303637312c36352e36393134313732203131392e3035323532362c36382e39333937323036203131362e3238313636362c37312e3731343937303120433131332e3434373833322c37342e34323731343537203131302e3137333137392c37362e33383234333531203130362e3435373730372c37372e3538303833383320433130332e3337313937372c37382e34363338373233203130302e3235343735392c37382e393336393236312039372e313036303534312c3739204339332e383934333735332c37382e393336393236312039302e373435363730352c37382e343633383732332038372e363539393339392c37372e35383038333833204338332e393434343638332c37362e333832343335312038302e363338333238332c37342e343237313435372037372e37343135322c37312e37313439373031204337342e393730363539382c36382e393339373230362037322e383932353134372c36352e363931343137322037312e353037303834362c36312e39373030353939204336392e393935373036332c35372e373434313131382036392e323731353034322c35332e3336303437392036392e333334343738332c34382e38313931363137204336392e323731353034322c34342e333430393138322036392e393935373036332c33392e393838383232342037312e353037303834362c33352e37363238373433204337322e383932353134372c33322e3034313531372037342e393730363539382c32382e373631363736362037372e37343135322c32352e39323333353333204338302e363338333238332c32332e323734323531352038332e393434343638332c32312e333138393632312038372e363539393339392c32302e303537343835204339302e373435363730352c31392e313734343531312039332e383934333735332c31382e373031333937322039372e313036303534312c31382e3633383332333420433130302e3235343735392c31382e37303133393732203130332e3337313937372c31392e31373434353131203130362e3435373730372c32302e303537343835205a204d3130302e383834352c36322e3732363934363120433130322e3038313030382c36312e38343339313232203130332e3038383539332c36302e37343031313938203130332e3930373235362c35392e3431353536383920433130342e3738383839342c35372e37373536343837203130352e3431383633352c35362e30303935383038203130352e3739363437392c35342e3131373336353320433130362e3034383337362c35322e33353132393734203130362e3230353831312c35302e35383532323935203130362e3236383738352c34382e3831393136313720433130362e3230353831312c34372e31313631363737203130362e3034383337362c34352e33383136333637203130352e3739363437392c34332e3631353536383920433130352e3431383633352c34312e37323333353333203130342e3738383839342c33392e39353732383534203130332e3930373235362c33382e3331373336353320433130332e3038383539332c33362e39393238313434203130322e3038313030382c33352e383839303232203130302e383834352c33352e303035393838204339392e3638373939322c33342e323439313031382039382e343238353130312c33332e383339313231382039372e313036303534312c33332e37373630343739204339352e363537363439392c33332e383339313231382039342e3336363638312c33342e323439313031382039332e323333313437332c33352e303035393838204339312e393733363635342c33352e3838393032322039302e393334353932382c33362e393932383134342039302e313135393239362c33382e33313733363533204338392e323334323932332c33392e393537323835342038382e363034353531332c34312e373233333533332038382e323236373036372c34332e36313535363839204338372e393734383130342c34352e333831363336372038372e383438383632322c34372e313136313637372038372e383438383632322c34382e38313931363137204338372e383438383632322c35302e353835323239352038372e393734383130342c35322e333531323937342038382e323236373036372c35342e31313733363533204338382e363034353531332c35362e303039353830382038392e323334323932332c35372e373735363438372039302e313135393239362c35392e34313535363839204339302e393334353932382c36302e383033313933362039312e393733363635342c36312e3930363938362039332e323333313437332c36322e37323639343631204339342e3336363638312c36332e343833383332332039352e363537363439392c36332e383632323735342039372e313036303534312c36332e38363232373534204339382e343238353130312c36332e383632323735342039392e3638373939322c36332e34383338333233203130302e383834352c36322e37323639343631205a223e3c2f706174683e3c7061746820643d224d3136322e3735363534382c37372e3836343637303720433135382e3937383130322c37382e36323135353639203135352e3136383136392c3739203135312e33323637352c373920433134382e3330333939332c37382e39333639323631203134352e3433383637322c37382e33363932363135203134322e3733303738362c37372e32393730303620433134302e3237343739362c37362e31363136373636203133382e3139363635312c37342e35353332393334203133362e34393633352c37322e3437313835363320433133342e37393630352c37302e31333831323338203133332e3633313032392c36372e35323035353839203133332e3030313238382c36342e3631393136313720433133322e3433343532312c36322e30333331333337203133322e3138323632352c35392e33383430333139203133322e3234353539392c35362e36373138353633204c3133322e3234353539392c2d382e3430333132353137652d3135204c3135302e3735393938332c2d382e3430333132353137652d3135204c3135302e3735393938332c35322e3331393736303520433135302e3633343033352c35342e363533343933203135302e3735393938332c35362e39323431353137203135312e3133373832372c35392e3133313733363520433135312e3338393732342c36302e34353632383734203135322e3031393436352c36312e35323835343239203135332e30323730352c36322e33343835303320433135332e3937313636322c36332e31303533383932203135352e3037333730382c36332e35373834343331203135362e33333331392c36332e3736373636343720433135372e3834343536382c36342e30313939363031203135392e3338373433342c36342e30383330333339203136302e3936313738362c36332e39353638383632204c3136322e3735363534382c37372e38363436373037205a223e3c2f706174683e3c7061746820643d224d3138342e3736353939342c35332e3634343331313420433138352e3230363831332c35362e36303837383234203138362e3536303735362c35392e30333731323537203138382e3832373832332c36302e3932393334313320433139302e3135303237392c36312e393338353233203139312e3539383638332c36322e36393534303932203139332e3137333033362c36332e3220433139342e39333633312c36332e37303435393038203139362e3736323535392c36332e39323533343933203139382e3635313738322c36332e3836323237353420433230312e3137303734362c36332e38363232373534203230332e3635383232322c36332e35313533363933203230362e3131343231322c36322e3832313535363920433230382e3633333137362c36322e31323737343435203231312e3035373637392c36312e31383136333637203231332e33383737322c35392e39383332333335204c3231372e3434393534392c37322e3437313835363320433231342e32333738372c37342e373432353135203231302e3731313332312c37362e34313339373231203230362e3836393930312c37372e3438363232373520433230332e3039313435362c37382e34393534303932203139392e3238313532332c3739203139352e3434303130332c373920433139312e3033313931362c3739203138362e3831323635322c37382e32313135373638203138322e37383233312c37362e3633343733303520433137392e3132393831332c37352e30353738383432203137352e3934393632312c37322e38313837363235203137332e3234313733352c36392e3931373336353320433137302e3539363832332c36362e37363336373237203136382e373037362c36332e32203136372e3537343036362c35392e3232363334373320433136362e3639323432392c35352e38323033353933203136362e32353136312c35322e33353132393734203136362e32353136312c34382e3831393136313720433136362e3138383633362c34342e32373738343433203136362e3838313335312c33392e38333131333737203136382e3332393735352c33352e3437393034313920433136392e3731353138352c33312e37353736383436203137312e37393333332c32382e35303933383132203137342e3536343139312c32352e3733343133313720433137372e3436303939392c32332e30383530323939203138302e3739383632362c32312e31393238313434203138342e3537373037322c32302e30353734383520433138372e3732353737362c31392e31373434353131203139302e3936383934322c31382e37303133393732203139342e3330363536392c31382e3633383332333420433139372e3332393332362c31382e37303133393732203230302e3238393130382c31392e31373434353131203230332e3138353931372c32302e30353734383520433230362e3634393439322c32312e31393238313434203230392e3637323234382c32332e303533343933203231322e3235343138362c32352e36333935323120433231342e3833363132342c32382e34313437373035203231362e3735363833342c33312e36203231382e3031363331362c33352e3139353230393620433231392e3333383737322c33392e33353830383338203232302c34332e36313535363839203232302c34372e3936373636343720433232302c34392e39323239353431203231392e3933373032362c35312e38313531363937203231392e3831313037382c35332e36343433313134204c3138342e3736353939342c35332e36343433313134205a204d3230322e3532343638392c34322e3835383638323620433230322e3339383734312c34302e34363138373632203230312e3538303037372c33382e33343839303232203230302e3036383639392c33362e3531393736303520433139382e3336383339382c33342e37353336393236203139362e33323137342c33332e38333931323138203139332e3932383732352c33332e3737363034373920433139312e3437323733352c33332e39303231393536203138392e3336333130332c33342e38313637363635203138372e3539393832382c33362e3531393736303520433138352e3839393532382c33382e32383538323833203138342e3932333432392c34302e33393838303234203138342e3637313533332c34322e38353836383236204c3230322e3532343638392c34322e38353836383236205a223e3c2f706174683e3c2f673e3c706f6c79676f6e207472616e73666f726d3d227472616e736c6174652839352e3339323133362c2031352e3131303533382920726f74617465282d36322e31353336363429207472616e736c617465282d39352e3339323133362c202d31352e31313035333829202220706f696e74733d2238392e30393434313237202d352e3331373730323237203130312e3638393836202d352e3331373730323237203130312e36383938362033352e353338373739322038392e303934343132372033352e35333837373932223e3c2f706f6c79676f6e3e3c2f673e3c746578742069643d224d616c652d44656d6f6e732d4368616f7469632220666f6e742d66616d696c793d2247656f726769612220666f6e742d73697a653d2232382220666f6e742d7765696768743d226e6f726d616c22206c696e652d73706163696e673d223434222066696c6c3d2223464646464646223e3c747370616e20783d2236302220793d22323132223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f747370616e3e3c747370616e20783d2236302220793d22333838222066696c6c3d223c2f747370616e3e3c747370616e20783d2236302220793d22343736222066696c6c3d22a26469706673582212201f69131cc0b40d517f8791f36d0393c56dffd07f43d3cfe57896e887e5c6a04364736f6c63430008070033

Deployed Bytecode Sourcemap

44571:33113:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58000:460;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38421:224;;;;;;:::i;:::-;;:::i;:::-;;;18354:14:1;;18347:22;18329:41;;18317:2;18302:18;38421:224:0;18189:187:1;25535:100:0;;;:::i;27094:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;17652:32:1;;;17634:51;;17622:2;17607:18;27094:221:0;17488:203:1;26617:411:0;;;;;;:::i;:::-;;:::i;:::-;;56301:127;;;;;;:::i;:::-;;:::i;56590:117::-;;;;;;:::i;:::-;;:::i;56738:405::-;;;;;;:::i;:::-;;:::i;:::-;;;27630:25:1;;;27618:2;27603:18;56738:405:0;27484:177:1;39061:113:0;39149:10;:17;39061:113;;27984:339;;;;;;:::i;:::-;;:::i;56440:142::-;;;;;;:::i;:::-;;:::i;56155:138::-;;;;;;:::i;:::-;;:::i;57595:123::-;;;;;;:::i;:::-;;:::i;38729:256::-;;;;;;:::i;:::-;;:::i;55851:134::-;;;;;;:::i;:::-;;:::i;28394:185::-;;;;;;:::i;:::-;;:::i;74612:1199::-;;;;;;:::i;:::-;;:::i;57865:123::-;;;;;;:::i;:::-;;:::i;39251:233::-;;;;;;:::i;:::-;;:::i;25229:239::-;;;;;;:::i;:::-;;:::i;24959:208::-;;;;;;:::i;:::-;;:::i;9927:94::-;;;:::i;57174:403::-;;;;;;:::i;:::-;;:::i;9276:87::-;9349:6;;-1:-1:-1;;;;;9349:6:0;9276:87;;25704:104;;;:::i;27387:295::-;;;;;;:::i;:::-;;:::i;28650:328::-;;;;;;:::i;:::-;;:::i;55997:146::-;;;;;;:::i;:::-;;:::i;62125:10207::-;;;;;;:::i;:::-;;:::i;73414:1186::-;;;;;;:::i;:::-;;:::i;57730:123::-;;;;;;:::i;:::-;;:::i;55246:133::-;;;;;;:::i;:::-;;:::i;55541:140::-;;;;;;:::i;:::-;;:::i;55391:138::-;;;;;;:::i;:::-;;:::i;27753:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27874:25:0;;;27850:4;27874:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27753:164;10176:192;;;;;;:::i;:::-;;:::i;55693:146::-;;;;;;:::i;:::-;;:::i;58000:460::-;58076:13;58102:12;58117:77;58157:15;58166:5;58157:8;:15::i;:::-;58174:17;58183:7;58174:8;:17::i;:::-;58131:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58117:6;:77::i;:::-;58228:6;:13;58102:92;;-1:-1:-1;58205:13:0;;58221:20;;58102:92;58221:20;:::i;:::-;58205:36;;58262:6;58283:135;58293:15;:22;58289:26;;58283:135;;;58348:15;58364:1;58348:18;;;;;;;;:::i;:::-;;;;;;;;;58339:5;:27;58336:71;;58386:5;;58336:71;58317:3;;;;:::i;:::-;;;;58283:135;;;58435:17;58448:3;:1;58450;58448:3;:::i;:::-;58435:12;:17::i;:::-;58428:24;58000:460;-1:-1:-1;;;;;;58000:460:0:o;38421:224::-;38523:4;-1:-1:-1;;;;;;38547:50:0;;-1:-1:-1;;;38547:50:0;;:90;;;38601:36;38625:11;38601:23;:36::i;:::-;38540:97;38421:224;-1:-1:-1;;38421:224:0:o;25535:100::-;25589:13;25622:5;25615:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25535:100;:::o;27094:221::-;27170:7;30577:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30577:16:0;27190:73;;;;-1:-1:-1;;;27190:73:0;;23181:2:1;27190:73:0;;;23163:21:1;23220:2;23200:18;;;23193:30;23259:34;23239:18;;;23232:62;-1:-1:-1;;;23310:18:1;;;23303:42;23362:19;;27190:73:0;;;;;;;;;-1:-1:-1;27283:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27283:24:0;;27094:221::o;26617:411::-;26698:13;26714:23;26729:7;26714:14;:23::i;:::-;26698:39;;26762:5;-1:-1:-1;;;;;26756:11:0;:2;-1:-1:-1;;;;;26756:11:0;;;26748:57;;;;-1:-1:-1;;;26748:57:0;;25053:2:1;26748:57:0;;;25035:21:1;25092:2;25072:18;;;25065:30;25131:34;25111:18;;;25104:62;-1:-1:-1;;;25182:18:1;;;25175:31;25223:19;;26748:57:0;24851:397:1;26748:57:0;8216:10;-1:-1:-1;;;;;26840:21:0;;;;:62;;-1:-1:-1;26865:37:0;26882:5;8216:10;27753:164;:::i;26865:37::-;26818:168;;;;-1:-1:-1;;;26818:168:0;;21574:2:1;26818:168:0;;;21556:21:1;21613:2;21593:18;;;21586:30;21652:34;21632:18;;;21625:62;21723:26;21703:18;;;21696:54;21767:19;;26818:168:0;21372:420:1;26818:168:0;26999:21;27008:2;27012:7;26999:8;:21::i;:::-;26687:341;26617:411;;:::o;56301:127::-;56395:19;;;;:10;:19;;;;;:24;56389:5;:31;;56356:13;;56395:24;;;;;;56389:31;;;;;;:::i;:::-;;;;;;;;56382:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56301:127;;;:::o;56590:117::-;56651:13;56684:15;56691:7;56684:6;:15::i;56738:405::-;56803:7;56823:12;56838:65;56883:17;56892:7;56883:8;:17::i;:::-;56852:49;;;;;;;;:::i;56838:65::-;56823:80;-1:-1:-1;56914:13:0;56930:10;56937:3;56823:80;56930:10;:::i;:::-;56914:26;;56961:6;56982:133;56992:14;:21;56988:25;;56982:133;;;57046:14;57061:1;57046:17;;;;;;;;:::i;:::-;;;;;;;;;57037:5;:26;57034:70;;57083:5;;57034:70;57015:3;;;;:::i;:::-;;;;56982:133;;;57132:3;:1;57134;57132:3;:::i;:::-;57125:10;56738:405;-1:-1:-1;;;;;56738:405:0:o;27984:339::-;28179:41;8216:10;28212:7;28179:18;:41::i;:::-;28171:103;;;;-1:-1:-1;;;28171:103:0;;;;;;;:::i;:::-;28287:28;28297:4;28303:2;28307:7;28287:9;:28::i;56440:142::-;56544:19;;;;:10;:19;;;;;:29;56533:10;:41;;56500:13;;56544:29;;;;;;56533:41;;;;;;:::i;56155:138::-;56256:19;;;;:10;:19;;;;;:28;56214:13;;56247:38;;56256:28;;;;;56247:8;:38::i;57595:123::-;57652:13;57685:25;57692:7;57685:25;;;;;;;;;;;;;-1:-1:-1;;;57685:25:0;;;:6;:25::i;38729:256::-;38826:7;38862:23;38879:5;38862:16;:23::i;:::-;38854:5;:31;38846:87;;;;-1:-1:-1;;;38846:87:0;;18807:2:1;38846:87:0;;;18789:21:1;18846:2;18826:18;;;18819:30;18885:34;18865:18;;;18858:62;-1:-1:-1;;;18936:18:1;;;18929:41;18987:19;;38846:87:0;18605:407:1;38846:87:0;-1:-1:-1;;;;;;38951:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38729:256::o;55851:134::-;55950:19;;;;:10;:19;;;;;:26;55908:13;;55941:36;;55950:26;;;;;55941:8;:36::i;28394:185::-;28532:39;28549:4;28555:2;28559:7;28532:39;;;;;;;;;;;;:16;:39::i;74612:1199::-;12215:1;12811:7;;:19;;12803:63;;;;-1:-1:-1;;;12803:63:0;;27326:2:1;12803:63:0;;;27308:21:1;27365:2;27345:18;;;27338:30;27404:33;27384:18;;;27377:61;27455:18;;12803:63:0;27124:355:1;12803:63:0;12215:1;12944:7;:18;9349:6;;-1:-1:-1;;;;;9349:6:0;8216:10;9496:23:::1;9488:68;;;;-1:-1:-1::0;;;9488:68:0::1;;;;;;;:::i;:::-;74855:4:::2;74845:7;:14;:33;;;;;74873:5;74863:7;:15;74845:33;74837:62;;;;-1:-1:-1::0;;;74837:62:0::2;;;;;;;:::i;:::-;30553:4:::0;30577:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30577:16:0;:30;74910:46:::2;;;;-1:-1:-1::0;;;74910:46:0::2;;;;;;;:::i;:::-;74986:7;:14:::0;74975:25;::::2;74967:54;;;::::0;-1:-1:-1;;;74967:54:0;;26568:2:1;74967:54:0::2;::::0;::::2;26550:21:1::0;26607:2;26587:18;;;26580:30;-1:-1:-1;;;26626:18:1;;;26619:46;26682:18;;74967:54:0::2;26366:340:1::0;74967:54:0::2;75091:2;75081:6:::0;75073;75065;75057;75040:15:::2;75049:6:::0;75040;:15:::2;:::i;:::-;:23;;;;:::i;:::-;:31;;;;:::i;:::-;:39;;;;:::i;:::-;:47;;;;:::i;:::-;:53;;75032:88;;;::::0;-1:-1:-1;;;75032:88:0;;25799:2:1;75032:88:0::2;::::0;::::2;25781:21:1::0;25838:2;25818:18;;;25811:30;-1:-1:-1;;;25857:18:1;;;25850:52;25919:18;;75032:88:0::2;25597:346:1::0;75032:88:0::2;75148:5;:12:::0;75139:21;::::2;75131:48;;;::::0;-1:-1:-1;;;75131:48:0;;24300:2:1;75131:48:0::2;::::0;::::2;24282:21:1::0;24339:2;24319:18;;;24312:30;-1:-1:-1;;;24358:18:1;;;24351:44;24412:18;;75131:48:0::2;24098:338:1::0;75131:48:0::2;75208:10;:17:::0;75198:27;::::2;75190:55;;;::::0;-1:-1:-1;;;75190:55:0;;25455:2:1;75190:55:0::2;::::0;::::2;25437:21:1::0;25494:2;25474:18;;;25467:30;-1:-1:-1;;;25513:18:1;;;25506:45;25568:18;;75190:55:0::2;25253:339:1::0;75190:55:0::2;75301:8;75266:10;:19;75277:7;75266:19;;;;;;;;;;;:26;;;:44;;;;;;;;;;;;;;;;;;75358:6;75321:10;:19;75332:7;75321:19;;;;;;;;;;;:28;;;:44;;;;;;;;;;;;;;;;;;75414:6;75376:10;:19;75387:7;75376:19;;;;;;;;;;;:29;;;:45;;;;;;;;;;;;;;;;;;75473:6;75432:10;:19;75443:7;75432:19;;;;;;;;;;;:32;;;:48;;;;;;;;;;;;;;;;;;75526:6;75491:10;:19;75502:7;75491:19;;;;;;;;;;;:26;;;:42;;;;;;;;;;;;;;;;;;75581:6;75544:10;:19;75555:7;75544:19;;;;;;;;;;;:28;;;:44;;;;;;;;;;;;;;;;;;75640:6;75599:10;:19;75610:7;75599:19;;;;;;;;;;;:32;;;:48;;;;;;;;;;;;;;;;;;75691:6;75658:10;:19;75669:7;75658:19;;;;;;;;;;;:24;;;:40;;;;;;;;;;;;;;;;;;75747:7;75709:10;:19;75720:7;75709:19;;;;;;;;;;;:29;;;:46;;;;;;;;;;;;;;;;;;75776:27;75786:7;9349:6:::0;;-1:-1:-1;;;;;9349:6:0;;9276:87;75786:7:::2;75795;75776:9;:27::i;:::-;-1:-1:-1::0;;12171:1:0;13123:7;:22;-1:-1:-1;;;;;;;;74612:1199:0:o;57865:123::-;57922:13;57955:25;57962:7;57955:25;;;;;;;;;;;;;-1:-1:-1;;;57955:25:0;;;:6;:25::i;39251:233::-;39326:7;39362:30;39149:10;:17;;39061:113;39362:30;39354:5;:38;39346:95;;;;-1:-1:-1;;;39346:95:0;;26913:2:1;39346:95:0;;;26895:21:1;26952:2;26932:18;;;26925:30;26991:34;26971:18;;;26964:62;-1:-1:-1;;;27042:18:1;;;27035:42;27094:19;;39346:95:0;26711:408:1;39346:95:0;39459:10;39470:5;39459:17;;;;;;;;:::i;:::-;;;;;;;;;39452:24;;39251:233;;;:::o;25229:239::-;25301:7;25337:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25337:16:0;25372:19;25364:73;;;;-1:-1:-1;;;25364:73:0;;22410:2:1;25364:73:0;;;22392:21:1;22449:2;22429:18;;;22422:30;22488:34;22468:18;;;22461:62;-1:-1:-1;;;22539:18:1;;;22532:39;22588:19;;25364:73:0;22208:405:1;24959:208:0;25031:7;-1:-1:-1;;;;;25059:19:0;;25051:74;;;;-1:-1:-1;;;25051:74:0;;21999:2:1;25051:74:0;;;21981:21:1;22038:2;22018:18;;;22011:30;22077:34;22057:18;;;22050:62;-1:-1:-1;;;22128:18:1;;;22121:40;22178:19;;25051:74:0;21797:406:1;25051:74:0;-1:-1:-1;;;;;;25143:16:0;;;;;:9;:16;;;;;;;24959:208::o;9927:94::-;9349:6;;-1:-1:-1;;;;;9349:6:0;8216:10;9496:23;9488:68;;;;-1:-1:-1;;;9488:68:0;;;;;;;:::i;:::-;9992:21:::1;10010:1;9992:9;:21::i;:::-;9927:94::o:0;57174:403::-;57240:7;57260:13;57276:60;57316:17;57325:7;57316:8;:17::i;:::-;57290:44;;;;;;;;:::i;57276:60::-;57260:76;-1:-1:-1;57347:18:0;57368:11;57376:3;57260:76;57368:11;:::i;:::-;57347:32;;57390:6;57411:138;57421:14;:21;57417:25;;57411:138;;;57480:14;57495:1;57480:17;;;;;;;;:::i;:::-;;;;;;;;;57466:10;:31;57463:75;;57517:5;;57463:75;57444:3;;;;:::i;:::-;;;;57411:138;;25704:104;25760:13;25793:7;25786:14;;;;;:::i;27387:295::-;-1:-1:-1;;;;;27490:24:0;;8216:10;27490:24;;27482:62;;;;-1:-1:-1;;;27482:62:0;;20807:2:1;27482:62:0;;;20789:21:1;20846:2;20826:18;;;20819:30;20885:27;20865:18;;;20858:55;20930:18;;27482:62:0;20605:349:1;27482:62:0;8216:10;27557:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27557:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27557:53:0;;;;;;;;;;27626:48;;18329:41:1;;;27557:42:0;;8216:10;27626:48;;18302:18:1;27626:48:0;;;;;;;27387:295;;:::o;28650:328::-;28825:41;8216:10;28858:7;28825:18;:41::i;:::-;28817:103;;;;-1:-1:-1;;;28817:103:0;;;;;;;:::i;:::-;28931:39;28945:4;28951:2;28955:7;28964:5;28931:13;:39::i;:::-;28650:328;;;;:::o;55997:146::-;56102:19;;;;:10;:19;;;;;:32;56060:13;;56093:42;;56102:32;;;;;56093:8;:42::i;62125:10207::-;62190:13;62216:23;;:::i;:::-;62260:6505;;;;;;;;;;;;;;;;;;;68787:18;68797:7;68787:9;:18::i;:::-;68776:8;;;;:29;;;;68816:43;;;;;;;;;;;;;;;;;;;:8;;:43;68881:16;68889:7;68881;:16::i;:::-;68870:8;;;:27;68908:43;;;;;;;;;;;;;-1:-1:-1;68908:43:0;;;:8;;;:43;68973:21;68986:7;68973:12;:21::i;:::-;68962:8;;;:32;69005:49;;;;;;;;;;;;;;68962:8;69005:49;;;:8;;;:49;69076:41;69089:27;69108:7;69089:18;:27::i;69076:41::-;69065:8;;;:52;69128:15;;;;;;;;;;;;-1:-1:-1;;;69065:8:0;69128:15;;;:8;;;:15;69165:22;69179:7;69165:13;:22::i;:::-;69154:8;;;:33;69198:16;;;;;;;;;;;;-1:-1:-1;;;69154:8:0;69198:16;;;:9;;;:16;69237;69245:7;69237;:16::i;:::-;69225:9;;;:28;69264:50;;;;;;;;;;;;;;69225:9;69264:50;;;:9;;;:50;69337:25;69351:7;69360:1;69337:13;:25::i;:::-;69325:9;;;:37;69373:16;;;;;;;;;;;;-1:-1:-1;;;69325:9:0;69373:16;;;:9;;;:16;69412:18;69422:7;69412:9;:18::i;:::-;69400:9;;;:30;69441:50;;;;;;;;;;;;;;69400:9;69441:50;;;:9;;;:50;69514:25;69528:7;69537:1;69514:13;:25::i;:::-;69502:9;;;:37;69550:16;;;;;;;;;;;;-1:-1:-1;;;69502:9:0;69550:16;;;:9;;;:16;69589:18;69599:7;69589:9;:18::i;:::-;69577:9;;;:30;69618:50;;;;;;;;;;;;;;69577:9;69618:50;;;:9;;;:50;69691:25;69705:7;69714:1;69691:13;:25::i;:::-;69679:9;;;:37;69727:16;;;;;;;;;;;;-1:-1:-1;;;69679:9:0;69727:16;;;:9;;;:16;69766:18;69776:7;69766:9;:18::i;:::-;69754:9;;;:30;69795:499;;;;;;;;;;;;;;69754:9;69795:499;;;:9;;;:499;70317:20;70329:7;70317:11;:20::i;:::-;70305:9;;;:32;70348:45;;;;;;;;;;;;;70305:9;70348:45;;;:9;;;:45;70416:21;70429:7;70416:12;:21::i;:::-;70404:9;;;:33;70448:45;;;;;;;;;;;;;70404:9;70448:45;;;:9;;;:45;70516:24;70532:7;70516:15;:24::i;:::-;70504:9;;;:36;70551:45;;;;;;;;;;;;;70504:9;70551:45;;;:9;;;:45;70619:20;70631:7;70619:11;:20::i;:::-;70607:9;;;:32;70650:45;;;;;;;;;70613:2;70650:45;;;70607:9;70650:45;;;:9;;;:45;70718:24;70734:7;70718:15;:24::i;:::-;70706:9;;;:36;70753:45;;;;;;;;;;;;;70706:9;70753:45;;;:9;;;:45;70821:18;70831:7;70821:9;:18::i;:::-;70809:9;;;:30;70850:127;;;;;;;;;;;;;;70809:9;70850:127;;;:9;;;:127;70988:24;;;;;;;;;;;-1:-1:-1;;;70850:9:0;70988:24;;;;;;;:9;;;:24;;;;71080:8;;71090;;;;71100;;;;71110;;;;71120;;;;71130;;;;71140;;;;71063:86;;-1:-1:-1;;71063:86:0;;71140:8;;71063:86;;:::i;:::-;;;;;;;-1:-1:-1;;71063:86:0;;;;;;;71202:8;;;;71212;;;;71221;;;;71231:9;;;;71242;;;;71253;;;;71264;;;;71275;;;;71063:86;;-1:-1:-1;71177:108:0;;71063:86;;71275:9;71202:8;71177:108;;:::i;:::-;;;;;;;-1:-1:-1;;71177:108:0;;;;;;;71338:9;;;;71349;;;;71359;;;;71370;;;;71381;;;;71392;;;;71403;;;;71177:108;;-1:-1:-1;71313:100:0;;71177:108;;71403:9;71338;71313:100;;:::i;:::-;;;;;;;-1:-1:-1;;71313:100:0;;;;;;;71466:9;;;;71477;;;;71488;;;;71498;;;;71509;;;;71520;;;;71531;;;;71313:100;;-1:-1:-1;71441:100:0;;71313;;71531:9;71466;71441:100;;:::i;:::-;;;;-1:-1:-1;;71441:100:0;;;;;;;;;;71594:9;;;;71605;;;;71616;;;;71626;;;;71637;;;;71648;;;;71441:100;;-1:-1:-1;71569:89:0;;71441:100;;71648:9;71594;71569:89;;:::i;:::-;;;;;;;-1:-1:-1;;71569:89:0;;;;;;;71711:9;;;;71722;;;;71733;;;;71569:89;;-1:-1:-1;71686:57:0;;71569:89;;71733:9;71711;71686:57;;:::i;:::-;;;;;;;;;;;;;71670:74;;71765:24;71792:124;71811:18;71821:7;71811:9;:18::i;:::-;71831:16;71839:7;71831;:16::i;:::-;71849:21;71862:7;71849:12;:21::i;:::-;71872:20;71884:7;71872:11;:20::i;:::-;71894:21;71907:7;71894:12;:21::i;:::-;71792:18;:124::i;:::-;71765:151;;71927:18;71948:267;72012:17;72021:7;72012:8;:17::i;:::-;72143:28;72163:6;72143:13;:28::i;:::-;72196:10;71975:237;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71948:13;:267::i;:::-;71927:288;;72292:4;72242:55;;;;;;;;:::i;:::-;;;;-1:-1:-1;;72242:55:0;;;;;;;;;;62125:10207;-1:-1:-1;;;;;;62125:10207:0:o;73414:1186::-;12215:1;12811:7;;:19;;12803:63;;;;-1:-1:-1;;;12803:63:0;;27326:2:1;12803:63:0;;;27308:21:1;27365:2;27345:18;;;27338:30;27404:33;27384:18;;;27377:61;27455:18;;12803:63:0;27124:355:1;12803:63:0;12215:1;12944:7;:18;73632:11;;;;;:30:::1;;;73658:4;73647:7;:15;;73632:30;73624:59;;;;-1:-1:-1::0;;;73624:59:0::1;;;;;;;:::i;:::-;30553:4:::0;30577:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30577:16:0;:30;73694:46:::1;;;;-1:-1:-1::0;;;73694:46:0::1;;;;;;;:::i;:::-;73770:7;:14:::0;73759:25;::::1;73751:54;;;::::0;-1:-1:-1;;;73751:54:0;;26568:2:1;73751:54:0::1;::::0;::::1;26550:21:1::0;26607:2;26587:18;;;26580:30;-1:-1:-1;;;26626:18:1;;;26619:46;26682:18;;73751:54:0::1;26366:340:1::0;73751:54:0::1;73875:2;73865:6:::0;73857;73849;73841;73824:15:::1;73833:6:::0;73824;:15:::1;:::i;:::-;:23;;;;:::i;:::-;:31;;;;:::i;:::-;:39;;;;:::i;:::-;:47;;;;:::i;:::-;:53;;73816:88;;;::::0;-1:-1:-1;;;73816:88:0;;25799:2:1;73816:88:0::1;::::0;::::1;25781:21:1::0;25838:2;25818:18;;;25811:30;-1:-1:-1;;;25857:18:1;;;25850:52;25919:18;;73816:88:0::1;25597:346:1::0;73816:88:0::1;73932:5;:12:::0;73923:21;::::1;73915:48;;;::::0;-1:-1:-1;;;73915:48:0;;24300:2:1;73915:48:0::1;::::0;::::1;24282:21:1::0;24339:2;24319:18;;;24312:30;-1:-1:-1;;;24358:18:1;;;24351:44;24412:18;;73915:48:0::1;24098:338:1::0;73915:48:0::1;73992:10;:17:::0;73982:27;::::1;73974:55;;;::::0;-1:-1:-1;;;73974:55:0;;25455:2:1;73974:55:0::1;::::0;::::1;25437:21:1::0;25494:2;25474:18;;;25467:30;-1:-1:-1;;;25513:18:1;;;25506:45;25568:18;;73974:55:0::1;25253:339:1::0;73974:55:0::1;74085:8;74050:10;:19;74061:7;74050:19;;;;;;;;;;;:26;;;:44;;;;;;;;;;;;;;;;;;74142:6;74105:10;:19;74116:7;74105:19;;;;;;;;;;;:28;;;:44;;;;;;;;;;;;;;;;;;74198:6;74160:10;:19;74171:7;74160:19;;;;;;;;;;;:29;;;:45;;;;;;;;;;;;;;;;;;74257:6;74216:10;:19;74227:7;74216:19;;;;;;;;;;;:32;;;:48;;;;;;;;;;;;;;;;;;74310:6;74275:10;:19;74286:7;74275:19;;;;;;;;;;;:26;;;:42;;;;;;;;;;;;;;;;;;74365:6;74328:10;:19;74339:7;74328:19;;;;;;;;;;;:28;;;:44;;;;;;;;;;;;;;;;;;74424:6;74383:10;:19;74394:7;74383:19;;;;;;;;;;;:32;;;:48;;;;;;;;;;;;;;;;;;74475:6;74442:10;:19;74453:7;74442:19;;;;;;;;;;;:24;;;:40;;;;;;;;;;;;;;;;;;74531:7;74493:10;:19;74504:7;74493:19;;;;;;;;;;;:29;;;:46;;;;;;;;;;;;;;;;;;74560:32;74570:12;8216:10:::0;;8136:98;57730:123;57787:13;57820:25;57827:7;57820:25;;;;;;;;;;;;;-1:-1:-1;;;57820:25:0;;;:6;:25::i;55246:133::-;55344:19;;;;:10;:19;;;;;:26;55336:7;:35;;55303:13;;55344:26;;;55336:35;;;;;;:::i;55541:140::-;55643:19;;;;:10;:19;;;;;:29;55601:13;;55634:39;;55643:29;;;;;55634:8;:39::i;55391:138::-;55492:19;;;;:10;:19;;;;;:28;55450:13;;55483:38;;55492:28;;;;;55483:8;:38::i;10176:192::-;9349:6;;-1:-1:-1;;;;;9349:6:0;8216:10;9496:23;9488:68;;;;-1:-1:-1;;;9488:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10265:22:0;::::1;10257:73;;;::::0;-1:-1:-1;;;10257:73:0;;19638:2:1;10257:73:0::1;::::0;::::1;19620:21:1::0;19677:2;19657:18;;;19650:30;19716:34;19696:18;;;19689:62;-1:-1:-1;;;19767:18:1;;;19760:36;19813:19;;10257:73:0::1;19436:402:1::0;10257:73:0::1;10341:19;10351:8;10341:9;:19::i;:::-;10176:192:::0;:::o;55693:146::-;55798:19;;;;:10;:19;;;;;:32;55756:13;;55789:42;;55798:32;;;;;75823:715;75879:13;76092:10;76088:53;;-1:-1:-1;;76119:10:0;;;;;;;;;;;;-1:-1:-1;;;76119:10:0;;;;;75823:715::o;76088:53::-;76166:5;76151:12;76207:78;76214:9;;76207:78;;76240:8;;;;:::i;:::-;;-1:-1:-1;76263:10:0;;-1:-1:-1;76271:2:0;76263:10;;:::i;:::-;;;76207:78;;;76295:19;76327:6;76317:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;76317:17:0;;76295:39;;76345:154;76352:10;;76345:154;;76379:11;76389:1;76379:11;;:::i;:::-;;-1:-1:-1;76448:10:0;76456:2;76448:5;:10;:::i;:::-;76435:24;;:2;:24;:::i;:::-;76422:39;;76405:6;76412;76405:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;76405:56:0;;;;;;;;-1:-1:-1;76476:11:0;76485:2;76476:11;;:::i;:::-;;;76345:154;;;76523:6;75823:715;-1:-1:-1;;;;75823:715:0:o;55096:138::-;55156:7;55218:5;55201:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;55201:23:0;;;;;;;;;55191:34;;55201:23;55191:34;;;;;55096:138;-1:-1:-1;;55096:138:0:o;58472:445::-;58532:13;58561:5;58570:1;58561:10;58558:352;;;-1:-1:-1;;58587:16:0;;;;;;;;;;;;-1:-1:-1;;;58587:16:0;;;;;58472:445::o;58558:352::-;58623:5;58632:1;58623:10;58620:290;;;-1:-1:-1;;58649:16:0;;;;;;;;;;;;-1:-1:-1;;;58649:16:0;;;;;58472:445::o;58620:290::-;58685:5;58694:1;58685:10;58682:228;;;-1:-1:-1;;58711:16:0;;;;;;;;;;;;-1:-1:-1;;;58711:16:0;;;;;58472:445::o;58682:228::-;58747:5;58756:1;58747:10;58744:166;;;-1:-1:-1;;58773:16:0;;;;;;;;;;;;-1:-1:-1;;;58773:16:0;;;;;58472:445::o;58744:166::-;58809:5;58818:1;58809:10;58806:104;;;-1:-1:-1;;58835:16:0;;;;;;;;;;;;-1:-1:-1;;;58835:16:0;;;;;58472:445::o;58806:104::-;-1:-1:-1;;58882:16:0;;;;;;;;;;;;-1:-1:-1;;;58882:16:0;;;;;58472:445::o;58806:104::-;58472:445;;;:::o;24590:305::-;24692:4;-1:-1:-1;;;;;;24729:40:0;;-1:-1:-1;;;24729:40:0;;:105;;-1:-1:-1;;;;;;;24786:48:0;;-1:-1:-1;;;24786:48:0;24729:105;:158;;;-1:-1:-1;;;;;;;;;;23306:40:0;;;24851:36;23197:157;34470:174;34545:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34545:29:0;-1:-1:-1;;;;;34545:29:0;;;;;;;;:24;;34599:23;34545:24;34599:14;:23::i;:::-;-1:-1:-1;;;;;34590:46:0;;;;;;;;;;;34470:174;;:::o;58929:596::-;58985:13;59011:16;59030:26;59048:7;59030:17;:26::i;:::-;59011:45;;59067:17;59087:27;59106:7;59087:18;:27::i;:::-;59125;59155:17;;;:7;:17;;;;;;;;:28;;;;;;;;59125:58;;;;;;;;;;;;;;;;;59067:47;;-1:-1:-1;59125:27:0;;:58;;59155:28;59125:27;;:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59204:12;59219:59;59258:17;59267:7;59258:8;:17::i;:::-;59233:43;;;;;;;;:::i;59219:59::-;59204:74;;59289:20;59312:11;59331;:18;59324:4;:25;;;;:::i;:::-;59312:38;;;;;;;;:::i;:::-;;;;;;;59289:61;;59371:20;59394:9;59411;:16;;;;59404:4;:23;;;;:::i;:::-;59394:34;;;;;;;;:::i;:::-;;;;;;;;59371:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59472:6;59485;59455:37;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;59455:37:0;;;;;;;;;;58929:596;-1:-1:-1;;;;;;;;58929:596:0:o;30782:348::-;30875:4;30577:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30577:16:0;30892:73;;;;-1:-1:-1;;;30892:73:0;;21161:2:1;30892:73:0;;;21143:21:1;21200:2;21180:18;;;21173:30;21239:34;21219:18;;;21212:62;-1:-1:-1;;;21290:18:1;;;21283:42;21342:19;;30892:73:0;20959:408:1;30892:73:0;30976:13;30992:23;31007:7;30992:14;:23::i;:::-;30976:39;;31045:5;-1:-1:-1;;;;;31034:16:0;:7;-1:-1:-1;;;;;31034:16:0;;:51;;;;31078:7;-1:-1:-1;;;;;31054:31:0;:20;31066:7;31054:11;:20::i;:::-;-1:-1:-1;;;;;31054:31:0;;31034:51;:87;;;-1:-1:-1;;;;;;27874:25:0;;;27850:4;27874:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31089:32;27753:164;33774:578;33933:4;-1:-1:-1;;;;;33906:31:0;:23;33921:7;33906:14;:23::i;:::-;-1:-1:-1;;;;;33906:31:0;;33898:85;;;;-1:-1:-1;;;33898:85:0;;24643:2:1;33898:85:0;;;24625:21:1;24682:2;24662:18;;;24655:30;24721:34;24701:18;;;24694:62;-1:-1:-1;;;24772:18:1;;;24765:39;24821:19;;33898:85:0;24441:405:1;33898:85:0;-1:-1:-1;;;;;34002:16:0;;33994:65;;;;-1:-1:-1;;;33994:65:0;;20402:2:1;33994:65:0;;;20384:21:1;20441:2;20421:18;;;20414:30;20480:34;20460:18;;;20453:62;-1:-1:-1;;;20531:18:1;;;20524:34;20575:19;;33994:65:0;20200:400:1;33994:65:0;34072:39;34093:4;34099:2;34103:7;34072:20;:39::i;:::-;34176:29;34193:1;34197:7;34176:8;:29::i;:::-;-1:-1:-1;;;;;34218:15:0;;;;;;:9;:15;;;;;:20;;34237:1;;34218:15;:20;;34237:1;;34218:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34249:13:0;;;;;;:9;:13;;;;;:18;;34266:1;;34249:13;:18;;34266:1;;34249:18;:::i;:::-;;;;-1:-1:-1;;34278:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34278:21:0;-1:-1:-1;;;;;34278:21:0;;;;;;;;;34317:27;;34278:16;;34317:27;;;;;;;33774:578;;;:::o;59537:346::-;59618:13;59644:12;59659:62;59690:9;59701:17;59710:7;59701:8;:17::i;:::-;59673:46;;;;;;;;;:::i;59659:62::-;59755:6;:13;59644:77;;-1:-1:-1;59732:13:0;;59748:20;;59644:77;59748:20;:::i;:::-;59732:36;;59779:20;59831:6;59838:5;59831:13;;;;;;;;:::i;:::-;;;;;;;;59809:41;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;59809:41:0;;;;;;;59537:346;-1:-1:-1;;;;;;59537:346:0:o;31472:110::-;31548:26;31558:2;31562:7;31548:26;;;;;;;;;;;;:9;:26::i;:::-;31472:110;;:::o;10376:173::-;10451:6;;;-1:-1:-1;;;;;10468:17:0;;;-1:-1:-1;;;;;;10468:17:0;;;;;;;10501:40;;10451:6;;;10468:17;10451:6;;10501:40;;10432:16;;10501:40;10421:128;10376:173;:::o;29860:315::-;30017:28;30027:4;30033:2;30037:7;30017:9;:28::i;:::-;30064:48;30087:4;30093:2;30097:7;30106:5;30064:22;:48::i;:::-;30056:111;;;;-1:-1:-1;;;30056:111:0;;;;;;;:::i;59895:847::-;59978:35;;;;;;;;;;;;-1:-1:-1;;;59978:35:0;;;;;;;;60024:31;;;;;;;;;;-1:-1:-1;;;60024:31:0;;;;60066:33;;;;;;;;;;-1:-1:-1;;;60066:33:0;;;;60110;;;;;;;;;;-1:-1:-1;;;60110:33:0;;;;60154:31;;;;;;;;;;-1:-1:-1;;;60154:31:0;;;;60196:33;;;;;;;;;;-1:-1:-1;;;60196:33:0;;;;60250:23;;;;;;;;59978:22;60250:23;;;59952:13;;60024:31;;60066:33;;60110;;60154:31;60196:33;60250:23;60304:26;60322:7;60304:17;:26::i;:::-;60284:46;;60346:9;60359:1;60346:14;60343:368;;;60385:4;60376:13;;60343:368;;;60410:9;60423:1;60410:14;60406:305;;;60449:8;60440:17;;60406:305;;;60478:9;60491:1;60478:14;60474:237;;;60517:6;60508:15;;60474:237;;;60544:9;60557:1;60544:14;60540:171;;;60583:6;60574:15;;60540:171;;;60610:9;60623:1;60610:14;60606:105;;;60649:4;60640:13;;60606:105;;;60693:6;60684:15;;60606:105;-1:-1:-1;60728:6:0;59895:847;-1:-1:-1;;;;;;;;59895:847:0:o;60754:837::-;60841:35;;;;;;;;;;;-1:-1:-1;;;60841:35:0;;;;;;;;60887:27;;;;;;;;;;;-1:-1:-1;;;60887:27:0;;;;60925:31;;;;;;;;;;;-1:-1:-1;;;60925:31:0;;;;60967;;;;;;;;;;-1:-1:-1;;;60967:31:0;;;;61009:27;;;;;;;;;;-1:-1:-1;;;61009:27:0;;;;61047:31;;;;;;;;;;;-1:-1:-1;;;61047:31:0;;;;;;;60815:13;;60887:27;;60925:31;;60967;;61009:27;60841:22;61119:26;61137:7;61119:17;:26::i;:::-;61156:25;;;;;;;;;:20;:25;;61099:46;;-1:-1:-1;61208:1:0;61195:14;;61192:368;;;-1:-1:-1;61234:4:0;61192:368;;;61259:9;61272:1;61259:14;61255:305;;;-1:-1:-1;61298:8:0;61255:305;;;61327:9;61340:1;61327:14;61323:237;;;-1:-1:-1;61366:6:0;61323:237;;;61393:9;61406:1;61393:14;61389:171;;;-1:-1:-1;61432:6:0;61389:171;;;61459:9;61472:1;61459:14;61455:105;;;-1:-1:-1;61498:4:0;61455:105;;;-1:-1:-1;61542:6:0;61455:105;61577:6;60754:837;-1:-1:-1;;;;;;;;;60754:837:0:o;61603:514::-;61665:13;61691:17;61711:27;61730:7;61711:18;:27::i;:::-;61691:47;;61752:9;61765:1;61752:14;61749:361;;;-1:-1:-1;;61782:13:0;;;;;;;;;;;;-1:-1:-1;;;61782:13:0;;;;;61603:514;-1:-1:-1;61603:514:0:o;61749:361::-;61816:9;61829:1;61816:14;61812:298;;;-1:-1:-1;;61846:12:0;;;;;;;;;;;;-1:-1:-1;;;61846:12:0;;;;;61603:514;-1:-1:-1;61603:514:0:o;61812:298::-;61879:9;61892:1;61879:14;61875:235;;;-1:-1:-1;;61909:15:0;;;;;;;;;;;;-1:-1:-1;;;61909:15:0;;;;;61603:514;-1:-1:-1;61603:514:0:o;61875:235::-;61945:9;61958:1;61945:14;61941:169;;;-1:-1:-1;;61975:13:0;;;;;;;;;;;;-1:-1:-1;;;61975:13:0;;;;;61603:514;-1:-1:-1;61603:514:0:o;61941:169::-;62009:9;62022:1;62009:14;62005:105;;;-1:-1:-1;;62039:14:0;;;;;;;;;;;;-1:-1:-1;;;62039:14:0;;;;;61603:514;-1:-1:-1;61603:514:0:o;62005:105::-;-1:-1:-1;;62084:14:0;;;;;;;;;;;;-1:-1:-1;;;62084:14:0;;;;;61603:514;-1:-1:-1;61603:514:0:o;62005:105::-;61680:437;61603:514;;;:::o;72340:1066::-;72493:13;72518:27;;:::i;:::-;72556:54;;;;;;;;;;;;;;;;;;;:12;72621;;;:21;;;72653:64;;;;;;;;;;;;;;;;;;;;:12;;;;:64;;;;72728:12;;;;:20;;;72759:56;;;;;;;;;;;;;72653:12;72759:56;;;:12;;;:56;72826:12;;;:19;;;72856:61;;;;;;;;;;;;;;72759:12;72856:61;;;:12;;;:61;72928:12;;;:18;;;72957:63;;;;;;;;;;;;;;72856:12;72957:63;;;:12;;;:63;73031:12;;;:19;;;73061:22;;;;;;;;;;;-1:-1:-1;;;72957:12:0;73061:22;;;;;;;:13;;;:22;;;;73155:12;;73169;;;;73183;;;;73197;;;;73211;;;;73225;;;;-1:-1:-1;;;73239:12:0;-1:-1:-1;;;73253:12:0;73138:128;;-1:-1:-1;;73138:128:0;;73253:12;;73138:128;;:::i;:::-;;;;;;;-1:-1:-1;;73138:128:0;;;;;;;73327:12;;;;73341;;;;73355:13;;;;73138:128;;-1:-1:-1;73298:71:0;;73138:128;;73355:13;73327:12;73298:71;;:::i;:::-;;;;;;;-1:-1:-1;;73298:71:0;;;;;;;72340:1066;-1:-1:-1;;;;;;;;72340:1066:0:o;77884:1607::-;77982:11;;77942:13;;78008:8;78004:23;;-1:-1:-1;;78018:9:0;;;;;;;;;-1:-1:-1;78018:9:0;;;77884:1607;-1:-1:-1;77884:1607:0:o;78004:23::-;78079:18;78117:1;78106:7;:3;78112:1;78106:7;:::i;:::-;78105:13;;;;:::i;:::-;78100:19;;:1;:19;:::i;:::-;78079:40;-1:-1:-1;78177:19:0;78209:15;78079:40;78222:2;78209:15;:::i;:::-;78199:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;78199:26:0;;78177:48;;78238:18;78259:5;;;;;;;;;;;;;;;;;78238:26;;78328:1;78321:5;78317:13;78373:2;78365:6;78361:15;78424:1;78392:777;78447:3;78444:1;78441:10;78392:777;;;78502:1;78545:12;;;;;78539:19;78640:4;78628:2;78624:14;;;;;78606:40;;78600:47;78749:2;78745:14;;;78741:25;;78727:40;;78721:47;78878:1;78874:13;;;78870:24;;78856:39;;78850:46;78998:16;;;;78984:31;;78978:38;78676:1;78672:11;;;78770:4;78717:58;;;78708:68;78801:11;;78846:57;;;78837:67;;;;78929:11;;78974:49;;78965:59;79053:3;79049:13;79082:22;;79152:1;79137:17;;;;78495:9;78392:777;;;78396:44;79201:1;79196:3;79192:11;79222:1;79217:84;;;;79320:1;79315:82;;;;79185:212;;79217:84;-1:-1:-1;;;;;79250:17:0;;79243:43;79217:84;;79315:82;-1:-1:-1;;;;;79348:17:0;;79341:41;79185:212;-1:-1:-1;;;79413:26:0;;;79420:6;77884:1607;-1:-1:-1;;;;77884:1607:0:o;40097:589::-;-1:-1:-1;;;;;40303:18:0;;40299:187;;40338:40;40370:7;41513:10;:17;;41486:24;;;;:15;:24;;;;;:44;;;41541:24;;;;;;;;;;;;41409:164;40338:40;40299:187;;;40408:2;-1:-1:-1;;;;;40400:10:0;:4;-1:-1:-1;;;;;40400:10:0;;40396:90;;40427:47;40460:4;40466:7;40427:32;:47::i;:::-;-1:-1:-1;;;;;40500:16:0;;40496:183;;40533:45;40570:7;40533:36;:45::i;40496:183::-;40606:4;-1:-1:-1;;;;;40600:10:0;:2;-1:-1:-1;;;;;40600:10:0;;40596:83;;40627:40;40655:2;40659:7;40627:27;:40::i;31809:321::-;31939:18;31945:2;31949:7;31939:5;:18::i;:::-;31990:54;32021:1;32025:2;32029:7;32038:5;31990:22;:54::i;:::-;31968:154;;;;-1:-1:-1;;;31968:154:0;;;;;;;:::i;35209:803::-;35364:4;-1:-1:-1;;;;;35385:13:0;;15692:20;15740:8;35381:624;;35421:72;;-1:-1:-1;;;35421:72:0;;-1:-1:-1;;;;;35421:36:0;;;;;:72;;8216:10;;35472:4;;35478:7;;35487:5;;35421:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35421:72:0;;;;;;;;-1:-1:-1;;35421:72:0;;;;;;;;;;;;:::i;:::-;;;35417:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35667:13:0;;35663:272;;35710:60;;-1:-1:-1;;;35710:60:0;;;;;;;:::i;35663:272::-;35885:6;35879:13;35870:6;35866:2;35862:15;35855:38;35417:533;-1:-1:-1;;;;;;35544:55:0;-1:-1:-1;;;35544:55:0;;-1:-1:-1;35537:62:0;;35381:624;-1:-1:-1;35989:4:0;35209:803;;;;;;:::o;42200:988::-;42466:22;42516:1;42491:22;42508:4;42491:16;:22::i;:::-;:26;;;;:::i;:::-;42528:18;42549:26;;;:17;:26;;;;;;42466:51;;-1:-1:-1;42682:28:0;;;42678:328;;-1:-1:-1;;;;;42749:18:0;;42727:19;42749:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42800:30;;;;;;:44;;;42917:30;;:17;:30;;;;;:43;;;42678:328;-1:-1:-1;43102:26:0;;;;:17;:26;;;;;;;;43095:33;;;-1:-1:-1;;;;;43146:18:0;;;;;:12;:18;;;;;:34;;;;;;;43139:41;42200:988::o;43483:1079::-;43761:10;:17;43736:22;;43761:21;;43781:1;;43761:21;:::i;:::-;43793:18;43814:24;;;:15;:24;;;;;;44187:10;:26;;43736:46;;-1:-1:-1;43814:24:0;;43736:46;;44187:26;;;;;;:::i;:::-;;;;;;;;;44165:48;;44251:11;44226:10;44237;44226:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44331:28;;;:15;:28;;;;;;;:41;;;44503:24;;;;;44496:31;44538:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43554:1008;;;43483:1079;:::o;40987:221::-;41072:14;41089:20;41106:2;41089:16;:20::i;:::-;-1:-1:-1;;;;;41120:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41165:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40987:221:0:o;32466:382::-;-1:-1:-1;;;;;32546:16:0;;32538:61;;;;-1:-1:-1;;;32538:61:0;;22820:2:1;32538:61:0;;;22802:21:1;;;22839:18;;;22832:30;22898:34;22878:18;;;22871:62;22950:18;;32538:61:0;22618:356:1;32538:61:0;30553:4;30577:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30577:16:0;:30;32610:58;;;;-1:-1:-1;;;32610:58:0;;20045:2:1;32610:58:0;;;20027:21:1;20084:2;20064:18;;;20057:30;20123;20103:18;;;20096:58;20171:18;;32610:58:0;19843:352:1;32610:58:0;32681:45;32710:1;32714:2;32718:7;32681:20;:45::i;:::-;-1:-1:-1;;;;;32739:13:0;;;;;;:9;:13;;;;;:18;;32756:1;;32739:13;:18;;32756:1;;32739:18;:::i;:::-;;;;-1:-1:-1;;32768:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32768:21:0;-1:-1:-1;;;;;32768:21:0;;;;;;;;32807:33;;32768:16;;;32807:33;;32768:16;;32807:33;32466:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;192:186;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:180::-;3298:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:52;;;3367:1;3364;3357:12;3319:52;-1:-1:-1;3390:23:1;;3239:180;-1:-1:-1;3239:180:1:o;3424:248::-;3492:6;3500;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;-1:-1:-1;;3592:23:1;;;3662:2;3647:18;;;3634:32;;-1:-1:-1;3424:248:1:o;3677:799::-;3817:6;3825;3833;3841;3849;3857;3865;3873;3881;3889;3942:3;3930:9;3921:7;3917:23;3913:33;3910:53;;;3959:1;3956;3949:12;3910:53;-1:-1:-1;;3982:23:1;;;4052:2;4037:18;;4024:32;;-1:-1:-1;4103:2:1;4088:18;;4075:32;;4154:2;4139:18;;4126:32;;-1:-1:-1;4205:3:1;4190:19;;4177:33;;-1:-1:-1;4257:3:1;4242:19;;4229:33;;-1:-1:-1;4309:3:1;4294:19;;4281:33;;-1:-1:-1;4361:3:1;4346:19;;4333:33;;-1:-1:-1;4413:3:1;4398:19;;4385:33;;-1:-1:-1;4465:3:1;4450:19;4437:33;;-1:-1:-1;3677:799:1;-1:-1:-1;3677:799:1:o;4481:257::-;4522:3;4560:5;4554:12;4587:6;4582:3;4575:19;4603:63;4659:6;4652:4;4647:3;4643:14;4636:4;4629:5;4625:16;4603:63;:::i;:::-;4720:2;4699:15;-1:-1:-1;;4695:29:1;4686:39;;;;4727:4;4682:50;;4481:257;-1:-1:-1;;4481:257:1:o;4871:276::-;5002:3;5040:6;5034:13;5056:53;5102:6;5097:3;5090:4;5082:6;5078:17;5056:53;:::i;:::-;5125:16;;;;;4871:276;-1:-1:-1;;4871:276:1:o;5152:470::-;5331:3;5369:6;5363:13;5385:53;5431:6;5426:3;5419:4;5411:6;5407:17;5385:53;:::i;:::-;5501:13;;5460:16;;;;5523:57;5501:13;5460:16;5557:4;5545:17;;5523:57;:::i;:::-;5596:20;;5152:470;-1:-1:-1;;;;5152:470:1:o;5627:858::-;5902:3;5940:6;5934:13;5956:53;6002:6;5997:3;5990:4;5982:6;5978:17;5956:53;:::i;:::-;6072:13;;6031:16;;;;6094:57;6072:13;6031:16;6128:4;6116:17;;6094:57;:::i;:::-;6218:13;;6173:20;;;6240:57;6218:13;6173:20;6274:4;6262:17;;6240:57;:::i;:::-;6364:13;;6319:20;;;6386:57;6364:13;6319:20;6420:4;6408:17;;6386:57;:::i;:::-;6459:20;;5627:858;-1:-1:-1;;;;;;5627:858:1:o;6490:1449::-;6909:3;6947:6;6941:13;6973:4;6986:51;7030:6;7025:3;7020:2;7012:6;7008:15;6986:51;:::i;:::-;7100:13;;7059:16;;;;7122:55;7100:13;7059:16;7144:15;;;7122:55;:::i;:::-;7244:13;;7199:20;;;7266:55;7244:13;7199:20;7288:15;;;7266:55;:::i;:::-;7388:13;;7343:20;;;7410:55;7388:13;7343:20;7432:15;;;7410:55;:::i;:::-;7532:13;;7487:20;;;7554:55;7532:13;7487:20;7576:15;;;7554:55;:::i;:::-;7676:13;;7631:20;;;7698:55;7676:13;7631:20;7720:15;;;7698:55;:::i;:::-;7820:13;;7775:20;;;7842:55;7820:13;7775:20;7864:15;;;7842:55;:::i;:::-;7913:20;;;;;6490:1449;-1:-1:-1;;;;;;;;;;6490:1449:1:o;7944:1641::-;8411:3;8449:6;8443:13;8475:4;8488:51;8532:6;8527:3;8522:2;8514:6;8510:15;8488:51;:::i;:::-;8602:13;;8561:16;;;;8624:55;8602:13;8561:16;8646:15;;;8624:55;:::i;:::-;8746:13;;8701:20;;;8768:55;8746:13;8701:20;8790:15;;;8768:55;:::i;:::-;8890:13;;8845:20;;;8912:55;8890:13;8845:20;8934:15;;;8912:55;:::i;:::-;9034:13;;8989:20;;;9056:55;9034:13;8989:20;9078:15;;;9056:55;:::i;:::-;9178:13;;9133:20;;;9200:55;9178:13;9133:20;9222:15;;;9200:55;:::i;:::-;9322:13;;9277:20;;;9344:55;9322:13;9277:20;9366:15;;;9344:55;:::i;:::-;9466:13;;9421:20;;;9488:55;9466:13;9421:20;9510:15;;;9488:55;:::i;:::-;9559:20;;;;;7944:1641;-1:-1:-1;;;;;;;;;;;7944:1641:1:o;9590:1776::-;10105:3;10143:6;10137:13;10159:53;10205:6;10200:3;10193:4;10185:6;10181:17;10159:53;:::i;:::-;10243:6;10237:13;10259:68;10318:8;10309:6;10304:3;10300:16;10293:4;10285:6;10281:17;10259:68;:::i;:::-;10405:13;;10353:16;;;10349:31;;10427:57;10405:13;10349:31;10461:4;10449:17;;10427:57;:::i;:::-;10515:6;10509:13;10531:72;10594:8;10583;10576:5;10572:20;10565:4;10557:6;10553:17;10531:72;:::i;:::-;10685:13;;10629:20;;;;10625:35;;10707:57;10685:13;10625:35;10741:4;10729:17;;10707:57;:::i;:::-;10795:6;10789:13;10811:72;10874:8;10863;10856:5;10852:20;10845:4;10837:6;10833:17;10811:72;:::i;:::-;10965:13;;10909:20;;;;10905:35;;10987:57;10965:13;10905:35;11021:4;11009:17;;10987:57;:::i;:::-;11111:13;;11066:20;;;11133:57;11111:13;11066:20;11167:4;11155:17;;11133:57;:::i;:::-;11221:6;11215:13;11237:72;11300:8;11289;11282:5;11278:20;11271:4;11263:6;11259:17;11237:72;:::i;:::-;11329:20;;11325:35;;9590:1776;-1:-1:-1;;;;;;;;;;;9590:1776:1:o;11371:614::-;11651:3;11689:6;11683:13;11705:53;11751:6;11746:3;11739:4;11731:6;11727:17;11705:53;:::i;:::-;-1:-1:-1;;;11780:16:1;;;11805:18;;;11848:13;;11870:65;11848:13;11922:1;11911:13;;11904:4;11892:17;;11870:65;:::i;:::-;11955:20;11977:1;11951:28;;11371:614;-1:-1:-1;;;;11371:614:1:o;11990:421::-;-1:-1:-1;;;12247:3:1;12240:19;12222:3;12288:6;12282:13;12304:61;12358:6;12354:1;12349:3;12345:11;12338:4;12330:6;12326:17;12304:61;:::i;:::-;12385:16;;;;12403:1;12381:24;;11990:421;-1:-1:-1;;11990:421:1:o;12416:1726::-;-1:-1:-1;;;13166:57:1;;13246:13;;13148:3;;13268:62;13246:13;13318:2;13309:12;;13302:4;13290:17;;13268:62;:::i;:::-;13394:66;13389:2;13349:16;;;13381:11;;;13374:87;13490:34;13485:2;13477:11;;13470:55;13554:66;13549:2;13541:11;;13534:87;-1:-1:-1;;;13645:3:1;13637:12;;13630:36;13691:13;;13713:64;13691:13;13762:3;13754:12;;13747:4;13735:17;;13713:64;:::i;:::-;-1:-1:-1;;;13837:3:1;13796:17;;;;13829:12;;;13822:34;-1:-1:-1;;;13880:3:1;13872:12;;13865:62;13952:13;;13974:64;13952:13;14023:3;14015:12;;14008:4;13996:17;;13974:64;:::i;:::-;-1:-1:-1;;;14098:3:1;14057:17;;;;14090:12;;;14083:25;14132:3;14124:12;;12416:1726;-1:-1:-1;;;;;12416:1726:1:o;14147:429::-;-1:-1:-1;;;14404:3:1;14397:25;14379:3;14451:6;14445:13;14467:62;14522:6;14517:2;14512:3;14508:12;14501:4;14493:6;14489:17;14467:62;:::i;:::-;14549:16;;;;14567:2;14545:25;;14147:429;-1:-1:-1;;14147:429:1:o;14581:1402::-;-1:-1:-1;;;14929:25:1;;15021:13;;14911:3;;14973:1;;14911:3;;15079:18;;;15132;;;;15159:61;;15213:4;15205:6;15201:17;15191:27;;15159:61;15239:2;15287;15279:6;15276:14;15256:18;15253:38;15250:165;;;-1:-1:-1;;;15314:33:1;;15370:4;15367:1;15360:15;15400:4;15321:3;15388:17;15250:165;15431:18;15458:122;;;;15594:1;15589:338;;;;15424:503;;15458:122;-1:-1:-1;;15500:24:1;;15486:12;;;15479:46;15549:16;;;15545:25;;;-1:-1:-1;15458:122:1;;15589:338;27739:1;27732:14;;;27776:4;27763:18;;15684:1;15698:174;15712:6;15709:1;15706:13;15698:174;;;15799:14;;15781:11;;;15777:20;;15770:44;15842:16;;;;15727:10;;15698:174;;;15702:3;;15914:2;15905:6;15900:3;15896:16;15892:25;15885:32;;15424:503;;;;;;15943:34;15973:3;-1:-1:-1;;;4808:25:1;;4858:1;4849:11;;4743:123;15988:422;-1:-1:-1;;;16245:3:1;16238:20;16220:3;16287:6;16281:13;16303:61;16357:6;16353:1;16348:3;16344:11;16337:4;16329:6;16325:17;16303:61;:::i;:::-;16384:16;;;;16402:1;16380:24;;15988:422;-1:-1:-1;;15988:422:1:o;16415:448::-;16677:31;16672:3;16665:44;16647:3;16738:6;16732:13;16754:62;16809:6;16804:2;16799:3;16795:12;16788:4;16780:6;16776:17;16754:62;:::i;:::-;16836:16;;;;16854:2;16832:25;;16415:448;-1:-1:-1;;16415:448:1:o;16868:615::-;-1:-1:-1;;;17173:3:1;17166:20;17148:3;17215:6;17209:13;17231:61;17285:6;17281:1;17276:3;17272:11;17265:4;17257:6;17253:17;17231:61;:::i;:::-;17352:13;;17311:16;;;;17374:62;17352:13;17423:1;17415:10;;17408:4;17396:17;;17374:62;:::i;:::-;17456:17;17475:1;17452:25;;16868:615;-1:-1:-1;;;;16868:615:1:o;17696:488::-;-1:-1:-1;;;;;17965:15:1;;;17947:34;;18017:15;;18012:2;17997:18;;17990:43;18064:2;18049:18;;18042:34;;;18112:3;18107:2;18092:18;;18085:31;;;17890:4;;18133:45;;18158:19;;18150:6;18133:45;:::i;18381:219::-;18530:2;18519:9;18512:21;18493:4;18550:44;18590:2;18579:9;18575:18;18567:6;18550:44;:::i;19017:414::-;19219:2;19201:21;;;19258:2;19238:18;;;19231:30;19297:34;19292:2;19277:18;;19270:62;-1:-1:-1;;;19363:2:1;19348:18;;19341:48;19421:3;19406:19;;19017:414::o;23392:356::-;23594:2;23576:21;;;23613:18;;;23606:30;23672:34;23667:2;23652:18;;23645:62;23739:2;23724:18;;23392:356::o;23753:340::-;23955:2;23937:21;;;23994:2;23974:18;;;23967:30;-1:-1:-1;;;24028:2:1;24013:18;;24006:46;24084:2;24069:18;;23753:340::o;25948:413::-;26150:2;26132:21;;;26189:2;26169:18;;;26162:30;26228:34;26223:2;26208:18;;26201:62;-1:-1:-1;;;26294:2:1;26279:18;;26272:47;26351:3;26336:19;;25948:413::o;27792:128::-;27832:3;27863:1;27859:6;27856:1;27853:13;27850:39;;;27869:18;;:::i;:::-;-1:-1:-1;27905:9:1;;27792:128::o;27925:120::-;27965:1;27991;27981:35;;27996:18;;:::i;:::-;-1:-1:-1;28030:9:1;;27925:120::o;28050:168::-;28090:7;28156:1;28152;28148:6;28144:14;28141:1;28138:21;28133:1;28126:9;28119:17;28115:45;28112:71;;;28163:18;;:::i;:::-;-1:-1:-1;28203:9:1;;28050:168::o;28223:125::-;28263:4;28291:1;28288;28285:8;28282:34;;;28296:18;;:::i;:::-;-1:-1:-1;28333:9:1;;28223:125::o;28353:258::-;28425:1;28435:113;28449:6;28446:1;28443:13;28435:113;;;28525:11;;;28519:18;28506:11;;;28499:39;28471:2;28464:10;28435:113;;;28566:6;28563:1;28560:13;28557:48;;;-1:-1:-1;;28601:1:1;28583:16;;28576:27;28353:258::o;28616:380::-;28695:1;28691:12;;;;28738;;;28759:61;;28813:4;28805:6;28801:17;28791:27;;28759:61;28866:2;28858:6;28855:14;28835:18;28832:38;28829:161;;;28912:10;28907:3;28903:20;28900:1;28893:31;28947:4;28944:1;28937:15;28975:4;28972:1;28965:15;29001:135;29040:3;-1:-1:-1;;29061:17:1;;29058:43;;;29081:18;;:::i;:::-;-1:-1:-1;29128:1:1;29117:13;;29001:135::o;29141:112::-;29173:1;29199;29189:35;;29204:18;;:::i;:::-;-1:-1:-1;29238:9:1;;29141:112::o;29258:127::-;29319:10;29314:3;29310:20;29307:1;29300:31;29350:4;29347:1;29340:15;29374:4;29371:1;29364:15;29390:127;29451:10;29446:3;29442:20;29439:1;29432:31;29482:4;29479:1;29472:15;29506:4;29503:1;29496:15;29522:127;29583:10;29578:3;29574:20;29571:1;29564:31;29614:4;29611:1;29604:15;29638:4;29635:1;29628:15;29654:127;29715:10;29710:3;29706:20;29703:1;29696:31;29746:4;29743:1;29736:15;29770:4;29767:1;29760:15;29786:127;29847:10;29842:3;29838:20;29835:1;29828:31;29878:4;29875:1;29868:15;29902:4;29899:1;29892:15;29918:131;-1:-1:-1;;;;;;29992:32:1;;29982:43;;29972:71;;30039:1;30036;30029:12

Swarm Source

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