ETH Price: $3,386.69 (-1.44%)
Gas: 3 Gwei

Token

Citadel Of The Machines (COTM)
 

Overview

Max Total Supply

9,944 COTM

Holders

2,535

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
41 COTM
0xcc03c4ca24abab228b79fc6f98834a6e5638336a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A 3D Metaverse exploration and puzzle game powered by Hexadroid NFTs. Citadel is a physics-enabled Sandbox with an Integrated Development Environment in your browser. Add creatures, obstacles, puzzles, weird Sci-Fi machinery, a soundtrack and visual effects.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CitadelOfTheMachines

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 12 of 14: machines.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/*
                                                                            
                                                                            
  .g8"""bgd `7MMF'MMP""MM""YMM   db      `7MM"""Yb. `7MM"""YMM  `7MMF'      
.dP'     `M   MM  P'   MM   `7  ;MM:       MM    `Yb. MM    `7    MM        
dM'       `   MM       MM      ,V^MM.      MM     `Mb MM   d      MM        
MM            MM       MM     ,M  `MM      MM      MM MMmmMM      MM        
MM.           MM       MM     AbmmmqMA     MM     ,MP MM   Y  ,   MM      , 
`Mb.     ,'   MM       MM    A'     VML    MM    ,dP' MM     ,M   MM     ,M 
  `"bmmmd'  .JMML.   .JMML..AMA.   .AMMA..JMMmmmdP' .JMMmmmmMMM .JMMmmmmMMM 
                                                                            
                                                                            
                        O F  T H E   M A C H I N E S
                        
                        www.citadelofthemachines.com

*/

import "./ERC721Enumerable.sol";
import "./ERC721Burnable.sol";
import "./Ownable.sol";

contract CitadelOfTheMachines is ERC721Enumerable, Ownable {

    using Strings for uint256;

    string _baseTokenURI;

    //reserved for giveaways
    uint256 private _reserved = 35;

    uint256 private _price = 0.045 ether;
    uint256 private _generatorPrice = 0.00 ether;
    uint256 public _generatorStartCount = 10000;
    bool public _paused = true;
    bool public _generatorPaused = true;

    address addr_1 = 0xBEBFf53bB6796d21033f38a46808B47E90777345;
    address generator = 0x1E2fe8DC9e0605AE167Bdf69EEADbA459B076241;
    address addr_2 = 0x1Da6Cf54Ef6F057D86ad1898f7C531c654052C22;

    // 9999 in total
    constructor(string memory baseURI) ERC721("Citadel Of The Machines", "COTM")  {
        setBaseURI(baseURI);

        //reserved for team
        _safeMint( addr_1, 0);
        _safeMint( generator, 1);
        _safeMint( addr_2, 2);

    }

    function purchase(uint256 num) public payable {
        uint256 supply = totalSupply();
        require( !_paused,                              "Sale paused" );
        require( num < 21,                              "You can purchase a maximum of 20 NFTs" );
        require( supply + num < 10000 - _reserved,      "Exceeds maximum NFTs supply" );
        require( msg.value >= _price * num,             "Ether sent is not correct" );

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function setPrice(uint256 _newPrice) public onlyOwner() {
        _price = _newPrice;
    }

    function setGeneratorPrice(uint256 _newPrice) public onlyOwner() {
        _generatorPrice = _newPrice;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function getPrice() public view returns (uint256){
        return _price;
    }

    function getGeneratorPrice() public view returns (uint256){
        return _generatorPrice;
    }

    function giveAway(address _to, uint256 _amount) external onlyOwner() {
        require( _amount <= _reserved, "Exceeds reserved NFTs supply" );

        uint256 supply = totalSupply();
        for(uint256 i; i < _amount; i++){
            _safeMint( _to, supply + i );
        }

        _reserved -= _amount;
    }

    function _generateProcess() private  {
        require( _generatorStartCount + 1 < 15000,         "Exceeds maximum NFTs that can be created" );
        require( msg.value >= _generatorPrice,             "Ether sent is not correct" );
        _safeMint( msg.sender, _generatorStartCount + 1 );
        _generatorStartCount = _generatorStartCount+1;
    }

    function sendGenerator(uint256 nft1, uint256 nft2) public {
        require( !_generatorPaused,                  "Generator is offline" );
        require(_exists(nft1),                    "sendGenerator: NFT 1 does not exist.");
        require(_exists(nft2),                    "sendGenerator: NFT 2 does not exist.");
        require(ownerOf(nft1) == _msgSender(),    "sendGenerator: NFT 1 caller is not token owner.");
        require(ownerOf(nft2) == _msgSender(),    "sendGenerator: NFT 2 caller is not token owner.");
        require( nft1 <=  10000,             "NFT 1 is not a genesis NFT" );
        require( nft2 <=  10000,             "NFT 2 is not a genesis NFT" );

        require(nft1 != nft2, "Both NFTs can't be the same ");
        _burn(nft1);
        _burn(nft2);
        _generateProcess();
    }

    function _beforeTokenTransfer(address _from, address _to, uint256 _tokenId) internal virtual override(ERC721Enumerable) {
        super._beforeTokenTransfer(_from, _to, _tokenId);
    }

    function pause(bool val) public onlyOwner {
        _paused = val;
    }

    function generatorPause(bool val) public onlyOwner {
        _generatorPaused = val;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 _all = address(this).balance;
        require(payable(addr_1).send(_all));
    }
}

File 1 of 14: Address.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    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);
            }
        }
    }
}

File 2 of 14: Context.sol
pragma solidity ^0.8.0;

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

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

File 3 of 14: ERC165.sol
pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 14: ERC721.sol
pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

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

File 5 of 14: ERC721Burnable.sol
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Context.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 6 of 14: ERC721Enumerable.sol
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 14: IERC165.sol
pragma solidity ^0.8.0;

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

File 8 of 14: IERC721.sol
pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 14: IERC721Enumerable.sol
pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 10 of 14: IERC721Metadata.sol
pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 11 of 14: IERC721Receiver.sol
pragma solidity ^0.8.0;

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

File 13 of 14: Ownable.sol
pragma solidity ^0.8.0;

import "./Context.sol";

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

