ETH Price: $3,139.24 (+3.36%)
Gas: 3 Gwei

Token

Land DAO Genesis (LANDDAOG)
 

Overview

Max Total Supply

1,515 LANDDAOG

Holders

409

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
jlieberman.eth
Balance
3 LANDDAOG
0xe757970b801e5b99ab24c5cd9b5152234cff3001
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LandCollection

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 15 of 19: LandCollection.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721Tradable.sol";


contract LandCollection is ERC721Tradable {
  struct Group {
    // Maximum supplies of each group (Immutable)
    uint256 maxSupply;
    // Addresses of the logic contract responsible for minting of each group (Immutable)
    address minter;
    // Stores the displayed name for each group
    string name;
    // Base URIs used for generating the token URIs based on the groupId
    string baseTokenURI;
  }

  // URI for the contract-level metadata
  string private _contractURI;

  // Stores the info for token groups
  mapping (uint256 => Group) private _groups;
  // Total minted count of each group
  mapping (uint256 => uint256) private _totalMinted;

  // Used as a part of the semi-random seeds
  uint256 private _nonce = 0;
  // Stores the last generated seed for generating the next seed
  uint256 private _lastSeed = 0;
  // Used to determine the next tokenId to be used when minting a new token
  mapping(uint256 => mapping (uint256 => uint256)) private _tokenSeeds;
  // Used for extracting group and member identifiers from tokenId
  uint256 private _idSeparator = 100000;

  // Add this modifier to all functions which are only accessible by the assigned minter
  modifier onlyMinter(uint256 _groupId) {
    require(msg.sender == _groups[_groupId].minter, "Unauthorized Access");
    _;
  }

  // Add this modifier to all functions which require valid groupId
  modifier isValidGroup(uint256 _groupId) {
    require(_groups[_groupId].maxSupply > 0, "Invalid Group Specified");
    _;
  }

  constructor (
    string memory _name,
    string memory _symbol,
    string memory _cURI,
    address _proxyRegistryAddress
  ) ERC721Tradable(_name, _symbol, _proxyRegistryAddress) {
    _contractURI = _cURI;
  }

  function baseTokenURI(uint256 _groupId)
    public view isValidGroup(_groupId)
    returns (string memory)
  {
    return _groups[_groupId].baseTokenURI;
  }

  // Should only be changed when there's an issue with the currently set IPFS gateway
  function setBaseTokenURI(uint256 _groupId, string memory _uri)
    external isValidGroup(_groupId) onlyOwner
  {
    _groups[_groupId].baseTokenURI = _uri;
  }

  function tokenURI(uint256 _tokenId) override public view returns (string memory) {
    uint256 groupId = _tokenId / _idSeparator;
    uint256 memberId = _tokenId % _idSeparator;
    require(_groups[groupId].maxSupply > 0, "Invalid TokenID Specified");
    return string(abi.encodePacked(baseTokenURI(groupId), Strings.toString(memberId)));
  }

  function contractURI() public view returns (string memory) {
    return _contractURI;
  }

  // Should only be changed when there's a critical change to the contract metadata
  function setContractURI(string memory _cURI) external onlyOwner {
    _contractURI = _cURI;
  }

  function minter(uint256 _groupId)
    external view isValidGroup(_groupId)
    returns (address)
  {
    return _groups[_groupId].minter;
  }

  function groupName(uint256 _groupId)
    external view isValidGroup(_groupId)
    returns (string memory)
  {
    return _groups[_groupId].name;
  }

  // Update the displayed group name when absolutely needed
  function setGroupName(uint256 _groupId, string memory _name)
    external isValidGroup(_groupId) onlyOwner
  {
    _groups[_groupId].name = _name;
  }

  function createGroup(
    uint256 _groupId,
    string memory _name,
    uint256 _maxSupply,
    address _minter,
    string memory _baseTokenURI
  ) external onlyOwner {
    require(_groupId >= 1000 && _groupId <= 9999, "Invalid Group ID");
    require(_groups[_groupId].maxSupply == 0, "Group Has Been Added");
    require(_minter != address(0), "Invalid Address");
    require(_maxSupply > 0, "Invalid Max Supply");
    _groups[_groupId] = Group(_maxSupply, _minter, _name, _baseTokenURI);
  }

  function maximumSupply(uint256 _groupId)
    external view isValidGroup(_groupId)
    returns (uint256)
  {
    return _groups[_groupId].maxSupply;
  }

  function totalMinted(uint256 _groupId)
    external view isValidGroup(_groupId)
    returns (uint256)
  {
    return _totalMinted[_groupId];
  }
  
  // Generate and keep track of a new seed
  function _generateTokenId(uint256 _groupId, uint256 _seed) private returns (uint256) {
    uint256 loopCount = ((_seed + _nonce) % 3) + 1;
    uint256 lastTokenId = (totalSupply() == 0 ? _seed : tokenByIndex(totalSupply() - 1));

    for (uint256 i = 0; i < loopCount; i++) {
      _lastSeed = uint256(
        keccak256(
          abi.encodePacked(
            _groupId,
            _nonce,
            _lastSeed,
            totalSupply(),
            _seed,
            lastTokenId
          )
        )
      ) % 1000000000;
    }

    _nonce += _lastSeed;
    _nonce %= 1000000000;

    // Determine the tokenId by considering various variables 
    uint256 remainingCount = _groups[_groupId].maxSupply - _totalMinted[_groupId];
    uint256 seedIndex = (_lastSeed % remainingCount) + 1;
    uint256 chosen = (_tokenSeeds[_groupId][seedIndex] > 0 ?
      _tokenSeeds[_groupId][seedIndex] : seedIndex);
    uint256 tail = (_tokenSeeds[_groupId][remainingCount] > 0 ?
      _tokenSeeds[_groupId][remainingCount] : remainingCount);

    // Swap out the chosen tokenId to the end/tail of the list
    // and reduce the remaining number of mintable tokens to make sure that all tokenIds are unique
    _tokenSeeds[_groupId][seedIndex] = tail;
    _tokenSeeds[_groupId][remainingCount] = chosen;

    // Pad with groupId to get the actual tokenId
    return (_groupId * _idSeparator) + chosen;
  }

  // Mint a new token to the specified address, token groupId, token count, and additional seed 
  function mintToken(
    address _account,
    uint256 _groupId,
    uint256 _count,
    uint256 _seed
  ) external onlyMinter(_groupId) {
    require(_account != address(0), "Invalid Address");
    require(
      _groups[_groupId].maxSupply >= _totalMinted[_groupId] + _count,
      "All Tokens Have Been Minted"
    );

    uint256 seed = _seed;
    for (uint256 i = 0; i < _count; i++) {
      uint256 tokenId = _generateTokenId(_groupId, seed);
      _totalMinted[_groupId]++;
      seed += tokenId;
      _mint(_account, tokenId);
    }
  }
}

File 1 of 19: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 19: ContentMixin.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract ContextMixin {
  function msgSender()
    internal
    view
    returns (address payable sender)
  {
    if (msg.sender == address(this)) {
      bytes memory array = msg.data;
      uint256 index = msg.data.length;
      assembly {
        // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
        sender := and(
            mload(add(array, index)),
            0xffffffffffffffffffffffffffffffffffffffff
        )
      }
    } else {
      sender = payable(msg.sender);
    }
    return sender;
  }
}

File 3 of 19: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 4 of 19: EIP712Base.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {Initializable} from "./Initializable.sol";

contract EIP712Base is Initializable {
  struct EIP712Domain {
    string name;
    string version;
    address verifyingContract;
    bytes32 salt;
  }

  string constant public ERC712_VERSION = "1";

  bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
    bytes(
      "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
    )
  );
  bytes32 internal domainSeperator;

  // supposed to be called once while initializing.
  // one of the contracts that inherits this contract follows proxy pattern
  // so it is not possible to do this in a constructor
  function _initializeEIP712(
    string memory name
  )
    internal
    initializer
  {
    _setDomainSeperator(name);
  }

  function _setDomainSeperator(string memory name) internal {
    domainSeperator = keccak256(
      abi.encode(
        EIP712_DOMAIN_TYPEHASH,
        keccak256(bytes(name)),
        keccak256(bytes(ERC712_VERSION)),
        address(this),
        bytes32(getChainId())
      )
    );
  }

  function getDomainSeperator() public view returns (bytes32) {
    return domainSeperator;
  }

  function getChainId() public view returns (uint256) {
    uint256 id;
    assembly {
      id := chainid()
    }
    return id;
  }

  /**
    * Accept message hash and returns hash message in EIP712 compatible form
    * So that it can be used to recover signer from signature signed using EIP712 formatted data
    * https://eips.ethereum.org/EIPS/eip-712
    * "\\x19" makes the encoding deterministic
    * "\\x01" is the version byte to make it compatible to EIP-191
    */
  function toTypedMessageHash(bytes32 messageHash)
    internal
    view
    returns (bytes32)
  {
    return
      keccak256(
        abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
      );
  }
}

File 5 of 19: ERC165.sol
// SPDX-License-Identifier: MIT

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 6 of 19: ERC721.sol
// SPDX-License-Identifier: MIT

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.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 7 of 19: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 8 of 19: ERC721Tradable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Strings.sol";

import "./ContentMixin.sol";
import "./NativeMetaTransaction.sol";


contract OwnableDelegateProxy {}

contract ProxyRegistry {
  mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
abstract contract ERC721Tradable is ContextMixin, ERC721Enumerable, NativeMetaTransaction, Ownable {
  using SafeMath for uint256;

  address public proxyRegistryAddress;
  uint256 private _currentTokenId = 0;

  constructor (
    string memory _name,
    string memory _symbol,
    address _proxyRegistryAddress
  ) ERC721(_name, _symbol) {
    proxyRegistryAddress = _proxyRegistryAddress;
    _initializeEIP712(_name);
  }

  /**
    * @dev calculates the next token ID based on value of _currentTokenId
    * @return uint256 for the next token ID
    */
  function _getNextTokenId() internal view returns (uint256) {
    return _currentTokenId.add(1);
  }

  /**
    * @dev increments the value of _currentTokenId
    */
  function _incrementTokenId() internal {
    _currentTokenId++;
  }

  /**
    * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
    */
  function isApprovedForAll(address owner, address operator)
    override
    public
    view
    returns (bool)
  {
    // Whitelist OpenSea proxy contract for easy trading.
    ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
    if (address(proxyRegistry.proxies(owner)) == operator) {
      return true;
    }

    return super.isApprovedForAll(owner, operator);
  }

  /**
    * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
    */
  function _msgSender()
    internal
    override
    view
    returns (address sender)
  {
    return ContextMixin.msgSender();
  }
}

File 9 of 19: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 19: IERC721.sol
// SPDX-License-Identifier: MIT

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 11 of 19: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 12 of 19: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 13 of 19: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 14 of 19: Initializable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract Initializable {
  bool inited = false;

  modifier initializer() {
    require(!inited, "already inited");
    _;
    inited = true;
  }
}

File 16 of 19: NativeMetaTransaction.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {SafeMath} from "./SafeMath.sol";
import {EIP712Base} from "./EIP712Base.sol";

contract NativeMetaTransaction is EIP712Base {
  using SafeMath for uint256;
  bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
    bytes(
      "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
    )
  );
  event MetaTransactionExecuted(
    address userAddress,
    address payable relayerAddress,
    bytes functionSignature
  );
  mapping(address => uint256) nonces;

  /*
    * Meta transaction structure.
    * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
    * He should call the desired function directly in that case.
    */
  struct MetaTransaction {
    uint256 nonce;
    address from;
    bytes functionSignature;
  }

  function executeMetaTransaction(
    address userAddress,
    bytes memory functionSignature,
    bytes32 sigR,
    bytes32 sigS,
    uint8 sigV
  ) public payable returns (bytes memory) {
    MetaTransaction memory metaTx = MetaTransaction({
      nonce: nonces[userAddress],
      from: userAddress,
      functionSignature: functionSignature
    });

    require(
      verify(userAddress, metaTx, sigR, sigS, sigV),
      "Signer and signature do not match"
    );

    // increase nonce for user (to avoid re-use)
    nonces[userAddress] = nonces[userAddress].add(1);

    emit MetaTransactionExecuted(
      userAddress,
      payable(msg.sender),
      functionSignature
    );

    // Append userAddress and relayer address at the end to extract it from calling context
    (bool success, bytes memory returnData) = address(this).call(
      abi.encodePacked(functionSignature, userAddress)
    );
    require(success, "Function call not successful");

    return returnData;
  }

  function hashMetaTransaction(MetaTransaction memory metaTx)
    internal
    pure
    returns (bytes32)
  {
    return
      keccak256(
        abi.encode(
          META_TRANSACTION_TYPEHASH,
          metaTx.nonce,
          metaTx.from,
          keccak256(metaTx.functionSignature)
        )
      );
  }

  function getNonce(address user) public view returns (uint256 nonce) {
    nonce = nonces[user];
  }

  function verify(
    address signer,
    MetaTransaction memory metaTx,
    bytes32 sigR,
    bytes32 sigS,
    uint8 sigV
  ) internal view returns (bool) {
    require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
    return
      signer ==
      ecrecover(
        toTypedMessageHash(hashMetaTransaction(metaTx)),
        sigV,
        sigR,
        sigS
      );
  }
}