File 14 of 14: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_generatorPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_generatorStartCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"generatorPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGeneratorPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","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"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","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":"uint256","name":"nft1","type":"uint256"},{"internalType":"uint256","name":"nft2","type":"uint256"}],"name":"sendGenerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setGeneratorPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526023600c55669fdf42f6e48000600d556000600e55612710600f5560108054610100600160ff199092169190911761ff0019161762010000600160b01b03191675bebff53bb6796d21033f38a46808b47e90777345000017905560118054731e2fe8dc9e0605ae167bdf69eeadba459b0762416001600160a01b03199182161790915560128054731da6cf54ef6f057d86ad1898f7c531c654052c229216919091179055348015620000b557600080fd5b506040516200368138038062003681833981016040819052620000d8916200093e565b604080518082018252601781527f4369746164656c204f6620546865204d616368696e6573000000000000000000602080830191825283518085019094526004845263434f544d60e01b908401528151919291620001399160009162000867565b5080516200014f90600190602084019062000867565b5050506200016c62000166620001cf60201b60201c565b620001d3565b620001778162000225565b60105462000196906201000090046001600160a01b031660006200028d565b601154620001af906001600160a01b031660016200028d565b601254620001c8906001600160a01b031660026200028d565b5062000c50565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200022f620001cf565b6001600160a01b031662000242620002af565b6001600160a01b031614620002745760405162461bcd60e51b81526004016200026b9062000b4a565b60405180910390fd5b80516200028990600b90602084019062000867565b5050565b62000289828260405180602001604052806000815250620002be60201b60201c565b600a546001600160a01b031690565b620002ca8383620002fd565b620002d96000848484620003e8565b620002f85760405162461bcd60e51b81526004016200026b9062000a42565b505050565b6001600160a01b038216620003265760405162461bcd60e51b81526004016200026b9062000b15565b620003318162000521565b15620003515760405162461bcd60e51b81526004016200026b9062000a94565b6200035f600083836200053e565b6001600160a01b03821660009081526003602052604081208054600192906200038a90849062000b7f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000409846001600160a01b03166200055660201b6200119e1760201c565b1562000515576001600160a01b03841663150b7a0262000428620001cf565b8786866040518563ffffffff1660e01b81526004016200044c9493929190620009ec565b602060405180830381600087803b1580156200046757600080fd5b505af19250505080156200049a575060408051601f3d908101601f1916820190925262000497918101906200090d565b60015b620004fa573d808015620004cb576040519150601f19603f3d011682016040523d82523d6000602084013e620004d0565b606091505b508051620004f25760405162461bcd60e51b81526004016200026b9062000a42565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000519565b5060015b949350505050565b6000908152600260205260409020546001600160a01b0316151590565b620002f88383836200055c60201b620011a41760201c565b3b151590565b62000574838383620002f860201b620008821760201c565b6001600160a01b03831662000594576200058e8162000600565b620005ba565b816001600160a01b0316836001600160a01b031614620005ba57620005ba838262000644565b6001600160a01b038216620005da57620005d481620006f1565b620002f8565b826001600160a01b0316826001600160a01b031614620002f857620002f88282620007cf565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016200065e846200082060201b62000ae51760201c565b6200066a919062000b9a565b600083815260076020526040902054909150808214620006be576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620007059060019062000b9a565b600083815260096020526040812054600880549394509092849081106200073c57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106200076c57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480620007b357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000620007e7836200082060201b62000ae51760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b0382166200084b5760405162461bcd60e51b81526004016200026b9062000acb565b506001600160a01b031660009081526003602052604090205490565b828054620008759062000be7565b90600052602060002090601f016020900481019282620008995760008555620008e4565b82601f10620008b457805160ff1916838001178555620008e4565b82800160010185558215620008e4579182015b82811115620008e4578251825591602001919060010190620008c7565b50620008f2929150620008f6565b5090565b5b80821115620008f25760008155600101620008f7565b6000602082840312156200091f578081fd5b81516001600160e01b03198116811462000937578182fd5b9392505050565b60006020828403121562000950578081fd5b81516001600160401b038082111562000967578283fd5b818401915084601f8301126200097b578283fd5b81518181111562000990576200099062000c3a565b604051601f8201601f191681016020018381118282101715620009b757620009b762000c3a565b604052818152838201602001871015620009cf578485fd5b620009e282602083016020870162000bb4565b9695505050505050565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000a2b8160a085016020870162000bb4565b601f01601f19169190910160a00195945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111562000b955762000b9562000c24565b500190565b60008282101562000baf5762000baf62000c24565b500390565b60005b8381101562000bd157818101518382015260200162000bb7565b8381111562000be1576000848401525b50505050565b60028104600182168062000bfc57607f821691505b6020821081141562000c1e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b612a218062000c606000396000f3fe6080604052600436106101f75760003560e01c806370a082311161010d578063a22cb465116100a0578063ca8001441161006f578063ca80014414610562578063dae11b7c14610582578063e985e9c5146105a2578063efef39a1146105c2578063f2fde38b146105d5576101f7565b8063a22cb465146104ed578063b808f99c1461050d578063b88d4fde14610522578063c87b56dd14610542576101f7565b80638da5cb5b116100dc5780638da5cb5b1461048e57806391b7f5ed146104a357806395d89b41146104c357806398d5fdca146104d8576101f7565b806370a082311461043c578063715018a61461045c578063766536af14610471578063853828b614610486576101f7565b806318160ddd116101905780634380053d1161015f5780634380053d1461039a578063438b6300146103af5780634f6ccce7146103dc57806355f804b3146103fc5780636352211e1461041c576101f7565b806318160ddd1461031857806323b872dd1461033a5780632f745c591461035a57806342842e0e1461037a576101f7565b806306fdde03116101cc57806306fdde0314610294578063081812fc146102b6578063095ea7b3146102e357806316c61ccc14610303576101f7565b80626d2a76146101fc5780628578121461021e57806301ffc9a71461023e57806302329a2914610274575b600080fd5b34801561020857600080fd5b5061021c610217366004611efe565b6105f5565b005b34801561022a57600080fd5b5061021c610239366004611e66565b610642565b34801561024a57600080fd5b5061025e610259366004611e80565b61069b565b60405161026b9190612027565b60405180910390f35b34801561028057600080fd5b5061021c61028f366004611e66565b6106c8565b3480156102a057600080fd5b506102a961071a565b60405161026b9190612032565b3480156102c257600080fd5b506102d66102d1366004611efe565b6107ac565b60405161026b9190611f92565b3480156102ef57600080fd5b5061021c6102fe366004611e3d565b6107ef565b34801561030f57600080fd5b5061025e610887565b34801561032457600080fd5b5061032d610890565b60405161026b9190612892565b34801561034657600080fd5b5061021c610355366004611d60565b610896565b34801561036657600080fd5b5061032d610375366004611e3d565b6108ce565b34801561038657600080fd5b5061021c610395366004611d60565b610920565b3480156103a657600080fd5b5061032d61093b565b3480156103bb57600080fd5b506103cf6103ca366004611d14565b610941565b60405161026b9190611fe3565b3480156103e857600080fd5b5061032d6103f7366004611efe565b6109ff565b34801561040857600080fd5b5061021c610417366004611eb8565b610a5a565b34801561042857600080fd5b506102d6610437366004611efe565b610ab0565b34801561044857600080fd5b5061032d610457366004611d14565b610ae5565b34801561046857600080fd5b5061021c610b29565b34801561047d57600080fd5b5061032d610b74565b61021c610b7a565b34801561049a57600080fd5b506102d6610bf4565b3480156104af57600080fd5b5061021c6104be366004611efe565b610c03565b3480156104cf57600080fd5b506102a9610c47565b3480156104e457600080fd5b5061032d610c56565b3480156104f957600080fd5b5061021c610508366004611e14565b610c5c565b34801561051957600080fd5b5061025e610d2a565b34801561052e57600080fd5b5061021c61053d366004611d9b565b610d38565b34801561054e57600080fd5b506102a961055d366004611efe565b610d77565b34801561056e57600080fd5b5061021c61057d366004611e3d565b610dfa565b34801561058e57600080fd5b5061021c61059d366004611f16565b610eb4565b3480156105ae57600080fd5b5061025e6105bd366004611d2e565b611024565b61021c6105d0366004611efe565b611052565b3480156105e157600080fd5b5061021c6105f0366004611d14565b611130565b6105fd61122d565b6001600160a01b031661060e610bf4565b6001600160a01b03161461063d5760405162461bcd60e51b8152600401610634906124c0565b60405180910390fd5b600e55565b61064a61122d565b6001600160a01b031661065b610bf4565b6001600160a01b0316146106815760405162461bcd60e51b8152600401610634906124c0565b601080549115156101000261ff0019909216919091179055565b60006001600160e01b0319821663780e9d6360e01b14806106c057506106c082611231565b90505b919050565b6106d061122d565b6001600160a01b03166106e1610bf4565b6001600160a01b0316146107075760405162461bcd60e51b8152600401610634906124c0565b6010805460ff1916911515919091179055565b60606000805461072990612929565b80601f016020809104026020016040519081016040528092919081815260200182805461075590612929565b80156107a25780601f10610777576101008083540402835291602001916107a2565b820191906000526020600020905b81548152906001019060200180831161078557829003601f168201915b5050505050905090565b60006107b782611271565b6107d35760405162461bcd60e51b81526004016106349061243d565b506000908152600460205260409020546001600160a01b031690565b60006107fa82610ab0565b9050806001600160a01b0316836001600160a01b0316141561082e5760405162461bcd60e51b8152600401610634906125c4565b806001600160a01b031661084061122d565b6001600160a01b0316148061085c575061085c816105bd61122d565b6108785760405162461bcd60e51b815260040161063490612318565b610882838361128e565b505050565b60105460ff1681565b60085490565b6108a76108a161122d565b826112fc565b6108c35760405162461bcd60e51b815260040161063490612684565b610882838383611381565b60006108d983610ae5565b82106108f75760405162461bcd60e51b8152600401610634906120af565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61088283838360405180602001604052806000815250610d38565b600e5490565b6060600061094e83610ae5565b905060008167ffffffffffffffff81111561097957634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109a2578160200160208202803683370190505b50905060005b828110156109f7576109ba85826108ce565b8282815181106109da57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806109ef81612964565b9150506109a8565b509392505050565b6000610a09610890565b8210610a275760405162461bcd60e51b81526004016106349061273a565b60088281548110610a4857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610a6261122d565b6001600160a01b0316610a73610bf4565b6001600160a01b031614610a995760405162461bcd60e51b8152600401610634906124c0565b8051610aac90600b906020840190611be4565b5050565b6000818152600260205260408120546001600160a01b0316806106c05760405162461bcd60e51b8152600401610634906123bf565b60006001600160a01b038216610b0d5760405162461bcd60e51b815260040161063490612375565b506001600160a01b031660009081526003602052604090205490565b610b3161122d565b6001600160a01b0316610b42610bf4565b6001600160a01b031614610b685760405162461bcd60e51b8152600401610634906124c0565b610b7260006114ae565b565b600f5481565b610b8261122d565b6001600160a01b0316610b93610bf4565b6001600160a01b031614610bb95760405162461bcd60e51b8152600401610634906124c0565b60105460405147916201000090046001600160a01b0316906108fc8315029083906000818181858888f19350505050610bf157600080fd5b50565b600a546001600160a01b031690565b610c0b61122d565b6001600160a01b0316610c1c610bf4565b6001600160a01b031614610c425760405162461bcd60e51b8152600401610634906124c0565b600d55565b60606001805461072990612929565b600d5490565b610c6461122d565b6001600160a01b0316826001600160a01b03161415610c955760405162461bcd60e51b815260040161063490612251565b8060056000610ca261122d565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ce661122d565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d1e9190612027565b60405180910390a35050565b601054610100900460ff1681565b610d49610d4361122d565b836112fc565b610d655760405162461bcd60e51b815260040161063490612684565b610d7184848484611500565b50505050565b6060610d8282611271565b610d9e5760405162461bcd60e51b815260040161063490612575565b6000610da8611533565b90506000815111610dc85760405180602001604052806000815250610df3565b80610dd284611542565b604051602001610de3929190611f63565b6040516020818303038152906040525b9392505050565b610e0261122d565b6001600160a01b0316610e13610bf4565b6001600160a01b031614610e395760405162461bcd60e51b8152600401610634906124c0565b600c54811115610e5b5760405162461bcd60e51b815260040161063490612489565b6000610e65610890565b905060005b82811015610e9757610e8584610e80838561289b565b61165d565b80610e8f81612964565b915050610e6a565b5081600c6000828254610eaa91906128e6565b9091555050505050565b601054610100900460ff1615610edc5760405162461bcd60e51b8152600401610634906126d5565b610ee582611271565b610f015760405162461bcd60e51b815260040161063490612288565b610f0a81611271565b610f265760405162461bcd60e51b815260040161063490612192565b610f2e61122d565b6001600160a01b0316610f4083610ab0565b6001600160a01b031614610f665760405162461bcd60e51b815260040161063490612786565b610f6e61122d565b6001600160a01b0316610f8082610ab0565b6001600160a01b031614610fa65760405162461bcd60e51b815260040161063490612843565b612710821115610fc85760405162461bcd60e51b815260040161063490612703565b612710811115610fea5760405162461bcd60e51b81526004016106349061280c565b8082141561100a5760405162461bcd60e51b8152600401610634906124f5565b61101382611677565b61101c81611677565b610aac61171e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600061105c610890565b60105490915060ff16156110825760405162461bcd60e51b81526004016106349061208a565b601582106110a25760405162461bcd60e51b815260040161063490612045565b600c546110b1906127106128e6565b6110bb838361289b565b106110d85760405162461bcd60e51b8152600401610634906127d5565b81600d546110e691906128c7565b3410156111055760405162461bcd60e51b815260040161063490612605565b60005b828110156108825761111e33610e80838561289b565b8061112881612964565b915050611108565b61113861122d565b6001600160a01b0316611149610bf4565b6001600160a01b03161461116f5760405162461bcd60e51b8152600401610634906124c0565b6001600160a01b0381166111955760405162461bcd60e51b81526004016106349061214c565b610bf1816114ae565b3b151590565b6111af838383610882565b6001600160a01b0383166111cb576111c681611795565b6111ee565b816001600160a01b0316836001600160a01b0316146111ee576111ee83826117d9565b6001600160a01b03821661120a5761120581611876565b610882565b826001600160a01b0316826001600160a01b03161461088257610882828261194f565b3390565b60006001600160e01b031982166380ac58cd60e01b148061126257506001600160e01b03198216635b5e139f60e01b145b806106c057506106c082611993565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112c382610ab0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061130782611271565b6113235760405162461bcd60e51b8152600401610634906122cc565b600061132e83610ab0565b9050806001600160a01b0316846001600160a01b031614806113695750836001600160a01b031661135e846107ac565b6001600160a01b0316145b8061137957506113798185611024565b949350505050565b826001600160a01b031661139482610ab0565b6001600160a01b0316146113ba5760405162461bcd60e51b81526004016106349061252c565b6001600160a01b0382166113e05760405162461bcd60e51b81526004016106349061220d565b6113eb8383836119ac565b6113f660008261128e565b6001600160a01b038316600090815260036020526040812080546001929061141f9084906128e6565b90915550506001600160a01b038216600090815260036020526040812080546001929061144d90849061289b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61150b848484611381565b611517848484846119b7565b610d715760405162461bcd60e51b8152600401610634906120fa565b6060600b805461072990612929565b60608161156757506040805180820190915260018152600360fc1b60208201526106c3565b8160005b8115611591578061157b81612964565b915061158a9050600a836128b3565b915061156b565b60008167ffffffffffffffff8111156115ba57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115e4576020820181803683370190505b5090505b8415611379576115f96001836128e6565b9150611606600a8661297f565b61161190603061289b565b60f81b81838151811061163457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611656600a866128b3565b94506115e8565b610aac828260405180602001604052806000815250611ad2565b600061168282610ab0565b9050611690816000846119ac565b61169b60008361128e565b6001600160a01b03811660009081526003602052604081208054600192906116c49084906128e6565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b613a98600f546001611730919061289b565b1061174d5760405162461bcd60e51b81526004016106349061263c565b600e5434101561176f5760405162461bcd60e51b815260040161063490612605565b61178233600f546001610e80919061289b565b600f5461179090600161289b565b600f55565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016117e684610ae5565b6117f091906128e6565b600083815260076020526040902054909150808214611843576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611888906001906128e6565b600083815260096020526040812054600880549394509092849081106118be57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106118ed57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061193357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061195a83610ae5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981166301ffc9a760e01b14919050565b6108828383836111a4565b60006119cb846001600160a01b031661119e565b15611ac757836001600160a01b031663150b7a026119e761122d565b8786866040518563ffffffff1660e01b8152600401611a099493929190611fa6565b602060405180830381600087803b158015611a2357600080fd5b505af1925050508015611a53575060408051601f3d908101601f19168201909252611a5091810190611e9c565b60015b611aad573d808015611a81576040519150601f19603f3d011682016040523d82523d6000602084013e611a86565b606091505b508051611aa55760405162461bcd60e51b8152600401610634906120fa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611379565b506001949350505050565b611adc8383611b05565b611ae960008484846119b7565b6108825760405162461bcd60e51b8152600401610634906120fa565b6001600160a01b038216611b2b5760405162461bcd60e51b815260040161063490612408565b611b3481611271565b15611b515760405162461bcd60e51b8152600401610634906121d6565b611b5d600083836119ac565b6001600160a01b0382166000908152600360205260408120805460019290611b8690849061289b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bf090612929565b90600052602060002090601f016020900481019282611c125760008555611c58565b82601f10611c2b57805160ff1916838001178555611c58565b82800160010185558215611c58579182015b82811115611c58578251825591602001919060010190611c3d565b50611c64929150611c68565b5090565b5b80821115611c645760008155600101611c69565b600067ffffffffffffffff80841115611c9857611c986129bf565b604051601f8501601f191681016020018281118282101715611cbc57611cbc6129bf565b604052848152915081838501861015611cd457600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106c357600080fd5b803580151581146106c357600080fd5b600060208284031215611d25578081fd5b610df382611ced565b60008060408385031215611d40578081fd5b611d4983611ced565b9150611d5760208401611ced565b90509250929050565b600080600060608486031215611d74578081fd5b611d7d84611ced565b9250611d8b60208501611ced565b9150604084013590509250925092565b60008060008060808587031215611db0578081fd5b611db985611ced565b9350611dc760208601611ced565b925060408501359150606085013567ffffffffffffffff811115611de9578182fd5b8501601f81018713611df9578182fd5b611e0887823560208401611c7d565b91505092959194509250565b60008060408385031215611e26578182fd5b611e2f83611ced565b9150611d5760208401611d04565b60008060408385031215611e4f578182fd5b611e5883611ced565b946020939093013593505050565b600060208284031215611e77578081fd5b610df382611d04565b600060208284031215611e91578081fd5b8135610df3816129d5565b600060208284031215611ead578081fd5b8151610df3816129d5565b600060208284031215611ec9578081fd5b813567ffffffffffffffff811115611edf578182fd5b8201601f81018413611eef578182fd5b61137984823560208401611c7d565b600060208284031215611f0f578081fd5b5035919050565b60008060408385031215611f28578182fd5b50508035926020909101359150565b60008151808452611f4f8160208601602086016128fd565b601f01601f19169290920160200192915050565b60008351611f758184602088016128fd565b835190830190611f898183602088016128fd565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fd990830184611f37565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561201b57835183529284019291840191600101611fff565b50909695505050505050565b901515815260200190565b600060208252610df36020830184611f37565b60208082526025908201527f596f752063616e2070757263686173652061206d6178696d756d206f66203230604082015264204e46547360d81b606082015260800190565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526024908201527f73656e6447656e657261746f723a204e4654203220646f6573206e6f7420657860408201526334b9ba1760e11b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526024908201527f73656e6447656e657261746f723a204e4654203120646f6573206e6f7420657860408201526334b9ba1760e11b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601c908201527f45786365656473207265736572766564204e46547320737570706c7900000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f426f7468204e4654732063616e2774206265207468652073616d652000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526019908201527f45746865722073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b60208082526028908201527f45786365656473206d6178696d756d204e46547320746861742063616e2062656040820152670818dc99585d195960c21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526014908201527347656e657261746f72206973206f66666c696e6560601b604082015260600190565b6020808252601a908201527f4e46542031206973206e6f7420612067656e65736973204e4654000000000000604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252602f908201527f73656e6447656e657261746f723a204e465420312063616c6c6572206973206e60408201526e37ba103a37b5b2b71037bbb732b91760891b606082015260800190565b6020808252601b908201527f45786365656473206d6178696d756d204e46547320737570706c790000000000604082015260600190565b6020808252601a908201527f4e46542032206973206e6f7420612067656e65736973204e4654000000000000604082015260600190565b6020808252602f908201527f73656e6447656e657261746f723a204e465420322063616c6c6572206973206e60408201526e37ba103a37b5b2b71037bbb732b91760891b606082015260800190565b90815260200190565b600082198211156128ae576128ae612993565b500190565b6000826128c2576128c26129a9565b500490565b60008160001904831182151516156128e1576128e1612993565b500290565b6000828210156128f8576128f8612993565b500390565b60005b83811015612918578181015183820152602001612900565b83811115610d715750506000910152565b60028104600182168061293d57607f821691505b6020821081141561295e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561297857612978612993565b5060010190565b60008261298e5761298e6129a9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bf157600080fdfea2646970667358221220ef6265af35cf5cb809a60409e04231cfd7122010116131b72ccef259b46fa80464736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f7777772e6369746164656c6f667468656d616368696e65732e636f6d2f746f6b656e2f000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f75760003560e01c806370a082311161010d578063a22cb465116100a0578063ca8001441161006f578063ca80014414610562578063dae11b7c14610582578063e985e9c5146105a2578063efef39a1146105c2578063f2fde38b146105d5576101f7565b8063a22cb465146104ed578063b808f99c1461050d578063b88d4fde14610522578063c87b56dd14610542576101f7565b80638da5cb5b116100dc5780638da5cb5b1461048e57806391b7f5ed146104a357806395d89b41146104c357806398d5fdca146104d8576101f7565b806370a082311461043c578063715018a61461045c578063766536af14610471578063853828b614610486576101f7565b806318160ddd116101905780634380053d1161015f5780634380053d1461039a578063438b6300146103af5780634f6ccce7146103dc57806355f804b3146103fc5780636352211e1461041c576101f7565b806318160ddd1461031857806323b872dd1461033a5780632f745c591461035a57806342842e0e1461037a576101f7565b806306fdde03116101cc57806306fdde0314610294578063081812fc146102b6578063095ea7b3146102e357806316c61ccc14610303576101f7565b80626d2a76146101fc5780628578121461021e57806301ffc9a71461023e57806302329a2914610274575b600080fd5b34801561020857600080fd5b5061021c610217366004611efe565b6105f5565b005b34801561022a57600080fd5b5061021c610239366004611e66565b610642565b34801561024a57600080fd5b5061025e610259366004611e80565b61069b565b60405161026b9190612027565b60405180910390f35b34801561028057600080fd5b5061021c61028f366004611e66565b6106c8565b3480156102a057600080fd5b506102a961071a565b60405161026b9190612032565b3480156102c257600080fd5b506102d66102d1366004611efe565b6107ac565b60405161026b9190611f92565b3480156102ef57600080fd5b5061021c6102fe366004611e3d565b6107ef565b34801561030f57600080fd5b5061025e610887565b34801561032457600080fd5b5061032d610890565b60405161026b9190612892565b34801561034657600080fd5b5061021c610355366004611d60565b610896565b34801561036657600080fd5b5061032d610375366004611e3d565b6108ce565b34801561038657600080fd5b5061021c610395366004611d60565b610920565b3480156103a657600080fd5b5061032d61093b565b3480156103bb57600080fd5b506103cf6103ca366004611d14565b610941565b60405161026b9190611fe3565b3480156103e857600080fd5b5061032d6103f7366004611efe565b6109ff565b34801561040857600080fd5b5061021c610417366004611eb8565b610a5a565b34801561042857600080fd5b506102d6610437366004611efe565b610ab0565b34801561044857600080fd5b5061032d610457366004611d14565b610ae5565b34801561046857600080fd5b5061021c610b29565b34801561047d57600080fd5b5061032d610b74565b61021c610b7a565b34801561049a57600080fd5b506102d6610bf4565b3480156104af57600080fd5b5061021c6104be366004611efe565b610c03565b3480156104cf57600080fd5b506102a9610c47565b3480156104e457600080fd5b5061032d610c56565b3480156104f957600080fd5b5061021c610508366004611e14565b610c5c565b34801561051957600080fd5b5061025e610d2a565b34801561052e57600080fd5b5061021c61053d366004611d9b565b610d38565b34801561054e57600080fd5b506102a961055d366004611efe565b610d77565b34801561056e57600080fd5b5061021c61057d366004611e3d565b610dfa565b34801561058e57600080fd5b5061021c61059d366004611f16565b610eb4565b3480156105ae57600080fd5b5061025e6105bd366004611d2e565b611024565b61021c6105d0366004611efe565b611052565b3480156105e157600080fd5b5061021c6105f0366004611d14565b611130565b6105fd61122d565b6001600160a01b031661060e610bf4565b6001600160a01b03161461063d5760405162461bcd60e51b8152600401610634906124c0565b60405180910390fd5b600e55565b61064a61122d565b6001600160a01b031661065b610bf4565b6001600160a01b0316146106815760405162461bcd60e51b8152600401610634906124c0565b601080549115156101000261ff0019909216919091179055565b60006001600160e01b0319821663780e9d6360e01b14806106c057506106c082611231565b90505b919050565b6106d061122d565b6001600160a01b03166106e1610bf4565b6001600160a01b0316146107075760405162461bcd60e51b8152600401610634906124c0565b6010805460ff1916911515919091179055565b60606000805461072990612929565b80601f016020809104026020016040519081016040528092919081815260200182805461075590612929565b80156107a25780601f10610777576101008083540402835291602001916107a2565b820191906000526020600020905b81548152906001019060200180831161078557829003601f168201915b5050505050905090565b60006107b782611271565b6107d35760405162461bcd60e51b81526004016106349061243d565b506000908152600460205260409020546001600160a01b031690565b60006107fa82610ab0565b9050806001600160a01b0316836001600160a01b0316141561082e5760405162461bcd60e51b8152600401610634906125c4565b806001600160a01b031661084061122d565b6001600160a01b0316148061085c575061085c816105bd61122d565b6108785760405162461bcd60e51b815260040161063490612318565b610882838361128e565b505050565b60105460ff1681565b60085490565b6108a76108a161122d565b826112fc565b6108c35760405162461bcd60e51b815260040161063490612684565b610882838383611381565b60006108d983610ae5565b82106108f75760405162461bcd60e51b8152600401610634906120af565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61088283838360405180602001604052806000815250610d38565b600e5490565b6060600061094e83610ae5565b905060008167ffffffffffffffff81111561097957634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109a2578160200160208202803683370190505b50905060005b828110156109f7576109ba85826108ce565b8282815181106109da57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806109ef81612964565b9150506109a8565b509392505050565b6000610a09610890565b8210610a275760405162461bcd60e51b81526004016106349061273a565b60088281548110610a4857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610a6261122d565b6001600160a01b0316610a73610bf4565b6001600160a01b031614610a995760405162461bcd60e51b8152600401610634906124c0565b8051610aac90600b906020840190611be4565b5050565b6000818152600260205260408120546001600160a01b0316806106c05760405162461bcd60e51b8152600401610634906123bf565b60006001600160a01b038216610b0d5760405162461bcd60e51b815260040161063490612375565b506001600160a01b031660009081526003602052604090205490565b610b3161122d565b6001600160a01b0316610b42610bf4565b6001600160a01b031614610b685760405162461bcd60e51b8152600401610634906124c0565b610b7260006114ae565b565b600f5481565b610b8261122d565b6001600160a01b0316610b93610bf4565b6001600160a01b031614610bb95760405162461bcd60e51b8152600401610634906124c0565b60105460405147916201000090046001600160a01b0316906108fc8315029083906000818181858888f19350505050610bf157600080fd5b50565b600a546001600160a01b031690565b610c0b61122d565b6001600160a01b0316610c1c610bf4565b6001600160a01b031614610c425760405162461bcd60e51b8152600401610634906124c0565b600d55565b60606001805461072990612929565b600d5490565b610c6461122d565b6001600160a01b0316826001600160a01b03161415610c955760405162461bcd60e51b815260040161063490612251565b8060056000610ca261122d565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ce661122d565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d1e9190612027565b60405180910390a35050565b601054610100900460ff1681565b610d49610d4361122d565b836112fc565b610d655760405162461bcd60e51b815260040161063490612684565b610d7184848484611500565b50505050565b6060610d8282611271565b610d9e5760405162461bcd60e51b815260040161063490612575565b6000610da8611533565b90506000815111610dc85760405180602001604052806000815250610df3565b80610dd284611542565b604051602001610de3929190611f63565b6040516020818303038152906040525b9392505050565b610e0261122d565b6001600160a01b0316610e13610bf4565b6001600160a01b031614610e395760405162461bcd60e51b8152600401610634906124c0565b600c54811115610e5b5760405162461bcd60e51b815260040161063490612489565b6000610e65610890565b905060005b82811015610e9757610e8584610e80838561289b565b61165d565b80610e8f81612964565b915050610e6a565b5081600c6000828254610eaa91906128e6565b9091555050505050565b601054610100900460ff1615610edc5760405162461bcd60e51b8152600401610634906126d5565b610ee582611271565b610f015760405162461bcd60e51b815260040161063490612288565b610f0a81611271565b610f265760405162461bcd60e51b815260040161063490612192565b610f2e61122d565b6001600160a01b0316610f4083610ab0565b6001600160a01b031614610f665760405162461bcd60e51b815260040161063490612786565b610f6e61122d565b6001600160a01b0316610f8082610ab0565b6001600160a01b031614610fa65760405162461bcd60e51b815260040161063490612843565b612710821115610fc85760405162461bcd60e51b815260040161063490612703565b612710811115610fea5760405162461bcd60e51b81526004016106349061280c565b8082141561100a5760405162461bcd60e51b8152600401610634906124f5565b61101382611677565b61101c81611677565b610aac61171e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600061105c610890565b60105490915060ff16156110825760405162461bcd60e51b81526004016106349061208a565b601582106110a25760405162461bcd60e51b815260040161063490612045565b600c546110b1906127106128e6565b6110bb838361289b565b106110d85760405162461bcd60e51b8152600401610634906127d5565b81600d546110e691906128c7565b3410156111055760405162461bcd60e51b815260040161063490612605565b60005b828110156108825761111e33610e80838561289b565b8061112881612964565b915050611108565b61113861122d565b6001600160a01b0316611149610bf4565b6001600160a01b03161461116f5760405162461bcd60e51b8152600401610634906124c0565b6001600160a01b0381166111955760405162461bcd60e51b81526004016106349061214c565b610bf1816114ae565b3b151590565b6111af838383610882565b6001600160a01b0383166111cb576111c681611795565b6111ee565b816001600160a01b0316836001600160a01b0316146111ee576111ee83826117d9565b6001600160a01b03821661120a5761120581611876565b610882565b826001600160a01b0316826001600160a01b03161461088257610882828261194f565b3390565b60006001600160e01b031982166380ac58cd60e01b148061126257506001600160e01b03198216635b5e139f60e01b145b806106c057506106c082611993565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112c382610ab0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061130782611271565b6113235760405162461bcd60e51b8152600401610634906122cc565b600061132e83610ab0565b9050806001600160a01b0316846001600160a01b031614806113695750836001600160a01b031661135e846107ac565b6001600160a01b0316145b8061137957506113798185611024565b949350505050565b826001600160a01b031661139482610ab0565b6001600160a01b0316146113ba5760405162461bcd60e51b81526004016106349061252c565b6001600160a01b0382166113e05760405162461bcd60e51b81526004016106349061220d565b6113eb8383836119ac565b6113f660008261128e565b6001600160a01b038316600090815260036020526040812080546001929061141f9084906128e6565b90915550506001600160a01b038216600090815260036020526040812080546001929061144d90849061289b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61150b848484611381565b611517848484846119b7565b610d715760405162461bcd60e51b8152600401610634906120fa565b6060600b805461072990612929565b60608161156757506040805180820190915260018152600360fc1b60208201526106c3565b8160005b8115611591578061157b81612964565b915061158a9050600a836128b3565b915061156b565b60008167ffffffffffffffff8111156115ba57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115e4576020820181803683370190505b5090505b8415611379576115f96001836128e6565b9150611606600a8661297f565b61161190603061289b565b60f81b81838151811061163457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611656600a866128b3565b94506115e8565b610aac828260405180602001604052806000815250611ad2565b600061168282610ab0565b9050611690816000846119ac565b61169b60008361128e565b6001600160a01b03811660009081526003602052604081208054600192906116c49084906128e6565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b613a98600f546001611730919061289b565b1061174d5760405162461bcd60e51b81526004016106349061263c565b600e5434101561176f5760405162461bcd60e51b815260040161063490612605565b61178233600f546001610e80919061289b565b600f5461179090600161289b565b600f55565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016117e684610ae5565b6117f091906128e6565b600083815260076020526040902054909150808214611843576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611888906001906128e6565b600083815260096020526040812054600880549394509092849081106118be57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106118ed57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061193357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061195a83610ae5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981166301ffc9a760e01b14919050565b6108828383836111a4565b60006119cb846001600160a01b031661119e565b15611ac757836001600160a01b031663150b7a026119e761122d565b8786866040518563ffffffff1660e01b8152600401611a099493929190611fa6565b602060405180830381600087803b158015611a2357600080fd5b505af1925050508015611a53575060408051601f3d908101601f19168201909252611a5091810190611e9c565b60015b611aad573d808015611a81576040519150601f19603f3d011682016040523d82523d6000602084013e611a86565b606091505b508051611aa55760405162461bcd60e51b8152600401610634906120fa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611379565b506001949350505050565b611adc8383611b05565b611ae960008484846119b7565b6108825760405162461bcd60e51b8152600401610634906120fa565b6001600160a01b038216611b2b5760405162461bcd60e51b815260040161063490612408565b611b3481611271565b15611b515760405162461bcd60e51b8152600401610634906121d6565b611b5d600083836119ac565b6001600160a01b0382166000908152600360205260408120805460019290611b8690849061289b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bf090612929565b90600052602060002090601f016020900481019282611c125760008555611c58565b82601f10611c2b57805160ff1916838001178555611c58565b82800160010185558215611c58579182015b82811115611c58578251825591602001919060010190611c3d565b50611c64929150611c68565b5090565b5b80821115611c645760008155600101611c69565b600067ffffffffffffffff80841115611c9857611c986129bf565b604051601f8501601f191681016020018281118282101715611cbc57611cbc6129bf565b604052848152915081838501861015611cd457600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106c357600080fd5b803580151581146106c357600080fd5b600060208284031215611d25578081fd5b610df382611ced565b60008060408385031215611d40578081fd5b611d4983611ced565b9150611d5760208401611ced565b90509250929050565b600080600060608486031215611d74578081fd5b611d7d84611ced565b9250611d8b60208501611ced565b9150604084013590509250925092565b60008060008060808587031215611db0578081fd5b611db985611ced565b9350611dc760208601611ced565b925060408501359150606085013567ffffffffffffffff811115611de9578182fd5b8501601f81018713611df9578182fd5b611e0887823560208401611c7d565b91505092959194509250565b60008060408385031215611e26578182fd5b611e2f83611ced565b9150611d5760208401611d04565b60008060408385031215611e4f578182fd5b611e5883611ced565b946020939093013593505050565b600060208284031215611e77578081fd5b610df382611d04565b600060208284031215611e91578081fd5b8135610df3816129d5565b600060208284031215611ead578081fd5b8151610df3816129d5565b600060208284031215611ec9578081fd5b813567ffffffffffffffff811115611edf578182fd5b8201601f81018413611eef578182fd5b61137984823560208401611c7d565b600060208284031215611f0f578081fd5b5035919050565b60008060408385031215611f28578182fd5b50508035926020909101359150565b60008151808452611f4f8160208601602086016128fd565b601f01601f19169290920160200192915050565b60008351611f758184602088016128fd565b835190830190611f898183602088016128fd565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fd990830184611f37565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561201b57835183529284019291840191600101611fff565b50909695505050505050565b901515815260200190565b600060208252610df36020830184611f37565b60208082526025908201527f596f752063616e2070757263686173652061206d6178696d756d206f66203230604082015264204e46547360d81b606082015260800190565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526024908201527f73656e6447656e657261746f723a204e4654203220646f6573206e6f7420657860408201526334b9ba1760e11b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526024908201527f73656e6447656e657261746f723a204e4654203120646f6573206e6f7420657860408201526334b9ba1760e11b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601c908201527f45786365656473207265736572766564204e46547320737570706c7900000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f426f7468204e4654732063616e2774206265207468652073616d652000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526019908201527f45746865722073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b60208082526028908201527f45786365656473206d6178696d756d204e46547320746861742063616e2062656040820152670818dc99585d195960c21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526014908201527347656e657261746f72206973206f66666c696e6560601b604082015260600190565b6020808252601a908201527f4e46542031206973206e6f7420612067656e65736973204e4654000000000000604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252602f908201527f73656e6447656e657261746f723a204e465420312063616c6c6572206973206e60408201526e37ba103a37b5b2b71037bbb732b91760891b606082015260800190565b6020808252601b908201527f45786365656473206d6178696d756d204e46547320737570706c790000000000604082015260600190565b6020808252601a908201527f4e46542032206973206e6f7420612067656e65736973204e4654000000000000604082015260600190565b6020808252602f908201527f73656e6447656e657261746f723a204e465420322063616c6c6572206973206e60408201526e37ba103a37b5b2b71037bbb732b91760891b606082015260800190565b90815260200190565b600082198211156128ae576128ae612993565b500190565b6000826128c2576128c26129a9565b500490565b60008160001904831182151516156128e1576128e1612993565b500290565b6000828210156128f8576128f8612993565b500390565b60005b83811015612918578181015183820152602001612900565b83811115610d715750506000910152565b60028104600182168061293d57607f821691505b6020821081141561295e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561297857612978612993565b5060010190565b60008261298e5761298e6129a9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bf157600080fdfea2646970667358221220ef6265af35cf5cb809a60409e04231cfd7122010116131b72ccef259b46fa80464736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f7777772e6369746164656c6f667468656d616368696e65732e636f6d2f746f6b656e2f000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://www.citadelofthemachines.com/token/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [2] : 68747470733a2f2f7777772e6369746164656c6f667468656d616368696e6573
Arg [3] : 2e636f6d2f746f6b656e2f000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