File 17 of 19: Ownable.sol
// SPDX-License-Identifier: MIT

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 18 of 19: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 19 of 19: 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":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_cURI","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_groupId","type":"uint256"}],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_groupId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"address","name":"_minter","type":"address"},{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"createGroup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_groupId","type":"uint256"}],"name":"groupName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_groupId","type":"uint256"}],"name":"maximumSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_groupId","type":"uint256"},{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"uint256","name":"_seed","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_groupId","type":"uint256"}],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_groupId","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_cURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_groupId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"setGroupName","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":[{"internalType":"uint256","name":"_groupId","type":"uint256"}],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

6080604052600a805460ff191690556000600f8190556013819055601455620186a06016553480156200003157600080fd5b50604051620039c4380380620039c483398101604081905262000054916200041d565b8383828282816000908051906020019062000071929190620002c0565b50805162000087906001906020840190620002c0565b505050620000a46200009e620000ed60201b60201c565b62000109565b600e80546001600160a01b0319166001600160a01b038316179055620000ca836200015b565b50508251620000e291506010906020850190620002c0565b505050505062000523565b600062000104620001bf60201b62001d021760201c565b905090565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615620001a45760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b620001af816200021e565b50600a805460ff19166001179055565b6000333014156200021857600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506200021b9050565b50335b90565b6040518060800160405280604f815260200162003975604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b828054620002ce90620004d0565b90600052602060002090601f016020900481019282620002f257600085556200033d565b82601f106200030d57805160ff19168380011785556200033d565b828001600101855582156200033d579182015b828111156200033d57825182559160200191906001019062000320565b506200034b9291506200034f565b5090565b5b808211156200034b576000815560010162000350565b600082601f8301126200037857600080fd5b81516001600160401b03808211156200039557620003956200050d565b604051601f8301601f19908116603f01168101908282118183101715620003c057620003c06200050d565b81604052838152602092508683858801011115620003dd57600080fd5b600091505b83821015620004015785820183015181830184015290820190620003e2565b83821115620004135760008385830101525b9695505050505050565b600080600080608085870312156200043457600080fd5b84516001600160401b03808211156200044c57600080fd5b6200045a8883890162000366565b955060208701519150808211156200047157600080fd5b6200047f8883890162000366565b945060408701519150808211156200049657600080fd5b50620004a58782880162000366565b606087015190935090506001600160a01b0381168114620004c557600080fd5b939692955090935050565b600181811c90821680620004e557607f821691505b602082108114156200050757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61344280620005336000396000f3fe60806040526004361061024f5760003560e01c80638da5cb5b11610138578063be28f352116100b0578063e8a3d4851161007f578063f2fde38b11610064578063f2fde38b1461069b578063f9058b52146106bb578063fca4d31f146106db57600080fd5b8063e8a3d48514610666578063e985e9c51461067b57600080fd5b8063be28f352146105e6578063c5c20df214610606578063c87b56dd14610626578063cd7c03261461064657600080fd5b8063a22cb46511610107578063ac8d856c116100ec578063ac8d856c14610586578063b88d4fde146105a6578063be1e386c146105c657600080fd5b8063a22cb46514610546578063a689a9141461056657600080fd5b80638da5cb5b146104d3578063938e3d7b146104f157806395d89b41146105115780639d7f4ebf1461052657600080fd5b80632d0335ab116101cb57806342842e0e1161019a5780636352211e1161017f5780636352211e1461047e57806370a082311461049e578063715018a6146104be57600080fd5b806342842e0e1461043e5780634f6ccce71461045e57600080fd5b80632d0335ab146103b55780632f745c59146103eb5780633408e4701461040b5780633784102f1461041e57600080fd5b80630c53c51c1161022257806318160ddd1161020757806318160ddd1461036157806320379ee51461038057806323b872dd1461039557600080fd5b80630c53c51c146103055780630f7e59701461031857600080fd5b806301ffc9a71461025457806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e3575b600080fd5b34801561026057600080fd5b5061027461026f366004612f94565b6106fb565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e61073f565b604051610280919061322b565b3480156102b757600080fd5b506102cb6102c6366004613020565b6107d1565b6040516001600160a01b039091168152602001610280565b3480156102ef57600080fd5b506103036102fe366004612f2d565b61086b565b005b61029e610313366004612eaf565b6109af565b34801561032457600080fd5b5061029e6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b34801561036d57600080fd5b506008545b604051908152602001610280565b34801561038c57600080fd5b50600b54610372565b3480156103a157600080fd5b506103036103b0366004612dcf565b610bb5565b3480156103c157600080fd5b506103726103d0366004612d79565b6001600160a01b03166000908152600c602052604090205490565b3480156103f757600080fd5b50610372610406366004612f2d565b610c43565b34801561041757600080fd5b5046610372565b34801561042a57600080fd5b50610372610439366004613020565b610ceb565b34801561044a57600080fd5b50610303610459366004612dcf565b610d5a565b34801561046a57600080fd5b50610372610479366004613020565b610d75565b34801561048a57600080fd5b506102cb610499366004613020565b610e19565b3480156104aa57600080fd5b506103726104b9366004612d79565b610ea4565b3480156104ca57600080fd5b50610303610f3e565b3480156104df57600080fd5b50600d546001600160a01b03166102cb565b3480156104fd57600080fd5b5061030361050c366004612feb565b610fc3565b34801561051d57600080fd5b5061029e611053565b34801561053257600080fd5b50610372610541366004613020565b611062565b34801561055257600080fd5b50610303610561366004612e7c565b6110cd565b34801561057257600080fd5b5061029e610581366004613020565b6111cf565b34801561059257600080fd5b506102cb6105a1366004613020565b6112cb565b3480156105b257600080fd5b506103036105c1366004612e10565b611342565b3480156105d257600080fd5b5061029e6105e1366004613020565b6113d7565b3480156105f257600080fd5b50610303610601366004613080565b61144d565b34801561061257600080fd5b50610303610621366004613039565b6116bd565b34801561063257600080fd5b5061029e610641366004613020565b6117b2565b34801561065257600080fd5b50600e546102cb906001600160a01b031681565b34801561067257600080fd5b5061029e61186f565b34801561068757600080fd5b50610274610696366004612d96565b61187e565b3480156106a757600080fd5b506103036106b6366004612d79565b611967565b3480156106c757600080fd5b506103036106d6366004612f59565b611a68565b3480156106e757600080fd5b506103036106f6366004613039565b611c0d565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610739575061073982611d5f565b92915050565b60606000805461074e906132cc565b80601f016020809104026020016040519081016040528092919081815260200182805461077a906132cc565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661084f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087682610e19565b9050806001600160a01b0316836001600160a01b031614156109005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610846565b806001600160a01b0316610912611dfa565b6001600160a01b0316148061092e575061092e81610696611dfa565b6109a05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610846565b6109aa8383611e09565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526109ed8782878787611e77565b610a5f5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f68000000000000000000000000000000000000000000000000000000000000006064820152608401610846565b6001600160a01b0387166000908152600c6020526040902054610a83906001611f7f565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610ad390899033908a906131ba565b60405180910390a1600080306001600160a01b0316888a604051602001610afb929190613154565b60408051601f1981840301815290829052610b1591613138565b6000604051808303816000865af19150503d8060008114610b52576040519150601f19603f3d011682016040523d82523d6000602084013e610b57565b606091505b509150915081610ba95760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610846565b98975050505050505050565b610bc6610bc0611dfa565b82611f92565b610c385760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610846565b6109aa838383612061565b6000610c4e83610ea4565b8210610cc25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610846565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000818152601160205260408120548290610d425760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a590811dc9bdd5c0814dc1958da599a5959604a1b6044820152606401610846565b60008381526011602052604090205491505b50919050565b6109aa83838360405180602001604052806000815250611342565b6000610d8060085490565b8210610df45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610846565b60088281548110610e0757610e07613372565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806107395760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610846565b60006001600160a01b038216610f225760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610846565b506001600160a01b031660009081526003602052604090205490565b610f46611dfa565b6001600160a01b0316610f61600d546001600160a01b031690565b6001600160a01b031614610fb75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610846565b610fc16000612239565b565b610fcb611dfa565b6001600160a01b0316610fe6600d546001600160a01b031690565b6001600160a01b03161461103c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610846565b805161104f906010906020840190612c53565b5050565b60606001805461074e906132cc565b60008181526011602052604081205482906110b95760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a590811dc9bdd5c0814dc1958da599a5959604a1b6044820152606401610846565b505060009081526012602052604090205490565b6110d5611dfa565b6001600160a01b0316826001600160a01b031614156111365760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610846565b8060056000611143611dfa565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611187611dfa565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111c3911515815260200190565b60405180910390a35050565b60008181526011602052604090205460609082906112295760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a590811dc9bdd5c0814dc1958da599a5959604a1b6044820152606401610846565b60008381526011602052604090206003018054611245906132cc565b80601f0160208091040260200160405190810160405280929190818152602001828054611271906132cc565b80156112be5780601f10611293576101008083540402835291602001916112be565b820191906000526020600020905b8154815290600101906020018083116112a157829003601f168201915b5050505050915050919050565b60008181526011602052604081205482906113225760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a590811dc9bdd5c0814dc1958da599a5959604a1b6044820152606401610846565b50506000908152601160205260409020600101546001600160a01b031690565b61135361134d611dfa565b83611f92565b6113c55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610846565b6113d18484848461228b565b50505050565b60008181526011602052604090205460609082906114315760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a590811dc9bdd5c0814dc1958da599a5959604a1b6044820152606401610846565b60008381526011602052604090206002018054611245906132cc565b611455611dfa565b6001600160a01b0316611470600d546001600160a01b031690565b6001600160a01b0316146114c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610846565b6103e885101580156114da575061270f8511155b6115265760405162461bcd60e51b815260206004820152601060248201527f496e76616c69642047726f7570204944000000000000000000000000000000006044820152606401610846565b600085815260116020526040902054156115825760405162461bcd60e51b815260206004820152601460248201527f47726f757020486173204265656e2041646465640000000000000000000000006044820152606401610846565b6001600160a01b0382166115d85760405162461bcd60e51b815260206004820152600f60248201527f496e76616c6964204164647265737300000000000000000000000000000000006044820152606401610846565b600083116116285760405162461bcd60e51b815260206004820152601260248201527f496e76616c6964204d617820537570706c7900000000000000000000000000006044820152606401610846565b604080516080810182528481526001600160a01b0384811660208084019182528385018981526060850187905260008b815260118352959095208451815591516001830180546001600160a01b0319169190941617909255925180519293926116979260028501920190612c53565b50606082015180516116b3916003840191602090910190612c53565b5050505050505050565b60008281526011602052604090205482906117145760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a590811dc9bdd5c0814dc1958da599a5959604a1b6044820152606401610846565b61171c611dfa565b6001600160a01b0316611737600d546001600160a01b031690565b6001600160a01b03161461178d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610846565b600083815260116020908152604090912083516113d192600390920191850190612c53565b60606000601654836117c49190613256565b90506000601654846117d6919061331c565b6000838152601160205260409020549091506118345760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420546f6b656e494420537065636966696564000000000000006044820152606401610846565b61183d826111cf565b61184682612314565b60405160200161185792919061318b565b60405160208183030381529060405292505050919050565b60606010805461074e906132cc565b600e546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156118e457600080fd5b505afa1580156118f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191c9190612fce565b6001600160a01b03161415611935576001915050610739565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b61196f611dfa565b6001600160a01b031661198a600d546001600160a01b031690565b6001600160a01b0316146119e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610846565b6001600160a01b038116611a5c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610846565b611a6581612239565b50565b60008381526011602052604090206001015483906001600160a01b03163314611ad35760405162461bcd60e51b815260206004820152601360248201527f556e617574686f72697a656420416363657373000000000000000000000000006044820152606401610846565b6001600160a01b038516611b295760405162461bcd60e51b815260206004820152600f60248201527f496e76616c6964204164647265737300000000000000000000000000000000006044820152606401610846565b600084815260126020526040902054611b4390849061323e565b6000858152601160205260409020541015611ba05760405162461bcd60e51b815260206004820152601b60248201527f416c6c20546f6b656e732048617665204265656e204d696e74656400000000006044820152606401610846565b8160005b84811015611c04576000611bb88784612446565b6000888152601260205260408120805492935090611bd583613301565b90915550611be59050818461323e565b9250611bf18882612672565b5080611bfc81613301565b915050611ba4565b50505050505050565b6000828152601160205260409020548290611c645760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a590811dc9bdd5c0814dc1958da599a5959604a1b6044820152606401610846565b611c6c611dfa565b6001600160a01b0316611c87600d546001600160a01b031690565b6001600160a01b031614611cdd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610846565b600083815260116020908152604090912083516113d192600290920191850190612c53565b600033301415611d5957600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150611d5c9050565b50335b90565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611dc257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061073957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610739565b6000611e04611d02565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e3e82610e19565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611ef55760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e45520000000000000000000000000000000000000000000000000000006064820152608401610846565b6001611f08611f03876127c0565b61283d565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611f56573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611f8b828461323e565b9392505050565b6000818152600260205260408120546001600160a01b031661200b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610846565b600061201683610e19565b9050806001600160a01b0316846001600160a01b031614806120515750836001600160a01b0316612046846107d1565b6001600160a01b0316145b8061195f575061195f818561187e565b826001600160a01b031661207482610e19565b6001600160a01b0316146120f05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610846565b6001600160a01b03821661216b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610846565b612176838383612888565b612181600082611e09565b6001600160a01b03831660009081526003602052604081208054600192906121aa908490613289565b90915550506001600160a01b03821660009081526003602052604081208054600192906121d890849061323e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612296848484612061565b6122a284848484612940565b6113d15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610846565b60608161235457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561237e578061236881613301565b91506123779050600a83613256565b9150612358565b60008167ffffffffffffffff81111561239957612399613388565b6040519080825280601f01601f1916602001820160405280156123c3576020820181803683370190505b5090505b841561195f576123d8600183613289565b91506123e5600a8661331c565b6123f090603061323e565b60f81b81838151811061240557612405613372565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061243f600a86613256565b94506123c7565b600080600360135484612459919061323e565b612463919061331c565b61246e90600161323e565b9050600061247b60085490565b1561249d57612498600161248e60085490565b6104799190613289565b61249f565b835b905060005b8281101561252657633b9aca00866013546014546124c160085490565b6040805160208101959095528401929092526060830152608082015260a0810187905260c0810184905260e0016040516020818303038152906040528051906020012060001c612511919061331c565b6014558061251e81613301565b9150506124a4565b506014546013600082825461253b919061323e565b92505081905550633b9aca0060136000828254612558919061331c565b909155505060008581526012602090815260408083205460119092528220546125819190613289565b9050600081601454612593919061331c565b61259e90600161323e565b6000888152601560209081526040808320848452909152812054919250906125c657816125e1565b60008881526015602090815260408083208584529091529020545b6000898152601560209081526040808320878452909152812054919250906126095783612624565b60008981526015602090815260408083208784529091529020545b60008a81526015602090815260408083208784529091528082208390558682529020839055601654909150829061265b908b61326a565b612665919061323e565b9998505050505050505050565b6001600160a01b0382166126c85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610846565b6000818152600260205260409020546001600160a01b03161561272d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610846565b61273960008383612888565b6001600160a01b038216600090815260036020526040812080546001929061276290849061323e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006040518060800160405280604381526020016133ca6043913980516020918201208351848301516040808701518051908601209051612820950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612848600b5490565b6040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281019190915260428101839052606201612820565b6001600160a01b0383166128e3576128de81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612906565b816001600160a01b0316836001600160a01b031614612906576129068382612ac3565b6001600160a01b03821661291d576109aa81612b60565b826001600160a01b0316826001600160a01b0316146109aa576109aa8282612c0f565b60006001600160a01b0384163b15612ab857836001600160a01b031663150b7a02612969611dfa565b8786866040518563ffffffff1660e01b815260040161298b94939291906131ef565b602060405180830381600087803b1580156129a557600080fd5b505af19250505080156129d5575060408051601f3d908101601f191682019092526129d291810190612fb1565b60015b612a85573d808015612a03576040519150601f19603f3d011682016040523d82523d6000602084013e612a08565b606091505b508051612a7d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610846565b805181602001fd5b6001600160e01b0319167f150b7a020000000000000000000000000000000000000000000000000000000014905061195f565b506001949350505050565b60006001612ad084610ea4565b612ada9190613289565b600083815260076020526040902054909150808214612b2d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b7290600190613289565b60008381526009602052604081205460088054939450909284908110612b9a57612b9a613372565b906000526020600020015490508060088381548110612bbb57612bbb613372565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612bf357612bf361335c565b6001900381819060005260206000200160009055905550505050565b6000612c1a83610ea4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612c5f906132cc565b90600052602060002090601f016020900481019282612c815760008555612cc7565b82601f10612c9a57805160ff1916838001178555612cc7565b82800160010185558215612cc7579182015b82811115612cc7578251825591602001919060010190612cac565b50612cd3929150612cd7565b5090565b5b80821115612cd35760008155600101612cd8565b600082601f830112612cfd57600080fd5b813567ffffffffffffffff80821115612d1857612d18613388565b604051601f8301601f19908116603f01168101908282118183101715612d4057612d40613388565b81604052838152866020858801011115612d5957600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215612d8b57600080fd5b8135611f8b8161339e565b60008060408385031215612da957600080fd5b8235612db48161339e565b91506020830135612dc48161339e565b809150509250929050565b600080600060608486031215612de457600080fd5b8335612def8161339e565b92506020840135612dff8161339e565b929592945050506040919091013590565b60008060008060808587031215612e2657600080fd5b8435612e318161339e565b93506020850135612e418161339e565b925060408501359150606085013567ffffffffffffffff811115612e6457600080fd5b612e7087828801612cec565b91505092959194509250565b60008060408385031215612e8f57600080fd5b8235612e9a8161339e565b915060208301358015158114612dc457600080fd5b600080600080600060a08688031215612ec757600080fd5b8535612ed28161339e565b9450602086013567ffffffffffffffff811115612eee57600080fd5b612efa88828901612cec565b9450506040860135925060608601359150608086013560ff81168114612f1f57600080fd5b809150509295509295909350565b60008060408385031215612f4057600080fd5b8235612f4b8161339e565b946020939093013593505050565b60008060008060808587031215612f6f57600080fd5b8435612f7a8161339e565b966020860135965060408601359560600135945092505050565b600060208284031215612fa657600080fd5b8135611f8b816133b3565b600060208284031215612fc357600080fd5b8151611f8b816133b3565b600060208284031215612fe057600080fd5b8151611f8b8161339e565b600060208284031215612ffd57600080fd5b813567ffffffffffffffff81111561301457600080fd5b61195f84828501612cec565b60006020828403121561303257600080fd5b5035919050565b6000806040838503121561304c57600080fd5b82359150602083013567ffffffffffffffff81111561306a57600080fd5b61307685828601612cec565b9150509250929050565b600080600080600060a0868803121561309857600080fd5b85359450602086013567ffffffffffffffff808211156130b757600080fd5b6130c389838a01612cec565b955060408801359450606088013591506130dc8261339e565b909250608087013590808211156130f257600080fd5b506130ff88828901612cec565b9150509295509295909350565b600081518084526131248160208601602086016132a0565b601f01601f19169290920160200192915050565b6000825161314a8184602087016132a0565b9190910192915050565b600083516131668184602088016132a0565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b6000835161319d8184602088016132a0565b8351908301906131b18183602088016132a0565b01949350505050565b60006001600160a01b038086168352808516602084015250606060408301526131e6606083018461310c565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613221608083018461310c565b9695505050505050565b602081526000611f8b602083018461310c565b6000821982111561325157613251613330565b500190565b60008261326557613265613346565b500490565b600081600019048311821515161561328457613284613330565b500290565b60008282101561329b5761329b613330565b500390565b60005b838110156132bb5781810151838201526020016132a3565b838111156113d15750506000910152565b600181811c908216806132e057607f821691505b60208210811415610d5457634e487b7160e01b600052602260045260246000fd5b600060001982141561331557613315613330565b5060010190565b60008261332b5761332b613346565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611a6557600080fd5b6001600160e01b031981168114611a6557600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212208e0cc354b8d65cad1cc251402ed932434157ddddba2d39e7c7aad69399502ce664736f6c63430008070033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000104c616e642044414f2047656e657369730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084c414e4444414f47000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f6c616e6464616f2e6d7970696e6174612e636c6f75642f697066732f516d56376d684a76393536357763754357766e596a357956587833436e3148596a63684b54414d595232507578750000000000000000000000000000

Deployed Bytecode

0x60806040526004361061024f5760003560e01c80638da5cb5b11610138578063be28f352116100b0578063e8a3d4851161007f578063f2fde38b11610064578063f2fde38b1461069b578063f9058b52146106bb578063fca4d31f146106db57600080fd5b8063e8a3d48514610666578063e985e9c51461067b57600080fd5b8063be28f352146105e6578063c5c20df214610606578063c87b56dd14610626578063cd7c03261461064657600080fd5b8063a22cb46511610107578063ac8d856c116100ec578063ac8d856c14610586578063b88d4fde146105a6578063be1e386c146105c657600080fd5b8063a22cb46514610546578063a689a9141461056657600080fd5b80638da5cb5b146104d3578063938e3d7b146104f157806395d89b41146105115780639d7f4ebf1461052657600080fd5b80632d0335ab116101cb57806342842e0e1161019a5780636352211e1161017f5780636352211e1461047e57806370a082311461049e578063715018a6146104be57600080fd5b806342842e0e1461043e5780634f6ccce71461045e57600080fd5b80632d0335ab146103b55780632f745c59146103eb5780633408e4701461040b5780633784102f1461041e57600080fd5b80630c53c51c1161022257806318160ddd1161020757806318160ddd1461036157806320379ee51461038057806323b872dd1461039557600080fd5b80630c53c51c146103055780630f7e59701461031857600080fd5b806301ffc9a71461025457806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e3575b600080fd5b34801561026057600080fd5b5061027461026f366004612f94565b6106fb565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e61073f565b604051610280919061322b565b3480156102b757600080fd5b506102cb6102c6366004613020565b6107d1565b6040516001600160a01b039091168152602001610280565b3480156102ef57600080fd5b506103036102fe366004612f2d565b61086b565b005b61029e610313366004612eaf565b6109af565b34801561032457600080fd5b5061029e6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b34801561036d57600080fd5b506008545b604051908152602001610280565b34801561038c57600080fd5b50600b54610372565b3480156103a157600080fd5b506103036103b0366004612dcf565b610bb5565b3480156103c157600080fd5b506103726103d0366004612d79565b6001600160a01b03166000908152600c602052604090205490565b3480156103f757600080fd5b50610372610406366004612f2d565b610c43565b34801561041757600080fd5b5046610372565b34801561042a57600080fd5b50610372610439366004613020565b610ceb565b34801561044a57600080fd5b50610303610459366004612dcf565b610d5a565b34801561046a57600080fd5b50610372610479366004613020565b610d75565b34801561048a57600080fd5b506102cb610499366004613020565b610e19565b3480156104aa57600080fd5b506103726104b9366004612d79565b610ea4565b3480156104ca57600080fd5b50610303610f3e565b3480156104df57600080fd5b50600d546001600160a01b03166102cb565b3480156104fd57600080fd5b5061030361050c366004612feb565b610fc3565b34801561051d57600080fd5b5061029e611053565b34801561053257600080fd5b50610372610541366004613020565b611062565b34801561055257600080fd5b50610303610561366004612e7c565b6110cd565b34801561057257600080fd5b5061029e610581366004613020565b6111cf565b34801561059257600080fd5b506102cb6105a1366004613020565b6112cb565b3480156105b257600080fd5b506103036105c1366004612e10565b611342565b3480156105d257600080fd5b5061029e6105e1366004613020565b6113d7565b3480156105f257600080fd5b50610303610601366004613080565b61144d565b34801561061257600080fd5b50610303610621366004613039565b6116bd565b34801561063257600080fd5b5061029e610641366004613020565b6117b2565b34801561065257600080fd5b50600e546102cb906001600160a01b031681565b34801561067257600080fd5b5061029e61186f565b34801561068757600080fd5b50610274610696366004612d96565b61187e565b3480156106a757600080fd5b506103036106b6366004612d79565b611967565b3480156106c757600080fd5b506103036106d6366004612f59565b611a68565b3480156106e757600080fd5b506103036106f6366004613039565b611c0d565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610739575061073982611d5f565b92915050565b60606000805461074e906132cc565b80601f016020809104026020016040519081016040528092919081815260200182805461077a906132cc565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661084f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087682610e19565b9050806001600160a01b0316836001600160a01b031614156109005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610846565b806001600160a01b0316610912611dfa565b6001600160a01b0316148061092e575061092e81610696611dfa565b6109a05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610846565b6109aa8383611e09565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526109ed8782878787611e77565b610a5f5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f68000000000000000000000000000000000000000000000000000000000000006064820152608401610846565b6001600160a01b0387166000908152600c6020526040902054610a83906001611f7f565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610ad390899033908a906131ba565b60405180910390a1600080306001600160a01b0316888a604051602001610afb929190613154565b60408051601f1981840301815290829052610b1591613138565b6000604051808303816000865af19150503d8060008114610b52576040519150601f19603f3d011682016040523d82523d6000602084013e610b57565b606091505b509150915081610ba95760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610846565b98975050505050505050565b610bc6610bc0611dfa565b82611f92565b610c385760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610846565b6109aa838383612061565b6000610c4e83610ea4565b8210610cc25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610846565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000818152601160205260408120548290610d425760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a590811dc9bdd5c0814dc1958da599a5959604a1b6044820152606401610846565b60008381526011602052604090205491505b50919050565b6109aa83838360405180602001604052806000815250611342565b6000610d8060085490565b8210610df45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610846565b60088281548110610e0757610e07613372565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806107395760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610846565b60006001600160a01b038216610f225760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610846565b506001600160a01b031660009081526003602052604090205490565b610f46611dfa565b6001600160a01b0316610f61600d546001600160a01b031690565b6001600160a01b031614610fb75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610846565b610fc16000612239565b565b610fcb611dfa565b6001600160a01b0316610fe6600d546001600160a01b031690565b6001600160a01b03161461103c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610846565b805161104f906010906020840190612c53565b5050565b60606001805461074e906132cc565b60008181526011602052604081205482906110b95760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a590811dc9bdd5c0814dc1958da599a5959604a1b6044820152606401610846565b505060009081526012602052604090205490565b6110d5611dfa565b6001600160a01b0316826001600160a01b031614156111365760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610846565b8060056000611143611dfa565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611187611dfa565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111c3911515815260200190565b60405180910390a35050565b60008181526011602052604090205460609082906112295760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a590811dc9bdd5c0814dc1958da599a5959604a1b6044820152606401610846565b60008381526011602052604090206003018054611245906132cc565b80601f0160208091040260200160405190810160405280929190818152602001828054611271906132cc565b80156112be5780601f10611293576101008083540402835291602001916112be565b820191906000526020600020905b8154815290600101906020018083116112a157829003601f168201915b5050505050915050919050565b60008181526011602052604081205482906113225760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a590811dc9bdd5c0814dc1958da599a5959604a1b6044820152606401610846565b50506000908152601160205260409020600101546001600160a01b031690565b61135361134d611dfa565b83611f92565b6113c55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610846565b6113d18484848461228b565b50505050565b60008181526011602052604090205460609082906114315760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a590811dc9bdd5c0814dc1958da599a5959604a1b6044820152606401610846565b60008381526011602052604090206002018054611245906132cc565b611455611dfa565b6001600160a01b0316611470600d546001600160a01b031690565b6001600160a01b0316146114c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610846565b6103e885101580156114da575061270f8511155b6115265760405162461bcd60e51b815260206004820152601060248201527f496e76616c69642047726f7570204944000000000000000000000000000000006044820152606401610846565b600085815260116020526040902054156115825760405162461bcd60e51b815260206004820152601460248201527f47726f757020486173204265656e2041646465640000000000000000000000006044820152606401610846565b6001600160a01b0382166115d85760405162461bcd60e51b815260206004820152600f60248201527f496e76616c6964204164647265737300000000000000000000000000000000006044820152606401610846565b600083116116285760405162461bcd60e51b815260206004820152601260248201527f496e76616c6964204d617820537570706c7900000000000000000000000000006044820152606401610846565b604080516080810182528481526001600160a01b0384811660208084019182528385018981526060850187905260008b815260118352959095208451815591516001830180546001600160a01b0319169190941617909255925180519293926116979260028501920190612c53565b50606082015180516116b3916003840191602090910190612c53565b5050505050505050565b60008281526011602052604090205482906117145760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a590811dc9bdd5c0814dc1958da599a5959604a1b6044820152606401610846565b61171c611dfa565b6001600160a01b0316611737600d546001600160a01b031690565b6001600160a01b03161461178d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610846565b600083815260116020908152604090912083516113d192600390920191850190612c53565b60606000601654836117c49190613256565b90506000601654846117d6919061331c565b6000838152601160205260409020549091506118345760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420546f6b656e494420537065636966696564000000000000006044820152606401610846565b61183d826111cf565b61184682612314565b60405160200161185792919061318b565b60405160208183030381529060405292505050919050565b60606010805461074e906132cc565b600e546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156118e457600080fd5b505afa1580156118f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191c9190612fce565b6001600160a01b03161415611935576001915050610739565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b61196f611dfa565b6001600160a01b031661198a600d546001600160a01b031690565b6001600160a01b0316146119e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610846565b6001600160a01b038116611a5c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610846565b611a6581612239565b50565b60008381526011602052604090206001015483906001600160a01b03163314611ad35760405162461bcd60e51b815260206004820152601360248201527f556e617574686f72697a656420416363657373000000000000000000000000006044820152606401610846565b6001600160a01b038516611b295760405162461bcd60e51b815260206004820152600f60248201527f496e76616c6964204164647265737300000000000000000000000000000000006044820152606401610846565b600084815260126020526040902054611b4390849061323e565b6000858152601160205260409020541015611ba05760405162461bcd60e51b815260206004820152601b60248201527f416c6c20546f6b656e732048617665204265656e204d696e74656400000000006044820152606401610846565b8160005b84811015611c04576000611bb88784612446565b6000888152601260205260408120805492935090611bd583613301565b90915550611be59050818461323e565b9250611bf18882612672565b5080611bfc81613301565b915050611ba4565b50505050505050565b6000828152601160205260409020548290611c645760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a590811dc9bdd5c0814dc1958da599a5959604a1b6044820152606401610846565b611c6c611dfa565b6001600160a01b0316611c87600d546001600160a01b031690565b6001600160a01b031614611cdd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610846565b600083815260116020908152604090912083516113d192600290920191850190612c53565b600033301415611d5957600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150611d5c9050565b50335b90565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611dc257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061073957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610739565b6000611e04611d02565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e3e82610e19565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611ef55760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e45520000000000000000000000000000000000000000000000000000006064820152608401610846565b6001611f08611f03876127c0565b61283d565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611f56573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611f8b828461323e565b9392505050565b6000818152600260205260408120546001600160a01b031661200b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610846565b600061201683610e19565b9050806001600160a01b0316846001600160a01b031614806120515750836001600160a01b0316612046846107d1565b6001600160a01b0316145b8061195f575061195f818561187e565b826001600160a01b031661207482610e19565b6001600160a01b0316146120f05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610846565b6001600160a01b03821661216b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610846565b612176838383612888565b612181600082611e09565b6001600160a01b03831660009081526003602052604081208054600192906121aa908490613289565b90915550506001600160a01b03821660009081526003602052604081208054600192906121d890849061323e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612296848484612061565b6122a284848484612940565b6113d15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610846565b60608161235457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561237e578061236881613301565b91506123779050600a83613256565b9150612358565b60008167ffffffffffffffff81111561239957612399613388565b6040519080825280601f01601f1916602001820160405280156123c3576020820181803683370190505b5090505b841561195f576123d8600183613289565b91506123e5600a8661331c565b6123f090603061323e565b60f81b81838151811061240557612405613372565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061243f600a86613256565b94506123c7565b600080600360135484612459919061323e565b612463919061331c565b61246e90600161323e565b9050600061247b60085490565b1561249d57612498600161248e60085490565b6104799190613289565b61249f565b835b905060005b8281101561252657633b9aca00866013546014546124c160085490565b6040805160208101959095528401929092526060830152608082015260a0810187905260c0810184905260e0016040516020818303038152906040528051906020012060001c612511919061331c565b6014558061251e81613301565b9150506124a4565b506014546013600082825461253b919061323e565b92505081905550633b9aca0060136000828254612558919061331c565b909155505060008581526012602090815260408083205460119092528220546125819190613289565b9050600081601454612593919061331c565b61259e90600161323e565b6000888152601560209081526040808320848452909152812054919250906125c657816125e1565b60008881526015602090815260408083208584529091529020545b6000898152601560209081526040808320878452909152812054919250906126095783612624565b60008981526015602090815260408083208784529091529020545b60008a81526015602090815260408083208784529091528082208390558682529020839055601654909150829061265b908b61326a565b612665919061323e565b9998505050505050505050565b6001600160a01b0382166126c85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610846565b6000818152600260205260409020546001600160a01b03161561272d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610846565b61273960008383612888565b6001600160a01b038216600090815260036020526040812080546001929061276290849061323e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006040518060800160405280604381526020016133ca6043913980516020918201208351848301516040808701518051908601209051612820950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612848600b5490565b6040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281019190915260428101839052606201612820565b6001600160a01b0383166128e3576128de81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612906565b816001600160a01b0316836001600160a01b031614612906576129068382612ac3565b6001600160a01b03821661291d576109aa81612b60565b826001600160a01b0316826001600160a01b0316146109aa576109aa8282612c0f565b60006001600160a01b0384163b15612ab857836001600160a01b031663150b7a02612969611dfa565b8786866040518563ffffffff1660e01b815260040161298b94939291906131ef565b602060405180830381600087803b1580156129a557600080fd5b505af19250505080156129d5575060408051601f3d908101601f191682019092526129d291810190612fb1565b60015b612a85573d808015612a03576040519150601f19603f3d011682016040523d82523d6000602084013e612a08565b606091505b508051612a7d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610846565b805181602001fd5b6001600160e01b0319167f150b7a020000000000000000000000000000000000000000000000000000000014905061195f565b506001949350505050565b60006001612ad084610ea4565b612ada9190613289565b600083815260076020526040902054909150808214612b2d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b7290600190613289565b60008381526009602052604081205460088054939450909284908110612b9a57612b9a613372565b906000526020600020015490508060088381548110612bbb57612bbb613372565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612bf357612bf361335c565b6001900381819060005260206000200160009055905550505050565b6000612c1a83610ea4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612c5f906132cc565b90600052602060002090601f016020900481019282612c815760008555612cc7565b82601f10612c9a57805160ff1916838001178555612cc7565b82800160010185558215612cc7579182015b82811115612cc7578251825591602001919060010190612cac565b50612cd3929150612cd7565b5090565b5b80821115612cd35760008155600101612cd8565b600082601f830112612cfd57600080fd5b813567ffffffffffffffff80821115612d1857612d18613388565b604051601f8301601f19908116603f01168101908282118183101715612d4057612d40613388565b81604052838152866020858801011115612d5957600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215612d8b57600080fd5b8135611f8b8161339e565b60008060408385031215612da957600080fd5b8235612db48161339e565b91506020830135612dc48161339e565b809150509250929050565b600080600060608486031215612de457600080fd5b8335612def8161339e565b92506020840135612dff8161339e565b929592945050506040919091013590565b60008060008060808587031215612e2657600080fd5b8435612e318161339e565b93506020850135612e418161339e565b925060408501359150606085013567ffffffffffffffff811115612e6457600080fd5b612e7087828801612cec565b91505092959194509250565b60008060408385031215612e8f57600080fd5b8235612e9a8161339e565b915060208301358015158114612dc457600080fd5b600080600080600060a08688031215612ec757600080fd5b8535612ed28161339e565b9450602086013567ffffffffffffffff811115612eee57600080fd5b612efa88828901612cec565b9450506040860135925060608601359150608086013560ff81168114612f1f57600080fd5b809150509295509295909350565b60008060408385031215612f4057600080fd5b8235612f4b8161339e565b946020939093013593505050565b60008060008060808587031215612f6f57600080fd5b8435612f7a8161339e565b966020860135965060408601359560600135945092505050565b600060208284031215612fa657600080fd5b8135611f8b816133b3565b600060208284031215612fc357600080fd5b8151611f8b816133b3565b600060208284031215612fe057600080fd5b8151611f8b8161339e565b600060208284031215612ffd57600080fd5b813567ffffffffffffffff81111561301457600080fd5b61195f84828501612cec565b60006020828403121561303257600080fd5b5035919050565b6000806040838503121561304c57600080fd5b82359150602083013567ffffffffffffffff81111561306a57600080fd5b61307685828601612cec565b9150509250929050565b600080600080600060a0868803121561309857600080fd5b85359450602086013567ffffffffffffffff808211156130b757600080fd5b6130c389838a01612cec565b955060408801359450606088013591506130dc8261339e565b909250608087013590808211156130f257600080fd5b506130ff88828901612cec565b9150509295509295909350565b600081518084526131248160208601602086016132a0565b601f01601f19169290920160200192915050565b6000825161314a8184602087016132a0565b9190910192915050565b600083516131668184602088016132a0565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b6000835161319d8184602088016132a0565b8351908301906131b18183602088016132a0565b01949350505050565b60006001600160a01b038086168352808516602084015250606060408301526131e6606083018461310c565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613221608083018461310c565b9695505050505050565b602081526000611f8b602083018461310c565b6000821982111561325157613251613330565b500190565b60008261326557613265613346565b500490565b600081600019048311821515161561328457613284613330565b500290565b60008282101561329b5761329b613330565b500390565b60005b838110156132bb5781810151838201526020016132a3565b838111156113d15750506000910152565b600181811c908216806132e057607f821691505b60208210811415610d5457634e487b7160e01b600052602260045260246000fd5b600060001982141561331557613315613330565b5060010190565b60008261332b5761332b613346565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611a6557600080fd5b6001600160e01b031981168114611a6557600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212208e0cc354b8d65cad1cc251402ed932434157ddddba2d39e7c7aad69399502ce664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000104c616e642044414f2047656e657369730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084c414e4444414f47000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f6c616e6464616f2e6d7970696e6174612e636c6f75642f697066732f516d56376d684a76393536357763754357766e596a357956587833436e3148596a63684b54414d595232507578750000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Land DAO Genesis
Arg [1] : _symbol (string): LANDDAOG
Arg [2] : _cURI (string): https://landdao.mypinata.cloud/ipfs/QmV7mhJv9565wcuCWvnYj5yVXx3Cn1HYjchKTAMYR2Puxu
Arg [3] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [5] : 4c616e642044414f2047656e6573697300000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 4c414e4444414f47000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000052
Arg [9] : 68747470733a2f2f6c616e6464616f2e6d7970696e6174612e636c6f75642f69
Arg [10] : 7066732f516d56376d684a76393536357763754357766e596a35795658783343
Arg [11] : 6e3148596a63684b54414d595232507578750000000000000000000000000000