1132:4398:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2986:109;;;;;;;;;;-1:-1:-1;2986:109:13;;;;;:::i;:::-;;:::i;:::-;;5286:90;;;;;;;;;;-1:-1:-1;5286:90:13;;;;;:::i;:::-;;:::i;876:222:5:-;;;;;;;;;;-1:-1:-1;876:222:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5208:72:13;;;;;;;;;;-1:-1:-1;5208:72:13;;;;;:::i;:::-;;:::i;2316:98:3:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3827:217::-;;;;;;;;;;-1:-1:-1;3827:217:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3365:401::-;;;;;;;;;;-1:-1:-1;3365:401:3;;;;;:::i;:::-;;:::i;1464:26:13:-;;;;;;;;;;;;;:::i;1501:111:5:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4691:330:3:-;;;;;;;;;;-1:-1:-1;4691:330:3;;;;;:::i;:::-;;:::i;1177:253:5:-;;;;;;;;;;-1:-1:-1;1177:253:5;;;;;:::i;:::-;;:::i;5087:179:3:-;;;;;;;;;;-1:-1:-1;5087:179:3;;;;;:::i;:::-;;:::i;3410:97:13:-;;;;;;;;;;;;;:::i;2549:334::-;;;;;;;;;;-1:-1:-1;2549:334:13;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1684:230:5:-;;;;;;;;;;-1:-1:-1;1684:230:5;;;;;:::i;:::-;;:::i;3219:100:13:-;;;;;;;;;;-1:-1:-1;3219:100:13;;;;;:::i;:::-;;:::i;2019:235:3:-;;;;;;;;;;-1:-1:-1;2019:235:3;;;;;:::i;:::-;;:::i;1757:205::-;;;;;;;;;;-1:-1:-1;1757:205:3;;;;;:::i;:::-;;:::i;1565:92:11:-;;;;;;;;;;;;;:::i;1415:43:13:-;;;;;;;;;;;;;:::i;5382:146::-;;;:::i;933:85:11:-;;;;;;;;;;;;;:::i;2889:91:13:-;;;;;;;;;;-1:-1:-1;2889:91:13;;;;;:::i;:::-;;:::i;2478:102:3:-;;;;;;;;;;;;;:::i;3325:79:13:-;;;;;;;;;;;;;:::i;4111:290:3:-;;;;;;;;;;-1:-1:-1;4111:290:3;;;;;:::i;:::-;;:::i;1496:35:13:-;;;;;;;;;;;;;:::i;5332:320:3:-;;;;;;;;;;-1:-1:-1;5332:320:3;;;;;:::i;:::-;;:::i;2646:329::-;;;;;;;;;;-1:-1:-1;2646:329:3;;;;;:::i;:::-;;:::i;3513:315:13:-;;;;;;;;;;-1:-1:-1;3513:315:13;;;;;:::i;:::-;;:::i;4193:818::-;;;;;;;;;;-1:-1:-1;4193:818:13;;;;;:::i;:::-;;:::i;4467:162:3:-;;;;;;;;;;-1:-1:-1;4467:162:3;;;;;:::i;:::-;;:::i;2004:539:13:-;;;;;;:::i;:::-;;:::i;1806:189:11:-;;;;;;;;;;-1:-1:-1;1806:189:11;;;;;:::i;:::-;;:::i;2986:109:13:-;1156:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;;;;;;;;;3061:15:13::1;:27:::0;2986:109::o;5286:90::-;1156:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;5347:16:13::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;5347:22:13;;::::1;::::0;;;::::1;::::0;;5286:90::o;876:222:5:-;978:4;-1:-1:-1;;;;;;1001:50:5;;-1:-1:-1;;;1001:50:5;;:90;;;1055:36;1079:11;1055:23;:36::i;:::-;994:97;;876:222;;;;:::o;5208:72:13:-;1156:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;5260:7:13::1;:13:::0;;-1:-1:-1;;5260:13:13::1;::::0;::::1;;::::0;;;::::1;::::0;;5208:72::o;2316:98:3:-;2370:13;2402:5;2395:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2316:98;:::o;3827:217::-;3903:7;3930:16;3938:7;3930;:16::i;:::-;3922:73;;;;-1:-1:-1;;;3922:73:3;;;;;;;:::i;:::-;-1:-1:-1;4013:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4013:24:3;;3827:217::o;3365:401::-;3445:13;3461:23;3476:7;3461:14;:23::i;:::-;3445:39;;3508:5;-1:-1:-1;;;;;3502:11:3;:2;-1:-1:-1;;;;;3502:11:3;;;3494:57;;;;-1:-1:-1;;;3494:57:3;;;;;;;:::i;:::-;3599:5;-1:-1:-1;;;;;3583:21:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3583:21:3;;:62;;;;3608:37;3625:5;3632:12;:10;:12::i;3608:37::-;3562:165;;;;-1:-1:-1;;;3562:165:3;;;;;;;:::i;:::-;3738:21;3747:2;3751:7;3738:8;:21::i;:::-;3365:401;;;:::o;1464:26:13:-;;;;;;:::o;1501:111:5:-;1588:10;:17;1501:111;:::o;4691:330:3:-;4880:41;4899:12;:10;:12::i;:::-;4913:7;4880:18;:41::i;:::-;4872:103;;;;-1:-1:-1;;;4872:103:3;;;;;;;:::i;:::-;4986:28;4996:4;5002:2;5006:7;4986:9;:28::i;1177:253:5:-;1274:7;1309:23;1326:5;1309:16;:23::i;:::-;1301:5;:31;1293:87;;;;-1:-1:-1;;;1293:87:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1397:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1177:253::o;5087:179:3:-;5220:39;5237:4;5243:2;5247:7;5220:39;;;;;;;;;;;;:16;:39::i;3410:97:13:-;3485:15;;3410:97;:::o;2549:334::-;2608:16;2636:18;2657:17;2667:6;2657:9;:17::i;:::-;2636:38;;2685:25;2727:10;2713:25;;;;;;-1:-1:-1;;;2713:25:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2713:25:13;;2685:53;;2752:9;2748:104;2767:10;2763:1;:14;2748:104;;;2811:30;2831:6;2839:1;2811:19;:30::i;:::-;2797:8;2806:1;2797:11;;;;;;-1:-1:-1;;;2797:11:13;;;;;;;;;;;;;;;;;;:44;2779:3;;;;:::i;:::-;;;;2748:104;;;-1:-1:-1;2868:8:13;2549:334;-1:-1:-1;;;2549:334:13:o;1684:230:5:-;1759:7;1794:30;:28;:30::i;:::-;1786:5;:38;1778:95;;;;-1:-1:-1;;;1778:95:5;;;;;;;:::i;:::-;1890:10;1901:5;1890:17;;;;;;-1:-1:-1;;;1890:17:5;;;;;;;;;;;;;;;;;1883:24;;1684:230;;;:::o;3219:100:13:-;1156:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;3289:23:13;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;3219:100:::0;:::o;2019:235:3:-;2091:7;2126:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2126:16:3;2160:19;2152:73;;;;-1:-1:-1;;;2152:73:3;;;;;;;:::i;1757:205::-;1829:7;-1:-1:-1;;;;;1856:19:3;;1848:74;;;;-1:-1:-1;;;1848:74:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1939:16:3;;;;;:9;:16;;;;;;;1757:205::o;1565:92:11:-;1156:12;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;1629:21:::1;1647:1;1629:9;:21::i;:::-;1565:92::o:0;1415:43:13:-;;;;:::o;5382:146::-;1156:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;5502:6:13::1;::::0;5494:26:::1;::::0;5455:21:::1;::::0;5502:6;;::::1;-1:-1:-1::0;;;;;5502:6:13::1;::::0;5494:26:::1;::::0;::::1;;::::0;5455:21;;5440:12:::1;5494:26:::0;5440:12;5494:26;5455:21;5502:6;5494:26;::::1;;;;;;5486:35;;;::::0;::::1;;1215:1:11;5382:146:13:o:0;933:85:11:-;1005:6;;-1:-1:-1;;;;;1005:6:11;933:85;:::o;2889:91:13:-;1156:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;2955:6:13::1;:18:::0;2889:91::o;2478:102:3:-;2534:13;2566:7;2559:14;;;;;:::i;3325:79:13:-;3391:6;;3325:79;:::o;4111:290:3:-;4225:12;:10;:12::i;:::-;-1:-1:-1;;;;;4213:24:3;:8;-1:-1:-1;;;;;4213:24:3;;;4205:62;;;;-1:-1:-1;;;4205:62:3;;;;;;;:::i;:::-;4323:8;4278:18;:32;4297:12;:10;:12::i;:::-;-1:-1:-1;;;;;4278:32:3;;;;;;;;;;;;;;;;;-1:-1:-1;4278:32:3;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4278:53:3;;;;;;;;;;;4361:12;:10;:12::i;:::-;-1:-1:-1;;;;;4346:48:3;;4385:8;4346:48;;;;;;:::i;:::-;;;;;;;;4111:290;;:::o;1496:35:13:-;;;;;;;;;:::o;5332:320:3:-;5501:41;5520:12;:10;:12::i;:::-;5534:7;5501:18;:41::i;:::-;5493:103;;;;-1:-1:-1;;;5493:103:3;;;;;;;:::i;:::-;5606:39;5620:4;5626:2;5630:7;5639:5;5606:13;:39::i;:::-;5332:320;;;;:::o;2646:329::-;2719:13;2752:16;2760:7;2752;:16::i;:::-;2744:76;;;;-1:-1:-1;;;2744:76:3;;;;;;;:::i;:::-;2831:21;2855:10;:8;:10::i;:::-;2831:34;;2906:1;2888:7;2882:21;:25;:86;;;;;;;;;;;;;;;;;2934:7;2943:18;:7;:16;:18::i;:::-;2917:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2882:86;2875:93;2646:329;-1:-1:-1;;;2646:329:3:o;3513:315:13:-;1156:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;3612:9:13::1;;3601:7;:20;;3592:63;;;;-1:-1:-1::0;;;3592:63:13::1;;;;;;;:::i;:::-;3666:14;3683:13;:11;:13::i;:::-;3666:30;;3710:9;3706:85;3725:7;3721:1;:11;3706:85;;;3752:28;3763:3:::0;3768:10:::1;3777:1:::0;3768:6;:10:::1;:::i;:::-;3752:9;:28::i;:::-;3734:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3706:85;;;;3814:7;3801:9;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;3513:315:13:o;4193:818::-;4271:16;;;;;;;4270:17;4261:69;;;;-1:-1:-1;;;4261:69:13;;;;;;;:::i;:::-;4348:13;4356:4;4348:7;:13::i;:::-;4340:81;;;;-1:-1:-1;;;4340:81:13;;;;;;;:::i;:::-;4439:13;4447:4;4439:7;:13::i;:::-;4431:81;;;;-1:-1:-1;;;4431:81:13;;;;;;;:::i;:::-;4547:12;:10;:12::i;:::-;-1:-1:-1;;;;;4530:29:13;:13;4538:4;4530:7;:13::i;:::-;-1:-1:-1;;;;;4530:29:13;;4522:92;;;;-1:-1:-1;;;4522:92:13;;;;;;;:::i;:::-;4649:12;:10;:12::i;:::-;-1:-1:-1;;;;;4632:29:13;:13;4640:4;4632:7;:13::i;:::-;-1:-1:-1;;;;;4632:29:13;;4624:92;;;;-1:-1:-1;;;4624:92:13;;;;;;;:::i;:::-;4744:5;4735:4;:14;;4726:67;;;;-1:-1:-1;;;4726:67:13;;;;;;;:::i;:::-;4821:5;4812:4;:14;;4803:67;;;;-1:-1:-1;;;4803:67:13;;;;;;;:::i;:::-;4897:4;4889;:12;;4881:53;;;;-1:-1:-1;;;4881:53:13;;;;;;;:::i;:::-;4944:11;4950:4;4944:5;:11::i;:::-;4965;4971:4;4965:5;:11::i;:::-;4986:18;:16;:18::i;4467:162:3:-;-1:-1:-1;;;;;4587:25:3;;;4564:4;4587:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4467:162::o;2004:539:13:-;2060:14;2077:13;:11;:13::i;:::-;2110:7;;2060:30;;-1:-1:-1;2110:7:13;;2109:8;2100:63;;;;-1:-1:-1;;;2100:63:13;;;;;;;:::i;:::-;2188:2;2182:3;:8;2173:89;;;;-1:-1:-1;;;2173:89:13;;;;;;;:::i;:::-;2304:9;;2296:17;;:5;:17;:::i;:::-;2281:12;2290:3;2281:6;:12;:::i;:::-;:32;2272:79;;;;-1:-1:-1;;;2272:79:13;;;;;;;:::i;:::-;2392:3;2383:6;;:12;;;;:::i;:::-;2370:9;:25;;2361:77;;;;-1:-1:-1;;;2361:77:13;;;;;;;:::i;:::-;2453:9;2449:88;2468:3;2464:1;:7;2449:88;;;2491:35;2502:10;2514;2523:1;2514:6;:10;:::i;2491:35::-;2473:3;;;;:::i;:::-;;;;2449:88;;1806:189:11;1156:12;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1894:22:11;::::1;1886:73;;;;-1:-1:-1::0;;;1886:73:11::1;;;;;;;:::i;:::-;1969:19;1979:8;1969:9;:19::i;685:377:0:-:0;1001:20;1047:8;;;685:377::o;2510:572:5:-;2649:45;2676:4;2682:2;2686:7;2649:26;:45::i;:::-;-1:-1:-1;;;;;2709:18:5;;2705:183;;2743:40;2775:7;2743:31;:40::i;:::-;2705:183;;;2812:2;-1:-1:-1;;;;;2804:10:5;:4;-1:-1:-1;;;;;2804:10:5;;2800:88;;2830:47;2863:4;2869:7;2830:32;:47::i;:::-;-1:-1:-1;;;;;2901:16:5;;2897:179;;2933:45;2970:7;2933:36;:45::i;:::-;2897:179;;;3005:4;-1:-1:-1;;;;;2999:10:5;:2;-1:-1:-1;;;;;2999:10:5;;2995:81;;3025:40;3053:2;3057:7;3025:27;:40::i;553:96:1:-;632:10;553:96;:::o;1398:300:3:-;1500:4;-1:-1:-1;;;;;;1535:40:3;;-1:-1:-1;;;1535:40:3;;:104;;-1:-1:-1;;;;;;;1591:48:3;;-1:-1:-1;;;1591:48:3;1535:104;:156;;;;1655:36;1679:11;1655:23;:36::i;7124:125::-;7189:4;7212:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7212:16:3;:30;;;7124:125::o;10975:171::-;11049:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11049:29:3;-1:-1:-1;;;;;11049:29:3;;;;;;;;:24;;11102:23;11049:24;11102:14;:23::i;:::-;-1:-1:-1;;;;;11093:46:3;;;;;;;;;;;10975:171;;:::o;7407:344::-;7500:4;7524:16;7532:7;7524;:16::i;:::-;7516:73;;;;-1:-1:-1;;;7516:73:3;;;;;;;:::i;:::-;7599:13;7615:23;7630:7;7615:14;:23::i;:::-;7599:39;;7667:5;-1:-1:-1;;;;;7656:16:3;:7;-1:-1:-1;;;;;7656:16:3;;:51;;;;7700:7;-1:-1:-1;;;;;7676:31:3;:20;7688:7;7676:11;:20::i;:::-;-1:-1:-1;;;;;7676:31:3;;7656:51;:87;;;;7711:32;7728:5;7735:7;7711:16;:32::i;:::-;7648:96;7407:344;-1:-1:-1;;;;7407:344:3:o;10304:560::-;10458:4;-1:-1:-1;;;;;10431:31:3;:23;10446:7;10431:14;:23::i;:::-;-1:-1:-1;;;;;10431:31:3;;10423:85;;;;-1:-1:-1;;;10423:85:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;10526:16:3;;10518:65;;;;-1:-1:-1;;;10518:65:3;;;;;;;:::i;:::-;10594:39;10615:4;10621:2;10625:7;10594:20;:39::i;:::-;10695:29;10712:1;10716:7;10695:8;:29::i;:::-;-1:-1:-1;;;;;10735:15:3;;;;;;:9;:15;;;;;:20;;10754:1;;10735:15;:20;;10754:1;;10735:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10765:13:3;;;;;;:9;:13;;;;;:18;;10782:1;;10765:13;:18;;10782:1;;10765:18;:::i;:::-;;;;-1:-1:-1;;10793:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10793:21:3;-1:-1:-1;;;;;10793:21:3;;;;;;;;;10830:27;;10793:16;;10830:27;;;;;;;10304:560;;;:::o;2001:169:11:-;2075:6;;;-1:-1:-1;;;;;2091:17:11;;;-1:-1:-1;;;;;;2091:17:11;;;;;;;2123:40;;2075:6;;;2091:17;2075:6;;2123:40;;2056:16;;2123:40;2001:169;;:::o;6514:307:3:-;6665:28;6675:4;6681:2;6685:7;6665:9;:28::i;:::-;6711:48;6734:4;6740:2;6744:7;6753:5;6711:22;:48::i;:::-;6703:111;;;;-1:-1:-1;;;6703:111:3;;;;;;;:::i;3101:112:13:-;3161:13;3193;3186:20;;;;;:::i;275:703:12:-;331:13;548:10;544:51;;-1:-1:-1;574:10:12;;;;;;;;;;;;-1:-1:-1;;;574:10:12;;;;;;544:51;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:12;;-1:-1:-1;720:2:12;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;-1:-1:-1;;;764:17:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:12;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:12;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;-1:-1:-1;;;849:14:12;;;;;;;;;;;;:56;-1:-1:-1;;;;;849:56:12;;;;;;;;-1:-1:-1;919:11:12;928:2;919:11;;:::i;:::-;;;791:150;;8081:108:3;8156:26;8166:2;8170:7;8156:26;;;;;;;;;;;;:9;:26::i;9632:348::-;9691:13;9707:23;9722:7;9707:14;:23::i;:::-;9691:39;;9741:48;9762:5;9777:1;9781:7;9741:20;:48::i;:::-;9827:29;9844:1;9848:7;9827:8;:29::i;:::-;-1:-1:-1;;;;;9867:16:3;;;;;;:9;:16;;;;;:21;;9887:1;;9867:16;:21;;9887:1;;9867:21;:::i;:::-;;;;-1:-1:-1;;9905:16:3;;;;:7;:16;;;;;;9898:23;;-1:-1:-1;;;;;;9898:23:3;;;9937:36;9913:7;;9905:16;-1:-1:-1;;;;;9937:36:3;;;;;9905:16;;9937:36;9632:348;;:::o;3834:353:13:-;3917:5;3890:20;;3913:1;3890:24;;;;:::i;:::-;:32;3881:95;;;;-1:-1:-1;;;3881:95:13;;;;;;;:::i;:::-;4008:15;;3995:9;:28;;3986:80;;;;-1:-1:-1;;;3986:80:13;;;;;;;:::i;:::-;4076:49;4087:10;4099:20;;4122:1;4099:24;;;;:::i;4076:49::-;4158:20;;:22;;4179:1;4158:22;:::i;:::-;4135:20;:45;3834:353::o;3788:161:5:-;3891:10;:17;;3864:24;;;;:15;:24;;;;;:44;;;3918:24;;;;;;;;;;;;3788:161::o;4566:970::-;4828:22;4878:1;4853:22;4870:4;4853:16;:22::i;:::-;:26;;;;:::i;:::-;4889:18;4910:26;;;:17;:26;;;;;;4828:51;;-1:-1:-1;5040:28:5;;;5036:323;;-1:-1:-1;;;;;5106:18:5;;5084:19;5106:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5155:30;;;;;;:44;;;5271:30;;:17;:30;;;;;:43;;;5036:323;-1:-1:-1;5452:26:5;;;;:17;:26;;;;;;;;5445:33;;;-1:-1:-1;;;;;5495:18:5;;;;;:12;:18;;;;;:34;;;;;;;5488:41;4566:970::o;5824:1061::-;6098:10;:17;6073:22;;6098:21;;6118:1;;6098:21;:::i;:::-;6129:18;6150:24;;;:15;:24;;;;;;6518:10;:26;;6073:46;;-1:-1:-1;6150:24:5;;6073:46;;6518:26;;;;-1:-1:-1;;;6518:26:5;;;;;;;;;;;;;;;;;6496:48;;6580:11;6555:10;6566;6555:22;;;;;;-1:-1:-1;;;6555:22:5;;;;;;;;;;;;;;;;;;;;:36;;;;6659:28;;;:15;:28;;;;;;;:41;;;6828:24;;;;;6821:31;6862:10;:16;;;;;-1:-1:-1;;;6862:16:5;;;;;;;;;;;;;;;;;;;;;;;;;;5824:1061;;;;:::o;3376:217::-;3460:14;3477:20;3494:2;3477:16;:20::i;:::-;-1:-1:-1;;;;;3507:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3551:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3376:217:5:o;730:155:2:-;-1:-1:-1;;;;;;838:40:2;;-1:-1:-1;;;838:40:2;730:155;;;:::o;5017:185:13:-;5147:48;5174:5;5181:3;5186:8;5147:26;:48::i;11699:782:3:-;11849:4;11869:15;:2;-1:-1:-1;;;;;11869:13:3;;:15::i;:::-;11865:610;;;11920:2;-1:-1:-1;;;;;11904:36:3;;11941:12;:10;:12::i;:::-;11955:4;11961:7;11970:5;11904:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11904:72:3;;;;;;;;-1:-1:-1;;11904:72:3;;;;;;;;;;;;:::i;:::-;;;11900:523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12147:13:3;;12143:266;;12189:60;;-1:-1:-1;;;12189:60:3;;;;;;;:::i;12143:266::-;12361:6;12355:13;12346:6;12342:2;12338:15;12331:38;11900:523;-1:-1:-1;;;;;;12026:55:3;-1:-1:-1;;;12026:55:3;;-1:-1:-1;12019:62:3;;11865:610;-1:-1:-1;12460:4:3;11699:782;;;;;;:::o;8410:311::-;8535:18;8541:2;8545:7;8535:5;:18::i;:::-;8584:54;8615:1;8619:2;8623:7;8632:5;8584:22;:54::i;:::-;8563:151;;;;-1:-1:-1;;;8563:151:3;;;;;;;:::i;9043:372::-;-1:-1:-1;;;;;9122:16:3;;9114:61;;;;-1:-1:-1;;;9114:61:3;;;;;;;:::i;:::-;9194:16;9202:7;9194;:16::i;:::-;9193:17;9185:58;;;;-1:-1:-1;;;9185:58:3;;;;;;;:::i;:::-;9254:45;9283:1;9287:2;9291:7;9254:20;:45::i;:::-;-1:-1:-1;;;;;9310:13:3;;;;;;:9;:13;;;;;:18;;9327:1;;9310:13;:18;;9327:1;;9310:18;:::i;:::-;;;;-1:-1:-1;;9338:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9338:21:3;-1:-1:-1;;;;;9338:21:3;;;;;;;;9375:33;;9338:16;;;9375:33;;9338:16;;9375:33;9043:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:14;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:14;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:14;473:16;;;470:25;-1:-1:-1;467:2:14;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:14;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:14;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:14:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:14;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:14;;4335:120;-1:-1:-1;4335:120:14:o;4460:258::-;;;4589:2;4577:9;4568:7;4564:23;4560:32;4557:2;;;4610:6;4602;4595:22;4557:2;-1:-1:-1;;4638:23:14;;;4708:2;4693:18;;;4680:32;;-1:-1:-1;4547:171:14:o;4723:259::-;;4804:5;4798:12;4831:6;4826:3;4819:19;4847:63;4903:6;4896:4;4891:3;4887:14;4880:4;4873:5;4869:16;4847:63;:::i;:::-;4964:2;4943:15;-1:-1:-1;;4939:29:14;4930:39;;;;4971:4;4926:50;;4774:208;-1:-1:-1;;4774:208:14:o;4987:470::-;;5204:6;5198:13;5220:53;5266:6;5261:3;5254:4;5246:6;5242:17;5220:53;:::i;:::-;5336:13;;5295:16;;;;5358:57;5336:13;5295:16;5392:4;5380:17;;5358:57;:::i;:::-;5431:20;;5174:283;-1:-1:-1;;;;5174:283:14:o;5462:203::-;-1:-1:-1;;;;;5626:32:14;;;;5608:51;;5596:2;5581:18;;5563:102::o;5670:490::-;-1:-1:-1;;;;;5939:15:14;;;5921:34;;5991:15;;5986:2;5971:18;;5964:43;6038:2;6023:18;;6016:34;;;6086:3;6081:2;6066:18;;6059:31;;;5670:490;;6107:47;;6134:19;;6126:6;6107:47;:::i;:::-;6099:55;5873:287;-1:-1:-1;;;;;;5873:287:14:o;6165:635::-;6336:2;6388:21;;;6458:13;;6361:18;;;6480:22;;;6165:635;;6336:2;6559:15;;;;6533:2;6518:18;;;6165:635;6605:169;6619:6;6616:1;6613:13;6605:169;;;6680:13;;6668:26;;6749:15;;;;6714:12;;;;6641:1;6634:9;6605:169;;;-1:-1:-1;6791:3:14;;6316:484;-1:-1:-1;;;;;;6316:484:14:o;6805:187::-;6970:14;;6963:22;6945:41;;6933:2;6918:18;;6900:92::o;6997:221::-;;7146:2;7135:9;7128:21;7166:46;7208:2;7197:9;7193:18;7185:6;7166:46;:::i;7223:401::-;7425:2;7407:21;;;7464:2;7444:18;;;7437:30;7503:34;7498:2;7483:18;;7476:62;-1:-1:-1;;;7569:2:14;7554:18;;7547:35;7614:3;7599:19;;7397:227::o;7629:335::-;7831:2;7813:21;;;7870:2;7850:18;;;7843:30;-1:-1:-1;;;7904:2:14;7889:18;;7882:41;7955:2;7940:18;;7803:161::o;7969:407::-;8171:2;8153:21;;;8210:2;8190:18;;;8183:30;8249:34;8244:2;8229:18;;8222:62;-1:-1:-1;;;8315:2:14;8300:18;;8293:41;8366:3;8351:19;;8143:233::o;8381:414::-;8583:2;8565:21;;;8622:2;8602:18;;;8595:30;8661:34;8656:2;8641:18;;8634:62;-1:-1:-1;;;8727:2:14;8712:18;;8705:48;8785:3;8770:19;;8555:240::o;8800:402::-;9002:2;8984:21;;;9041:2;9021:18;;;9014:30;9080:34;9075:2;9060:18;;9053:62;-1:-1:-1;;;9146:2:14;9131:18;;9124:36;9192:3;9177:19;;8974:228::o;9207:400::-;9409:2;9391:21;;;9448:2;9428:18;;;9421:30;9487:34;9482:2;9467:18;;9460:62;-1:-1:-1;;;9553:2:14;9538:18;;9531:34;9597:3;9582:19;;9381:226::o;9612:352::-;9814:2;9796:21;;;9853:2;9833:18;;;9826:30;9892;9887:2;9872:18;;9865:58;9955:2;9940:18;;9786:178::o;9969:400::-;10171:2;10153:21;;;10210:2;10190:18;;;10183:30;10249:34;10244:2;10229:18;;10222:62;-1:-1:-1;;;10315:2:14;10300:18;;10293:34;10359:3;10344:19;;10143:226::o;10374:349::-;10576:2;10558:21;;;10615:2;10595:18;;;10588:30;10654:27;10649:2;10634:18;;10627:55;10714:2;10699:18;;10548:175::o;10728:400::-;10930:2;10912:21;;;10969:2;10949:18;;;10942:30;11008:34;11003:2;10988:18;;10981:62;-1:-1:-1;;;11074:2:14;11059:18;;11052:34;11118:3;11103:19;;10902:226::o;11133:408::-;11335:2;11317:21;;;11374:2;11354:18;;;11347:30;11413:34;11408:2;11393:18;;11386:62;-1:-1:-1;;;11479:2:14;11464:18;;11457:42;11531:3;11516:19;;11307:234::o;11546:420::-;11748:2;11730:21;;;11787:2;11767:18;;;11760:30;11826:34;11821:2;11806:18;;11799:62;11897:26;11892:2;11877:18;;11870:54;11956:3;11941:19;;11720:246::o;11971:406::-;12173:2;12155:21;;;12212:2;12192:18;;;12185:30;12251:34;12246:2;12231:18;;12224:62;-1:-1:-1;;;12317:2:14;12302:18;;12295:40;12367:3;12352:19;;12145:232::o;12382:405::-;12584:2;12566:21;;;12623:2;12603:18;;;12596:30;12662:34;12657:2;12642:18;;12635:62;-1:-1:-1;;;12728:2:14;12713:18;;12706:39;12777:3;12762:19;;12556:231::o;12792:356::-;12994:2;12976:21;;;13013:18;;;13006:30;13072:34;13067:2;13052:18;;13045:62;13139:2;13124:18;;12966:182::o;13153:408::-;13355:2;13337:21;;;13394:2;13374:18;;;13367:30;13433:34;13428:2;13413:18;;13406:62;-1:-1:-1;;;13499:2:14;13484:18;;13477:42;13551:3;13536:19;;13327:234::o;13566:352::-;13768:2;13750:21;;;13807:2;13787:18;;;13780:30;13846;13841:2;13826:18;;13819:58;13909:2;13894:18;;13740:178::o;13923:356::-;14125:2;14107:21;;;14144:18;;;14137:30;14203:34;14198:2;14183:18;;14176:62;14270:2;14255:18;;14097:182::o;14284:352::-;14486:2;14468:21;;;14525:2;14505:18;;;14498:30;14564;14559:2;14544:18;;14537:58;14627:2;14612:18;;14458:178::o;14641:405::-;14843:2;14825:21;;;14882:2;14862:18;;;14855:30;14921:34;14916:2;14901:18;;14894:62;-1:-1:-1;;;14987:2:14;14972:18;;14965:39;15036:3;15021:19;;14815:231::o;15051:411::-;15253:2;15235:21;;;15292:2;15272:18;;;15265:30;15331:34;15326:2;15311:18;;15304:62;-1:-1:-1;;;15397:2:14;15382:18;;15375:45;15452:3;15437:19;;15225:237::o;15467:397::-;15669:2;15651:21;;;15708:2;15688:18;;;15681:30;15747:34;15742:2;15727:18;;15720:62;-1:-1:-1;;;15813:2:14;15798:18;;15791:31;15854:3;15839:19;;15641:223::o;15869:349::-;16071:2;16053:21;;;16110:2;16090:18;;;16083:30;16149:27;16144:2;16129:18;;16122:55;16209:2;16194:18;;16043:175::o;16223:404::-;16425:2;16407:21;;;16464:2;16444:18;;;16437:30;16503:34;16498:2;16483:18;;16476:62;-1:-1:-1;;;16569:2:14;16554:18;;16547:38;16617:3;16602:19;;16397:230::o;16632:413::-;16834:2;16816:21;;;16873:2;16853:18;;;16846:30;16912:34;16907:2;16892:18;;16885:62;-1:-1:-1;;;16978:2:14;16963:18;;16956:47;17035:3;17020:19;;16806:239::o;17050:344::-;17252:2;17234:21;;;17291:2;17271:18;;;17264:30;-1:-1:-1;;;17325:2:14;17310:18;;17303:50;17385:2;17370:18;;17224:170::o;17399:350::-;17601:2;17583:21;;;17640:2;17620:18;;;17613:30;17679:28;17674:2;17659:18;;17652:56;17740:2;17725:18;;17573:176::o;17754:408::-;17956:2;17938:21;;;17995:2;17975:18;;;17968:30;18034:34;18029:2;18014:18;;18007:62;-1:-1:-1;;;18100:2:14;18085:18;;18078:42;18152:3;18137:19;;17928:234::o;18167:411::-;18369:2;18351:21;;;18408:2;18388:18;;;18381:30;18447:34;18442:2;18427:18;;18420:62;-1:-1:-1;;;18513:2:14;18498:18;;18491:45;18568:3;18553:19;;18341:237::o;18583:351::-;18785:2;18767:21;;;18824:2;18804:18;;;18797:30;18863:29;18858:2;18843:18;;18836:57;18925:2;18910:18;;18757:177::o;18939:350::-;19141:2;19123:21;;;19180:2;19160:18;;;19153:30;19219:28;19214:2;19199:18;;19192:56;19280:2;19265:18;;19113:176::o;19294:411::-;19496:2;19478:21;;;19535:2;19515:18;;;19508:30;19574:34;19569:2;19554:18;;19547:62;-1:-1:-1;;;19640:2:14;19625:18;;19618:45;19695:3;19680:19;;19468:237::o;19710:177::-;19856:25;;;19844:2;19829:18;;19811:76::o;19892:128::-;;19963:1;19959:6;19956:1;19953:13;19950:2;;;19969:18;;:::i;:::-;-1:-1:-1;20005:9:14;;19940:80::o;20025:120::-;;20091:1;20081:2;;20096:18;;:::i;:::-;-1:-1:-1;20130:9:14;;20071:74::o;20150:168::-;;20256:1;20252;20248:6;20244:14;20241:1;20238:21;20233:1;20226:9;20219:17;20215:45;20212:2;;;20263:18;;:::i;:::-;-1:-1:-1;20303:9:14;;20202:116::o;20323:125::-;;20391:1;20388;20385:8;20382:2;;;20396:18;;:::i;:::-;-1:-1:-1;20433:9:14;;20372:76::o;20453:258::-;20525:1;20535:113;20549:6;20546:1;20543:13;20535:113;;;20625:11;;;20619:18;20606:11;;;20599:39;20571:2;20564:10;20535:113;;;20666:6;20663:1;20660:13;20657:2;;;-1:-1:-1;;20701:1:14;20683:16;;20676:27;20506:205::o;20716:380::-;20801:1;20791:12;;20848:1;20838:12;;;20859:2;;20913:4;20905:6;20901:17;20891:27;;20859:2;20966;20958:6;20955:14;20935:18;20932:38;20929:2;;;21012:10;21007:3;21003:20;21000:1;20993:31;21047:4;21044:1;21037:15;21075:4;21072:1;21065:15;20929:2;;20771:325;;;:::o;21101:135::-;;-1:-1:-1;;21161:17:14;;21158:2;;;21181:18;;:::i;:::-;-1:-1:-1;21228:1:14;21217:13;;21148:88::o;21241:112::-;;21299:1;21289:2;;21304:18;;:::i;:::-;-1:-1:-1;21338:9:14;;21279:74::o;21358:127::-;21419:10;21414:3;21410:20;21407:1;21400:31;21450:4;21447:1;21440:15;21474:4;21471:1;21464:15;21490:127;21551:10;21546:3;21542:20;21539:1;21532:31;21582:4;21579:1;21572:15;21606:4;21603:1;21596:15;21622:127;21683:10;21678:3;21674:20;21671:1;21664:31;21714:4;21711:1;21704:15;21738:4;21735:1;21728:15;21754:133;-1:-1:-1;;;;;;21830:32:14;;21820:43;;21810:2;;21877:1;21874;21867:12

Swarm Source

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