Deployed Bytecode Sourcemap

90:6160:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:222:6;;;;;;;;;;-1:-1:-1;909:222:6;;;;;:::i;:::-;;:::i;:::-;;;10758:14:19;;10751:22;10733:41;;10721:2;10706:18;909:222:6;;;;;;;;2349:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3860:217::-;;;;;;;;;;-1:-1:-1;3860:217:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9551:55:19;;;9533:74;;9521:2;9506:18;3860:217:5;9387:226:19;3398:401:5;;;;;;;;;;-1:-1:-1;3398:401:5;;;;;:::i;:::-;;:::i;:::-;;880:987:15;;;;;;:::i;:::-;;:::i;266:43:3:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1534:111:6;;;;;;;;;;-1:-1:-1;1621:10:6;:17;1534:111;;;10931:25:19;;;10919:2;10904:18;1534:111:6;10785:177:19;1126:93:3;;;;;;;;;;-1:-1:-1;1199:15:3;;1126:93;;4724:330:5;;;;;;;;;;-1:-1:-1;4724:330:5;;;;;:::i;:::-;;:::i;2183:99:15:-;;;;;;;;;;-1:-1:-1;2183:99:15;;;;;:::i;:::-;-1:-1:-1;;;;;2265:12:15;2236:13;2265:12;;;:6;:12;;;;;;;2183:99;1210:253:6;;;;;;;;;;-1:-1:-1;1210:253:6;;;;;:::i;:::-;;:::i;1223:131:3:-;;;;;;;;;;-1:-1:-1;1320:9:3;1223:131;;3860:151:14;;;;;;;;;;-1:-1:-1;3860:151:14;;;;;:::i;:::-;;:::i;5120:179:5:-;;;;;;;;;;-1:-1:-1;5120:179:5;;;;;:::i;:::-;;:::i;1717:230:6:-;;;;;;;;;;-1:-1:-1;1717:230:6;;;;;:::i;:::-;;:::i;2052:235:5:-;;;;;;;;;;-1:-1:-1;2052:235:5;;;;;:::i;:::-;;:::i;1790:205::-;;;;;;;;;;-1:-1:-1;1790:205:5;;;;;:::i;:::-;;:::i;1598:92:16:-;;;;;;;;;;;;;:::i;966:85::-;;;;;;;;;;-1:-1:-1;1038:6:16;;-1:-1:-1;;;;;1038:6:16;966:85;;2750:95:14;;;;;;;;;;-1:-1:-1;2750:95:14;;;;;:::i;:::-;;:::i;2511:102:5:-;;;;;;;;;;;;;:::i;4015:144:14:-;;;;;;;;;;-1:-1:-1;4015:144:14;;;;;:::i;:::-;;:::i;4144:290:5:-;;;;;;;;;;-1:-1:-1;4144:290:5;;;;;:::i;:::-;;:::i;1816:157:14:-;;;;;;;;;;-1:-1:-1;1816:157:14;;;;;:::i;:::-;;:::i;2849:141::-;;;;;;;;;;-1:-1:-1;2849:141:14;;;;;:::i;:::-;;:::i;5365:320:5:-;;;;;;;;;;-1:-1:-1;5365:320:5;;;;;:::i;:::-;;:::i;2994:148:14:-;;;;;;;;;;-1:-1:-1;2994:148:14;;;;;:::i;:::-;;:::i;3360:496::-;;;;;;;;;;-1:-1:-1;3360:496:14;;;;;:::i;:::-;;:::i;2063:159::-;;;;;;;;;;-1:-1:-1;2063:159:14;;;;;:::i;:::-;;:::i;2226:343::-;;;;;;;;;;-1:-1:-1;2226:343:14;;;;;:::i;:::-;;:::i;646:35:7:-;;;;;;;;;;-1:-1:-1;646:35:7;;;;-1:-1:-1;;;;;646:35:7;;;2573:89:14;;;;;;;;;;;;;:::i;1426:386:7:-;;;;;;;;;;-1:-1:-1;1426:386:7;;;;;:::i;:::-;;:::i;1839:189:16:-;;;;;;;;;;-1:-1:-1;1839:189:16;;;;;:::i;:::-;;:::i;5704:544:14:-;;;;;;;;;;-1:-1:-1;5704:544:14;;;;;:::i;:::-;;:::i;3206:150::-;;;;;;;;;;-1:-1:-1;3206:150:14;;;;;:::i;:::-;;:::i;909:222:6:-;1011:4;-1:-1:-1;;;;;;1034:50:6;;1049:35;1034:50;;:90;;;1088:36;1112:11;1088:23;:36::i;:::-;1027:97;909:222;-1:-1:-1;;909:222:6:o;2349:98:5:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:5;3955:73;;;;-1:-1:-1;;;3955:73:5;;19359:2:19;3955:73:5;;;19341:21:19;19398:2;19378:18;;;19371:30;19437:34;19417:18;;;19410:62;-1:-1:-1;;;19488:18:19;;;19481:42;19540:19;;3955:73:5;;;;;;;;;-1:-1:-1;4046:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:5;;3860:217::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:5;:2;-1:-1:-1;;;;;3535:11:5;;;3527:57;;;;-1:-1:-1;;;3527:57:5;;20945:2:19;3527:57:5;;;20927:21:19;20984:2;20964:18;;;20957:30;21023:34;21003:18;;;20996:62;21094:3;21074:18;;;21067:31;21115:19;;3527:57:5;20743:397:19;3527:57:5;3632:5;-1:-1:-1;;;;;3616:21:5;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3616:21:5;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:5;;17048:2:19;3595:165:5;;;17030:21:19;17087:2;17067:18;;;17060:30;17126:34;17106:18;;;17099:62;17197:26;17177:18;;;17170:54;17241:19;;3595:165:5;16846:420:19;3595:165:5;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3468:331;3398:401;;:::o;880:987:15:-;1105:126;;;1053:12;1105:126;;;;;-1:-1:-1;;;;;1136:19:15;;1073:29;1136:19;;;:6;:19;;;;;;;;;1105:126;;;;;;;;;;;1253:45;1143:11;1105:126;1281:4;1287;1293;1253:6;:45::i;:::-;1238:109;;;;-1:-1:-1;;;1238:109:15;;20543:2:19;1238:109:15;;;20525:21:19;20582:2;20562:18;;;20555:30;20621:34;20601:18;;;20594:62;20692:3;20672:18;;;20665:31;20713:19;;1238:109:15;20341:397:19;1238:109:15;-1:-1:-1;;;;;1425:19:15;;;;;;:6;:19;;;;;;:26;;1449:1;1425:23;:26::i;:::-;-1:-1:-1;;;;;1403:19:15;;;;;;:6;:19;;;;;;;:48;;;;1463:100;;;;;1410:11;;1521:10;;1540:17;;1463:100;:::i;:::-;;;;;;;;1663:12;1677:23;1712:4;-1:-1:-1;;;;;1704:18:15;1747:17;1766:11;1730:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1730:48:15;;;;;;;;;;1704:80;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1662:122;;;;1798:7;1790:48;;;;-1:-1:-1;;;1790:48:15;;13701:2:19;1790:48:15;;;13683:21:19;13740:2;13720:18;;;13713:30;13779;13759:18;;;13752:58;13827:18;;1790:48:15;13499:352:19;1790:48:15;1852:10;880:987;-1:-1:-1;;;;;;;;880:987:15:o;4724:330:5:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:5;;22038:2:19;4905:103:5;;;22020:21:19;22077:2;22057:18;;;22050:30;22116:34;22096:18;;;22089:62;22187:19;22167:18;;;22160:47;22224:19;;4905:103:5;21836:413:19;4905:103:5;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;1210:253:6:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;-1:-1:-1;;;1326:87:6;;12463:2:19;1326:87:6;;;12445:21:19;12502:2;12482:18;;;12475:30;12541:34;12521:18;;;12514:62;12612:13;12592:18;;;12585:41;12643:19;;1326:87:6;12261:407:19;1326:87:6;-1:-1:-1;;;;;;1430:19:6;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1210:253::o;3860:151:14:-;3955:7;1523:17;;;:7;:17;;;;;:27;3932:8;;1515:67;;;;-1:-1:-1;;;1515:67:14;;14764:2:19;1515:67:14;;;14746:21:19;14803:2;14783:18;;;14776:30;-1:-1:-1;;;14822:18:19;;;14815:53;14885:18;;1515:67:14;14562:347:19;1515:67:14;3979:17:::1;::::0;;;:7:::1;:17;::::0;;;;:27;;-1:-1:-1;1588:1:14::1;3860:151:::0;;;;:::o;5120:179:5:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;1717:230:6:-;1792:7;1827:30;1621:10;:17;;1534:111;1827:30;1819:5;:38;1811:95;;;;-1:-1:-1;;;1811:95:6;;22456:2:19;1811:95:6;;;22438:21:19;22495:2;22475:18;;;22468:30;22534:34;22514:18;;;22507:62;22605:14;22585:18;;;22578:42;22637:19;;1811:95:6;22254:408:19;1811:95:6;1923:10;1934:5;1923:17;;;;;;;;:::i;:::-;;;;;;;;;1916:24;;1717:230;;;:::o;2052:235:5:-;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:5;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:5;;17884:2:19;2185:73:5;;;17866:21:19;17923:2;17903:18;;;17896:30;17962:34;17942:18;;;17935:62;18033:11;18013:18;;;18006:39;18062:19;;2185:73:5;17682:405:19;1790:205:5;1862:7;-1:-1:-1;;;;;1889:19:5;;1881:74;;;;-1:-1:-1;;;1881:74:5;;17473:2:19;1881:74:5;;;17455:21:19;17512:2;17492:18;;;17485:30;17551:34;17531:18;;;17524:62;17622:12;17602:18;;;17595:40;17652:19;;1881:74:5;17271:406:19;1881:74:5;-1:-1:-1;;;;;;1972:16:5;;;;;:9;:16;;;;;;;1790:205::o;1598:92:16:-;1189:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:16;:7;1038:6;;-1:-1:-1;;;;;1038:6:16;;966:85;1178:7;-1:-1:-1;;;;;1178:23:16;;1170:68;;;;-1:-1:-1;;;1170:68:16;;19772:2:19;1170:68:16;;;19754:21:19;;;19791:18;;;19784:30;19850:34;19830:18;;;19823:62;19902:18;;1170:68:16;19570:356:19;1170:68:16;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;2750:95:14:-;1189:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:16;:7;1038:6;;-1:-1:-1;;;;;1038:6:16;;966:85;1178:7;-1:-1:-1;;;;;1178:23:16;;1170:68;;;;-1:-1:-1;;;1170:68:16;;19772:2:19;1170:68:16;;;19754:21:19;;;19791:18;;;19784:30;19850:34;19830:18;;;19823:62;19902:18;;1170:68:16;19570:356:19;1170:68:16;2820:20:14;;::::1;::::0;:12:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2750:95:::0;:::o;2511:102:5:-;2567:13;2599:7;2592:14;;;;;:::i;4015:144:14:-;4108:7;1523:17;;;:7;:17;;;;;:27;4085:8;;1515:67;;;;-1:-1:-1;;;1515:67:14;;14764:2:19;1515:67:14;;;14746:21:19;14803:2;14783:18;;;14776:30;-1:-1:-1;;;14822:18:19;;;14815:53;14885:18;;1515:67:14;14562:347:19;1515:67:14;-1:-1:-1;;4132:22:14::1;::::0;;;:12:::1;:22;::::0;;;;;;4015:144::o;4144:290:5:-;4258:12;:10;:12::i;:::-;-1:-1:-1;;;;;4246:24:5;:8;-1:-1:-1;;;;;4246:24:5;;;4238:62;;;;-1:-1:-1;;;4238:62:5;;15521:2:19;4238:62:5;;;15503:21:19;15560:2;15540:18;;;15533:30;15599:27;15579:18;;;15572:55;15644:18;;4238:62:5;15319:349:19;4238:62:5;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;-1:-1:-1;;;;;4311:32:5;;;;;;;;;;;;;;;;;-1:-1:-1;4311:32:5;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4311:53:5;;;;;;;;;;;4394:12;:10;:12::i;:::-;-1:-1:-1;;;;;4379:48:5;;4418:8;4379:48;;;;10758:14:19;10751:22;10733:41;;10721:2;10706:18;;10593:187;4379:48:5;;;;;;;;4144:290;;:::o;1816:157:14:-;1553:1;1523:17;;;:7;:17;;;;;:27;1908:13;;1885:8;;1515:67;;;;-1:-1:-1;;;1515:67:14;;14764:2:19;1515:67:14;;;14746:21:19;14803:2;14783:18;;;14776:30;-1:-1:-1;;;14822:18:19;;;14815:53;14885:18;;1515:67:14;14562:347:19;1515:67:14;1938:17:::1;::::0;;;:7:::1;:17;::::0;;;;:30:::1;;1931:37:::0;;::::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1816:157:::0;;;;:::o;2849:141::-;2937:7;1523:17;;;:7;:17;;;;;:27;2914:8;;1515:67;;;;-1:-1:-1;;;1515:67:14;;14764:2:19;1515:67:14;;;14746:21:19;14803:2;14783:18;;;14776:30;-1:-1:-1;;;14822:18:19;;;14815:53;14885:18;;1515:67:14;14562:347:19;1515:67:14;-1:-1:-1;;2961:17:14::1;::::0;;;:7:::1;:17;::::0;;;;:24:::1;;::::0;-1:-1:-1;;;;;2961:24:14::1;::::0;2849:141::o;5365:320:5:-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:5;;22038:2:19;5526:103:5;;;22020:21:19;22077:2;22057:18;;;22050:30;22116:34;22096:18;;;22089:62;22187:19;22167:18;;;22160:47;22224:19;;5526:103:5;21836:413:19;5526:103:5;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;2994:148:14:-;1553:1;1523:17;;;:7;:17;;;;;:27;3085:13;;3062:8;;1515:67;;;;-1:-1:-1;;;1515:67:14;;14764:2:19;1515:67:14;;;14746:21:19;14803:2;14783:18;;;14776:30;-1:-1:-1;;;14822:18:19;;;14815:53;14885:18;;1515:67:14;14562:347:19;1515:67:14;3115:17:::1;::::0;;;:7:::1;:17;::::0;;;;:22:::1;;3108:29:::0;;::::1;::::0;::::1;:::i;3360:496::-:0;1189:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:16;:7;1038:6;;-1:-1:-1;;;;;1038:6:16;;966:85;1178:7;-1:-1:-1;;;;;1178:23:16;;1170:68;;;;-1:-1:-1;;;1170:68:16;;19772:2:19;1170:68:16;;;19754:21:19;;;19791:18;;;19784:30;19850:34;19830:18;;;19823:62;19902:18;;1170:68:16;19570:356:19;1170:68:16;3555:4:14::1;3543:8;:16;;:36;;;;;3575:4;3563:8;:16;;3543:36;3535:65;;;::::0;-1:-1:-1;;;3535:65:14;;22869:2:19;3535:65:14::1;::::0;::::1;22851:21:19::0;22908:2;22888:18;;;22881:30;22947:18;22927;;;22920:46;22983:18;;3535:65:14::1;22667:340:19::0;3535:65:14::1;3614:17;::::0;;;:7:::1;:17;::::0;;;;:27;:32;3606:65:::1;;;::::0;-1:-1:-1;;;3606:65:14;;14415:2:19;3606:65:14::1;::::0;::::1;14397:21:19::0;14454:2;14434:18;;;14427:30;14493:22;14473:18;;;14466:50;14533:18;;3606:65:14::1;14213:344:19::0;3606:65:14::1;-1:-1:-1::0;;;;;3685:21:14;::::1;3677:49;;;::::0;-1:-1:-1;;;3677:49:14;;21347:2:19;3677:49:14::1;::::0;::::1;21329:21:19::0;21386:2;21366:18;;;21359:30;21425:17;21405:18;;;21398:45;21460:18;;3677:49:14::1;21145:339:19::0;3677:49:14::1;3753:1;3740:10;:14;3732:45;;;::::0;-1:-1:-1;;;3732:45:14;;21691:2:19;3732:45:14::1;::::0;::::1;21673:21:19::0;21730:2;21710:18;;;21703:30;21769:20;21749:18;;;21742:48;21807:18;;3732:45:14::1;21489:342:19::0;3732:45:14::1;3803:48;::::0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;3803:48:14;;::::1;;::::0;;::::1;::::0;;;;;;;;;;;;;;;-1:-1:-1;3783:17:14;;;:7:::1;:17:::0;;;;;;:68;;;;;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;;3783:68:14::1;::::0;;;::::1;;::::0;;;;;;;3803:48;;3783:17;:68:::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;3783:68:14::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;;;;;;;3360:496:14:o;2063:159::-;1553:1;1523:17;;;:7;:17;;;;;:27;2152:8;;1515:67;;;;-1:-1:-1;;;1515:67:14;;14764:2:19;1515:67:14;;;14746:21:19;14803:2;14783:18;;;14776:30;-1:-1:-1;;;14822:18:19;;;14815:53;14885:18;;1515:67:14;14562:347:19;1515:67:14;1189:12:16::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;1178:23:16::1;:7;1038:6:::0;;-1:-1:-1;;;;;1038:6:16;;966:85;1178:7:::1;-1:-1:-1::0;;;;;1178:23:16::1;;1170:68;;;::::0;-1:-1:-1;;;1170:68:16;;19772:2:19;1170:68:16::1;::::0;::::1;19754:21:19::0;;;19791:18;;;19784:30;19850:34;19830:18;;;19823:62;19902:18;;1170:68:16::1;19570:356:19::0;1170:68:16::1;2180:17:14::2;::::0;;;:7:::2;:17;::::0;;;;;;;:37;;::::2;::::0;:30:::2;::::0;;::::2;::::0;:37;::::2;::::0;::::2;:::i;2226:343::-:0;2292:13;2313:15;2342:12;;2331:8;:23;;;;:::i;:::-;2313:41;;2360:16;2390:12;;2379:8;:23;;;;:::i;:::-;2445:1;2416:16;;;:7;:16;;;;;:26;2360:42;;-1:-1:-1;2408:68:14;;;;-1:-1:-1;;;2408:68:14;;16288:2:19;2408:68:14;;;16270:21:19;16327:2;16307:18;;;16300:30;16366:27;16346:18;;;16339:55;16411:18;;2408:68:14;16086:349:19;2408:68:14;2513:21;2526:7;2513:12;:21::i;:::-;2536:26;2553:8;2536:16;:26::i;:::-;2496:67;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2482:82;;;;2226:343;;;:::o;2573:89::-;2617:13;2645:12;2638:19;;;;;:::i;1426:386:7:-;1647:20;;1686:28;;;;;-1:-1:-1;;;;;9551:55:19;;;1686:28:7;;;9533:74:19;1531:4:7;;1647:20;;;1678:49;;;;1647:20;;1686:21;;9506:18:19;;1686:28:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1678:49:7;;1674:81;;;1744:4;1737:11;;;;;1674:81;-1:-1:-1;;;;;4620:25:5;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;1768:39:7;1761:46;1426:386;-1:-1:-1;;;;1426:386:7:o;1839:189:16:-;1189:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:16;:7;1038:6;;-1:-1:-1;;;;;1038:6:16;;966:85;1178:7;-1:-1:-1;;;;;1178:23:16;;1170:68;;;;-1:-1:-1;;;1170:68:16;;19772:2:19;1170:68:16;;;19754:21:19;;;19791:18;;;19784:30;19850:34;19830:18;;;19823:62;19902:18;;1170:68:16;19570:356:19;1170:68:16;-1:-1:-1;;;;;1927:22:16;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:16;;13294:2:19;1919:73:16::1;::::0;::::1;13276:21:19::0;13333:2;13313:18;;;13306:30;13372:34;13352:18;;;13345:62;13443:8;13423:18;;;13416:36;13469:19;;1919:73:16::1;13092:402:19::0;1919:73:16::1;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;5704:544:14:-;1337:17;;;;:7;:17;;;;;:24;;;:17;;-1:-1:-1;;;;;1337:24:14;1323:10;:38;1315:70;;;;-1:-1:-1;;;1315:70:14;;18294:2:19;1315:70:14;;;18276:21:19;18333:2;18313:18;;;18306:30;18372:21;18352:18;;;18345:49;18411:18;;1315:70:14;18092:343:19;1315:70:14;-1:-1:-1;;;;;5854:22:14;::::1;5846:50;;;::::0;-1:-1:-1;;;5846:50:14;;21347:2:19;5846:50:14::1;::::0;::::1;21329:21:19::0;21386:2;21366:18;;;21359:30;21425:17;21405:18;;;21398:45;21460:18;;5846:50:14::1;21145:339:19::0;5846:50:14::1;5948:22;::::0;;;:12:::1;:22;::::0;;;;;:31:::1;::::0;5973:6;;5948:31:::1;:::i;:::-;5917:17;::::0;;;:7:::1;:17;::::0;;;;:27;:62:::1;;5902:120;;;::::0;-1:-1:-1;;;5902:120:14;;18642:2:19;5902:120:14::1;::::0;::::1;18624:21:19::0;18681:2;18661:18;;;18654:30;18720:29;18700:18;;;18693:57;18767:18;;5902:120:14::1;18440:351:19::0;5902:120:14::1;6044:5:::0;6029:12:::1;6055:189;6079:6;6075:1;:10;6055:189;;;6100:15;6118:32;6135:8;6145:4;6118:16;:32::i;:::-;6158:22;::::0;;;:12:::1;:22;::::0;;;;:24;;6100:50;;-1:-1:-1;6158:22:14;:24:::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;6190:15:14::1;::::0;-1:-1:-1;6198:7:14;6190:15;::::1;:::i;:::-;;;6213:24;6219:8;6229:7;6213:5;:24::i;:::-;-1:-1:-1::0;6087:3:14;::::1;::::0;::::1;:::i;:::-;;;;6055:189;;;;5840:408;5704:544:::0;;;;;:::o;3206:150::-;1553:1;1523:17;;;:7;:17;;;;;:27;3293:8;;1515:67;;;;-1:-1:-1;;;1515:67:14;;14764:2:19;1515:67:14;;;14746:21:19;14803:2;14783:18;;;14776:30;-1:-1:-1;;;14822:18:19;;;14815:53;14885:18;;1515:67:14;14562:347:19;1515:67:14;1189:12:16::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;1178:23:16::1;:7;1038:6:::0;;-1:-1:-1;;;;;1038:6:16;;966:85;1178:7:::1;-1:-1:-1::0;;;;;1178:23:16::1;;1170:68;;;::::0;-1:-1:-1;;;1170:68:16;;19772:2:19;1170:68:16::1;::::0;::::1;19754:21:19::0;;;19791:18;;;19784:30;19850:34;19830:18;;;19823:62;19902:18;;1170:68:16::1;19570:356:19::0;1170:68:16::1;3321:17:14::2;::::0;;;:7:::2;:17;::::0;;;;;;;:30;;::::2;::::0;:22:::2;::::0;;::::2;::::0;:30;::::2;::::0;::::2;:::i;93:529:1:-:0;149:22;185:10;207:4;185:27;181:418;;;222:18;243:8;;222:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;275:8:1;452:17;446:24;-1:-1:-1;;;;;429:107:1;;-1:-1:-1;181:418:1;;-1:-1:-1;181:418:1;;-1:-1:-1;581:10:1;181:418;93:529;:::o;1431:300:5:-;1533:4;-1:-1:-1;;;;;;1568:40:5;;1583:25;1568:40;;:104;;-1:-1:-1;;;;;;;1624:48:5;;1639:33;1624:48;1568:104;:156;;;-1:-1:-1;886:25:4;-1:-1:-1;;;;;;871:40:4;;;1688:36:5;763:155:4;1945:130:7;2015:14;2046:24;:22;:24::i;:::-;2039:31;;1945:130;:::o;11008:171:5:-;11082:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11082:29:5;-1:-1:-1;;;;;11082:29:5;;;;;;;;:24;;11135:23;11082:24;11135:14;:23::i;:::-;-1:-1:-1;;;;;11126:46:5;;;;;;;;;;;11008:171;;:::o;2286:388:15:-;2436:4;-1:-1:-1;;;;;2456:20:15;;2448:70;;;;-1:-1:-1;;;2448:70:15;;16642:2:19;2448:70:15;;;16624:21:19;16681:2;16661:18;;;16654:30;16720:34;16700:18;;;16693:62;16791:7;16771:18;;;16764:35;16816:19;;2448:70:15;16440:401:19;2448:70:15;2553:116;2572:47;2591:27;2611:6;2591:19;:27::i;:::-;2572:18;:47::i;:::-;2553:116;;;;;;;;;;;;11639:25:19;;;;11712:4;11700:17;;11680:18;;;11673:45;11734:18;;;11727:34;;;11777:18;;;11770:34;;;11611:19;;2553:116:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2537:132:15;:6;-1:-1:-1;;;;;2537:132:15;;2524:145;;2286:388;;;;;;;:::o;2672:96:17:-;2730:7;2756:5;2760:1;2756;:5;:::i;:::-;2749:12;2672:96;-1:-1:-1;;;2672:96:17:o;7440:344:5:-;7533:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:5;7549:73;;;;-1:-1:-1;;;7549:73:5;;15875:2:19;7549:73:5;;;15857:21:19;15914:2;15894:18;;;15887:30;15953:34;15933:18;;;15926:62;-1:-1:-1;;;16004:18:19;;;15997:42;16056:19;;7549:73:5;15673:408:19;7549:73:5;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;-1:-1:-1;;;;;7689:16:5;:7;-1:-1:-1;;;;;7689:16:5;;:51;;;;7733:7;-1:-1:-1;;;;;7709:31:5;:20;7721:7;7709:11;:20::i;:::-;-1:-1:-1;;;;;7709:31:5;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;10337:560::-;10491:4;-1:-1:-1;;;;;10464:31:5;:23;10479:7;10464:14;:23::i;:::-;-1:-1:-1;;;;;10464:31:5;;10456:85;;;;-1:-1:-1;;;10456:85:5;;20133:2:19;10456:85:5;;;20115:21:19;20172:2;20152:18;;;20145:30;20211:34;20191:18;;;20184:62;20282:11;20262:18;;;20255:39;20311:19;;10456:85:5;19931:405:19;10456:85:5;-1:-1:-1;;;;;10559:16:5;;10551:65;;;;-1:-1:-1;;;10551:65:5;;15116:2:19;10551:65:5;;;15098:21:19;15155:2;15135:18;;;15128:30;15194:34;15174:18;;;15167:62;15265:6;15245:18;;;15238:34;15289:19;;10551:65:5;14914:400:19;10551:65:5;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;-1:-1:-1;;;;;10768:15:5;;;;;;:9;:15;;;;;:20;;10787:1;;10768:15;:20;;10787:1;;10768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10798:13:5;;;;;;:9;:13;;;;;:18;;10815:1;;10798:13;:18;;10815:1;;10798:18;:::i;:::-;;;;-1:-1:-1;;10826:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10826:21:5;-1:-1:-1;;;;;10826:21:5;;;;;;;;;10863:27;;10826:16;;10863:27;;;;;;;10337:560;;;:::o;2034:169:16:-;2108:6;;;-1:-1:-1;;;;;2124:17:16;;;-1:-1:-1;;;;;;2124:17:16;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2079:124;2034:169;:::o;6547:307:5:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;-1:-1:-1;;;6736:111:5;;12875:2:19;6736:111:5;;;12857:21:19;12914:2;12894:18;;;12887:30;12953:34;12933:18;;;12926:62;13024:20;13004:18;;;12997:48;13062:19;;6736:111:5;12673:414:19;275:703:18;331:13;548:10;544:51;;-1:-1:-1;;574:10:18;;;;;;;;;;;;;;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:18;;-1:-1:-1;720:2:18;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:18;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:18;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;919:11:18;928:2;919:11;;:::i;:::-;;;791:150;;4208:1395:14;4284:7;4299:17;4339:1;4329:6;;4321:5;:14;;;;:::i;:::-;4320:20;;;;:::i;:::-;4319:26;;4344:1;4319:26;:::i;:::-;4299:46;;4351:19;4374:13;1621:10:6;:17;;1534:111;4374:13:14;:18;:60;;4403:31;4432:1;4416:13;1621:10:6;:17;;1534:111;4416:13:14;:17;;;;:::i;4403:31::-;4374:60;;;4395:5;4374:60;4351:84;;4447:9;4442:300;4466:9;4462:1;:13;4442:300;;;4725:10;4570:8;4592:6;;4612:9;;4635:13;1621:10:6;:17;;1534:111;4635:13:14;4540:164;;;;;;9141:19:19;;;;9176:12;;9169:28;;;;9213:12;;;9206:28;9250:12;;;9243:28;9287:13;;;9280:29;;;9325:13;;;9318:29;;;9363:13;;4540:164:14;;;;;;;;;;;;4519:195;;;;;;4502:220;;:233;;;;:::i;:::-;4490:9;:245;4477:3;;;;:::i;:::-;;;;4442:300;;;;4758:9;;4748:6;;:19;;;;;;;:::i;:::-;;;;;;;;4783:10;4773:6;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;4863:22:14;4918;;;:12;:22;;;;;;;;;4888:7;:17;;;;;:27;:52;;4918:22;4888:52;:::i;:::-;4863:77;;4946:17;4979:14;4967:9;;:26;;;;:::i;:::-;4966:32;;4997:1;4966:32;:::i;:::-;5004:14;5022:21;;;:11;:21;;;;;;;;:32;;;;;;;;;4946:52;;-1:-1:-1;5004:14:14;5022:89;;5102:9;5022:89;;;5067:21;;;;:11;:21;;;;;;;;:32;;;;;;;;;5022:89;5118:12;5134:21;;;:11;:21;;;;;;;;:37;;;;;;;;;5004:108;;-1:-1:-1;5118:12:14;5134:104;;5224:14;5134:104;;;5184:21;;;;:11;:21;;;;;;;;:37;;;;;;;;;5134:104;5409:21;;;;:11;:21;;;;;;;;:32;;;;;;;;;:39;;;5454:37;;;;;:46;;;5576:12;;5409:39;;-1:-1:-1;5454:46:14;;5565:23;;5409:21;5565:23;:::i;:::-;5564:34;;;;:::i;:::-;5557:41;4208:1395;-1:-1:-1;;;;;;;;;4208:1395:14:o;9076:372:5:-;-1:-1:-1;;;;;9155:16:5;;9147:61;;;;-1:-1:-1;;;9147:61:5;;18998:2:19;9147:61:5;;;18980:21:19;;;19017:18;;;19010:30;19076:34;19056:18;;;19049:62;19128:18;;9147:61:5;18796:356:19;9147:61:5;7222:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:5;:30;9218:58;;;;-1:-1:-1;;;9218:58:5;;14058:2:19;9218:58:5;;;14040:21:19;14097:2;14077:18;;;14070:30;14136;14116:18;;;14109:58;14184:18;;9218:58:5;13856:352:19;9218:58:5;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;-1:-1:-1;;;;;9343:13:5;;;;;;:9;:13;;;;;:18;;9360:1;;9343:13;:18;;9360:1;;9343:18;:::i;:::-;;;;-1:-1:-1;;9371:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9371:21:5;-1:-1:-1;;;;;9371:21:5;;;;;;;;9408:33;;9371:16;;;9408:33;;9371:16;;9408:33;9076:372;;:::o;1871:308:15:-;1966:7;292:88;;;;;;;;;;;;;;;;;277:107;;;;;;;2074:12;;2098:11;;;;2131:24;;;;;2121:35;;;;;;2015:151;;;;;11198:25:19;;;11254:2;11239:18;;11232:34;;;;-1:-1:-1;;;;;11302:55:19;11297:2;11282:18;;11275:83;11389:2;11374:18;;11367:34;11185:3;11170:19;;10967:440;2015:151:15;;;;;;;;;;;;;1996:178;;;;;;1983:191;;1871:308;;;:::o;1704:209:3:-;1788:7;1866:20;1199:15;;;1126:93;1866:20;1837:63;;8693:66:19;1837:63:3;;;8681:79:19;8776:11;;;8769:27;;;;8812:12;;;8805:28;;;8849:12;;1837:63:3;8423:444:19;2543:572:6;-1:-1:-1;;;;;2742:18:6;;2738:183;;2776:40;2808:7;3924:10;:17;;3897:24;;;;:15;:24;;;;;:44;;;3951:24;;;;;;;;;;;;3821:161;2776:40;2738:183;;;2845:2;-1:-1:-1;;;;;2837:10:6;:4;-1:-1:-1;;;;;2837:10:6;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;-1:-1:-1;;;;;2934:16:6;;2930:179;;2966:45;3003:7;2966:36;:45::i;2930:179::-;3038:4;-1:-1:-1;;;;;3032:10:6;:2;-1:-1:-1;;;;;3032:10:6;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;11732:778:5:-;11882:4;-1:-1:-1;;;;;11902:13:5;;1034:20:0;1080:8;11898:606:5;;11953:2;-1:-1:-1;;;;;11937:36:5;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11937:72:5;;;;;;;;-1:-1:-1;;11937:72:5;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12176:13:5;;12172:266;;12218:60;;-1:-1:-1;;;12218:60:5;;12875:2:19;12218:60:5;;;12857:21:19;12914:2;12894:18;;;12887:30;12953:34;12933:18;;;12926:62;13024:20;13004:18;;;12997:48;13062:19;;12218:60:5;12673:414:19;12172:266:5;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;-1:-1:-1;;;;;;12059:51:5;12069:41;12059:51;;-1:-1:-1;12052:58:5;;11898:606;-1:-1:-1;12489:4:5;11732:778;;;;;;:::o;4599:970:6:-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4922:18;4943:26;;;:17;:26;;;;;;4861:51;;-1:-1:-1;5073:28:6;;;5069:323;;-1:-1:-1;;;;;5139:18:6;;5117:19;5139:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5188:30;;;;;;:44;;;5304:30;;:17;:30;;;;;:43;;;5069:323;-1:-1:-1;5485:26:6;;;;:17;:26;;;;;;;;5478:33;;;-1:-1:-1;;;;;5528:18:6;;;;;:12;:18;;;;;:34;;;;;;;5521:41;4599:970::o;5857:1061::-;6131:10;:17;6106:22;;6131:21;;6151:1;;6131:21;:::i;:::-;6162:18;6183:24;;;:15;:24;;;;;;6551:10;:26;;6106:46;;-1:-1:-1;6183:24:6;;6106:46;;6551:26;;;;;;:::i;:::-;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6692:28;;;:15;:28;;;;;;;:41;;;6861:24;;;;;6854:31;6895:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5928:990;;;5857:1061;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;-1:-1:-1;;;;;3540:16:6;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3584:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3409:217:6:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:718:19;56:5;109:3;102:4;94:6;90:17;86:27;76:55;;127:1;124;117:12;76:55;163:6;150:20;189:18;226:2;222;219:10;216:36;;;232:18;;:::i;:::-;307:2;301:9;275:2;361:13;;-1:-1:-1;;357:22:19;;;381:2;353:31;349:40;337:53;;;405:18;;;425:22;;;402:46;399:72;;;451:18;;:::i;:::-;491:10;487:2;480:22;526:2;518:6;511:18;572:3;565:4;560:2;552:6;548:15;544:26;541:35;538:55;;;589:1;586;579:12;538:55;653:2;646:4;638:6;634:17;627:4;619:6;615:17;602:54;700:1;693:4;688:2;680:6;676:15;672:26;665:37;720:6;711:15;;;;;;14:718;;;;:::o;737:247::-;796:6;849:2;837:9;828:7;824:23;820:32;817:52;;;865:1;862;855:12;817:52;904:9;891:23;923:31;948:5;923:31;:::i;989:388::-;1057:6;1065;1118:2;1106:9;1097:7;1093:23;1089:32;1086:52;;;1134:1;1131;1124:12;1086:52;1173:9;1160:23;1192:31;1217:5;1192:31;:::i;:::-;1242:5;-1:-1:-1;1299:2:19;1284:18;;1271:32;1312:33;1271:32;1312:33;:::i;:::-;1364:7;1354:17;;;989:388;;;;;:::o;1382:456::-;1459:6;1467;1475;1528:2;1516:9;1507:7;1503:23;1499:32;1496:52;;;1544:1;1541;1534:12;1496:52;1583:9;1570:23;1602:31;1627:5;1602:31;:::i;:::-;1652:5;-1:-1:-1;1709:2:19;1694:18;;1681:32;1722:33;1681:32;1722:33;:::i;:::-;1382:456;;1774:7;;-1:-1:-1;;;1828:2:19;1813:18;;;;1800:32;;1382:456::o;1843:665::-;1938:6;1946;1954;1962;2015:3;2003:9;1994:7;1990:23;1986:33;1983:53;;;2032:1;2029;2022:12;1983:53;2071:9;2058:23;2090:31;2115:5;2090:31;:::i;:::-;2140:5;-1:-1:-1;2197:2:19;2182:18;;2169:32;2210:33;2169:32;2210:33;:::i;:::-;2262:7;-1:-1:-1;2316:2:19;2301:18;;2288:32;;-1:-1:-1;2371:2:19;2356:18;;2343:32;2398:18;2387:30;;2384:50;;;2430:1;2427;2420:12;2384:50;2453:49;2494:7;2485:6;2474:9;2470:22;2453:49;:::i;:::-;2443:59;;;1843:665;;;;;;;:::o;2513:416::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:52;;;2655:1;2652;2645:12;2607:52;2694:9;2681:23;2713:31;2738:5;2713:31;:::i;:::-;2763:5;-1:-1:-1;2820:2:19;2805:18;;2792:32;2862:15;;2855:23;2843:36;;2833:64;;2893:1;2890;2883:12;2934:758;3036:6;3044;3052;3060;3068;3121:3;3109:9;3100:7;3096:23;3092:33;3089:53;;;3138:1;3135;3128:12;3089:53;3177:9;3164:23;3196:31;3221:5;3196:31;:::i;:::-;3246:5;-1:-1:-1;3302:2:19;3287:18;;3274:32;3329:18;3318:30;;3315:50;;;3361:1;3358;3351:12;3315:50;3384:49;3425:7;3416:6;3405:9;3401:22;3384:49;:::i;:::-;3374:59;;;3480:2;3469:9;3465:18;3452:32;3442:42;;3531:2;3520:9;3516:18;3503:32;3493:42;;3587:3;3576:9;3572:19;3559:33;3636:4;3627:7;3623:18;3614:7;3611:31;3601:59;;3656:1;3653;3646:12;3601:59;3679:7;3669:17;;;2934:758;;;;;;;;:::o;3697:315::-;3765:6;3773;3826:2;3814:9;3805:7;3801:23;3797:32;3794:52;;;3842:1;3839;3832:12;3794:52;3881:9;3868:23;3900:31;3925:5;3900:31;:::i;:::-;3950:5;4002:2;3987:18;;;;3974:32;;-1:-1:-1;;;3697:315:19:o;4017:452::-;4103:6;4111;4119;4127;4180:3;4168:9;4159:7;4155:23;4151:33;4148:53;;;4197:1;4194;4187:12;4148:53;4236:9;4223:23;4255:31;4280:5;4255:31;:::i;:::-;4305:5;4357:2;4342:18;;4329:32;;-1:-1:-1;4408:2:19;4393:18;;4380:32;;4459:2;4444:18;4431:32;;-1:-1:-1;4017:452:19;-1:-1:-1;;;4017:452:19:o;4474:245::-;4532:6;4585:2;4573:9;4564:7;4560:23;4556:32;4553:52;;;4601:1;4598;4591:12;4553:52;4640:9;4627:23;4659:30;4683:5;4659:30;:::i;4724:249::-;4793:6;4846:2;4834:9;4825:7;4821:23;4817:32;4814:52;;;4862:1;4859;4852:12;4814:52;4894:9;4888:16;4913:30;4937:5;4913:30;:::i;4978:280::-;5077:6;5130:2;5118:9;5109:7;5105:23;5101:32;5098:52;;;5146:1;5143;5136:12;5098:52;5178:9;5172:16;5197:31;5222:5;5197:31;:::i;5263:321::-;5332:6;5385:2;5373:9;5364:7;5360:23;5356:32;5353:52;;;5401:1;5398;5391:12;5353:52;5441:9;5428:23;5474:18;5466:6;5463:30;5460:50;;;5506:1;5503;5496:12;5460:50;5529:49;5570:7;5561:6;5550:9;5546:22;5529:49;:::i;5589:180::-;5648:6;5701:2;5689:9;5680:7;5676:23;5672:32;5669:52;;;5717:1;5714;5707:12;5669:52;-1:-1:-1;5740:23:19;;5589:180;-1:-1:-1;5589:180:19:o;5774:389::-;5852:6;5860;5913:2;5901:9;5892:7;5888:23;5884:32;5881:52;;;5929:1;5926;5919:12;5881:52;5965:9;5952:23;5942:33;;6026:2;6015:9;6011:18;5998:32;6053:18;6045:6;6042:30;6039:50;;;6085:1;6082;6075:12;6039:50;6108:49;6149:7;6140:6;6129:9;6125:22;6108:49;:::i;:::-;6098:59;;;5774:389;;;;;:::o;6168:814::-;6283:6;6291;6299;6307;6315;6368:3;6356:9;6347:7;6343:23;6339:33;6336:53;;;6385:1;6382;6375:12;6336:53;6421:9;6408:23;6398:33;;6482:2;6471:9;6467:18;6454:32;6505:18;6546:2;6538:6;6535:14;6532:34;;;6562:1;6559;6552:12;6532:34;6585:49;6626:7;6617:6;6606:9;6602:22;6585:49;:::i;:::-;6575:59;;6681:2;6670:9;6666:18;6653:32;6643:42;;6735:2;6724:9;6720:18;6707:32;6694:45;;6748:31;6773:5;6748:31;:::i;:::-;6798:5;;-1:-1:-1;6856:3:19;6841:19;;6828:33;;6873:16;;;6870:36;;;6902:1;6899;6892:12;6870:36;;6925:51;6968:7;6957:8;6946:9;6942:24;6925:51;:::i;:::-;6915:61;;;6168:814;;;;;;;;:::o;6987:257::-;7028:3;7066:5;7060:12;7093:6;7088:3;7081:19;7109:63;7165:6;7158:4;7153:3;7149:14;7142:4;7135:5;7131:16;7109:63;:::i;:::-;7226:2;7205:15;-1:-1:-1;;7201:29:19;7192:39;;;;7233:4;7188:50;;6987:257;-1:-1:-1;;6987:257:19:o;7249:274::-;7378:3;7416:6;7410:13;7432:53;7478:6;7473:3;7466:4;7458:6;7454:17;7432:53;:::i;:::-;7501:16;;;;;7249:274;-1:-1:-1;;7249:274:19:o;7528:415::-;7685:3;7723:6;7717:13;7739:53;7785:6;7780:3;7773:4;7765:6;7761:17;7739:53;:::i;:::-;7861:2;7857:15;;;;-1:-1:-1;;7853:53:19;7814:16;;;;7839:68;;;7934:2;7923:14;;7528:415;-1:-1:-1;;7528:415:19:o;7948:470::-;8127:3;8165:6;8159:13;8181:53;8227:6;8222:3;8215:4;8207:6;8203:17;8181:53;:::i;:::-;8297:13;;8256:16;;;;8319:57;8297:13;8256:16;8353:4;8341:17;;8319:57;:::i;:::-;8392:20;;7948:470;-1:-1:-1;;;;7948:470:19:o;9618:454::-;9800:4;-1:-1:-1;;;;;9910:2:19;9902:6;9898:15;9887:9;9880:34;9962:2;9954:6;9950:15;9945:2;9934:9;9930:18;9923:43;;10002:2;9997;9986:9;9982:18;9975:30;10022:44;10062:2;10051:9;10047:18;10039:6;10022:44;:::i;:::-;10014:52;9618:454;-1:-1:-1;;;;;9618:454:19:o;10077:511::-;10271:4;-1:-1:-1;;;;;10381:2:19;10373:6;10369:15;10358:9;10351:34;10433:2;10425:6;10421:15;10416:2;10405:9;10401:18;10394:43;;10473:6;10468:2;10457:9;10453:18;10446:34;10516:3;10511:2;10500:9;10496:18;10489:31;10537:45;10577:3;10566:9;10562:19;10554:6;10537:45;:::i;:::-;10529:53;10077:511;-1:-1:-1;;;;;;10077:511:19:o;11815:217::-;11962:2;11951:9;11944:21;11925:4;11982:44;12022:2;12011:9;12007:18;11999:6;11982:44;:::i;23194:128::-;23234:3;23265:1;23261:6;23258:1;23255:13;23252:39;;;23271:18;;:::i;:::-;-1:-1:-1;23307:9:19;;23194:128::o;23327:120::-;23367:1;23393;23383:35;;23398:18;;:::i;:::-;-1:-1:-1;23432:9:19;;23327:120::o;23452:168::-;23492:7;23558:1;23554;23550:6;23546:14;23543:1;23540:21;23535:1;23528:9;23521:17;23517:45;23514:71;;;23565:18;;:::i;:::-;-1:-1:-1;23605:9:19;;23452:168::o;23625:125::-;23665:4;23693:1;23690;23687:8;23684:34;;;23698:18;;:::i;:::-;-1:-1:-1;23735:9:19;;23625:125::o;23755:258::-;23827:1;23837:113;23851:6;23848:1;23845:13;23837:113;;;23927:11;;;23921:18;23908:11;;;23901:39;23873:2;23866:10;23837:113;;;23968:6;23965:1;23962:13;23959:48;;;-1:-1:-1;;24003:1:19;23985:16;;23978:27;23755:258::o;24018:437::-;24097:1;24093:12;;;;24140;;;24161:61;;24215:4;24207:6;24203:17;24193:27;;24161:61;24268:2;24260:6;24257:14;24237:18;24234:38;24231:218;;;-1:-1:-1;;;24302:1:19;24295:88;24406:4;24403:1;24396:15;24434:4;24431:1;24424:15;24460:135;24499:3;-1:-1:-1;;24520:17:19;;24517:43;;;24540:18;;:::i;:::-;-1:-1:-1;24587:1:19;24576:13;;24460:135::o;24600:112::-;24632:1;24658;24648:35;;24663:18;;:::i;:::-;-1:-1:-1;24697:9:19;;24600:112::o;24717:184::-;-1:-1:-1;;;24766:1:19;24759:88;24866:4;24863:1;24856:15;24890:4;24887:1;24880:15;24906:184;-1:-1:-1;;;24955:1:19;24948:88;25055:4;25052:1;25045:15;25079:4;25076:1;25069:15;25095:184;-1:-1:-1;;;25144:1:19;25137:88;25244:4;25241:1;25234:15;25268:4;25265:1;25258:15;25284:184;-1:-1:-1;;;25333:1:19;25326:88;25433:4;25430:1;25423:15;25457:4;25454:1;25447:15;25473:184;-1:-1:-1;;;25522:1:19;25515:88;25622:4;25619:1;25612:15;25646:4;25643:1;25636:15;25662:154;-1:-1:-1;;;;;25741:5:19;25737:54;25730:5;25727:65;25717:93;;25806:1;25803;25796:12;25821:177;-1:-1:-1;;;;;;25899:5:19;25895:78;25888:5;25885:89;25875:117;;25988:1;25985;25978:12

Swarm Source

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