ETH Price: $3,059.12 (+2.58%)
Gas: 1 Gwei

Token

DogeTVHeads ($DGTVNFT)
 

Overview

Max Total Supply

499 $DGTVNFT

Holders

156

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 $DGTVNFT
0x75b5094a825a24f30b4f27e4d582d71d50ee0bfd
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:
dgtvAutostaking

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 6 of 20: DgTvAutostaking.sol
//SPDX-License-Identifier: Copyright Grobat
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./ERC721Burnable.sol";
import "./ERC721Pausable.sol";
import "./ERC721URIStorage.sol";
import "./AccessControlEnumerable.sol";
import "./Context.sol";
import "./Strings.sol";
import "./Counters.sol";



interface IERC20 {
    function totalSupply() external view returns (uint256);
    function decimals() external view returns (uint8);
    function symbol() external view returns (string memory);
    function name() external view returns (string memory);
    function getOwner() external view returns (address);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address _owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

interface IDEXRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

interface IDividendDistributor {
    function addShare(address shareholder) external payable;
    function deposit() external payable;
    function process(uint256 gas) external;
    function getUnpaidEarnings(address autostakingcontract) external view returns (uint256);
    function distributeToken() external;
    function setContractInitial(address contadmin) external payable;
    function setMintedOut(address mintedOutContract)external;
    function addMintingShare(address NftContract) external payable;
}

interface IAutostakingContract {
    function getMaxSupply() external view returns (uint max);
    function getMinted() external view returns (uint minted);
    function getStoragePrice() external view  returns (uint storagePrice);
    function getMintPrice() external view returns (uint mintPrice);
    function excludeFromrewardMultiple(address[] calldata Adds) external;
    function getReflectionBalances() external view returns(uint256);
    function claimRewards() external;
    function recoverStuckToken (IERC20 token) external;
    function claimTokens () external;
    function mintMany(uint256 quantity) external payable;
    function setMintingEnabled(bool Allowed) external;
}

/**
 * @dev {ERC721} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - token ID and URI autogenerationA
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract dgtvAutostaking is Context, AccessControlEnumerable, ERC721Enumerable, ERC721URIStorage, IAutostakingContract{
  using Counters for Counters.Counter;
  
  
  Counters.Counter public _tokenIdTracker;

  string private _baseTokenURI;
  string public _contractMeta;
  uint private _tokenPrice = 3 * 10**17;
  uint private _price = 1 * 10**16; 
  uint public maxSupply = 1000;
  address private _admin;
  IDEXRouter public router;
  bool public canMint = false;
  uint public mintPercentage;
  uint256 public totalReflectionVolume;
  uint256 public totalCollected;
  uint256 devpercent = 80;
  bool public isAutostaking = true;
  address WETH;
  address deadAddress = 0x000000000000000000000000000000000000dEaD;
  address public devFeeReciever;
  //address public DGTV = 0xFEb6d5238Ed8F1d59DCaB2db381AA948e625966D;
  address public DGTV = 0xFEb6d5238Ed8F1d59DCaB2db381AA948e625966D;//goerli
  
  uint256 public reflectionBalance;
  uint256 public totalDividend;

  mapping(uint256 => uint256) lastDividendAt;
  mapping (uint256 => address ) public creator;
  mapping (address => bool) public excludedFromRewards; 

  uint256 private mintAMount = 100;
  uint256 public totalrewards = 0;



  constructor(string memory name, string memory symbol, uint mintPrice, address admin) ERC721(name, symbol) {
      _tokenPrice = mintPrice;
      maxSupply = 100;
      _admin = admin;
      router = IDEXRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //Mainnet
      _setupRole(DEFAULT_ADMIN_ROLE, admin);
      _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
      WETH = address(router.WETH());
  }

  receive () external payable {
  }

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

  function SetcontractURI(string calldata URI) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: only the distributor can add this meta");
        _contractMeta = URI;
  }

  function getMinted() external view override returns (uint minted){
    return _tokenIdTracker.current();
  }

  function getMaxSupply() external view override returns (uint max){
    return maxSupply;
  }


  function getStoragePrice() external view override returns (uint storagePrice){
    return _price;
  }

  function getMintPrice() external view override returns (uint mintPrice){
    return _tokenPrice;
  }

  function setMintPrice(uint amount, uint decimals) external{
    _tokenPrice = amount * 10 ** decimals;
  }

  function setAdditionalAdmin(address newAdmin) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to add admins");
    _setupRole(DEFAULT_ADMIN_ROLE, newAdmin);
  } 

  function excludeFromrewardMultiple(address[] calldata Adds) external override {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have distributor role to add exclusions");
    for(uint i = 0; i< Adds.length; i++){
      excludedFromRewards[Adds[i]] = true;
    }
  } 

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


  function setBaseURI(string memory baseURI) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to change base URI");
    _baseTokenURI = baseURI;
  }

  function setTokenURI(uint256 tokenId, string memory _tokenURI) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to change token URI");
    _setTokenURI(tokenId, _tokenURI);
  }

  function setMintingEnabled(bool Allowed) external override {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to change minting ability");
    canMint = Allowed;
  }


  function getServiceFee() external view returns(uint256){
    return _price;
  }
 
   function mint() external payable {
    require(canMint, "autostaking: minting currently disabled");
    require(msg.value >= (_tokenPrice), "autostaking: must send correct price");
    require((_tokenIdTracker.current() + 1) < maxSupply, "autostaking: all autostaking have been minted");

    _mint(msg.sender, _tokenIdTracker.current());
    creator[_tokenIdTracker.current()] = msg.sender;
    lastDividendAt[_tokenIdTracker.current()] = totalDividend;
    _setTokenURI(_tokenIdTracker.current(), string(abi.encodePacked(Strings.toString(_tokenIdTracker.current()), ".json")));
    _tokenIdTracker.increment();
    splitBalance(1);
  }

  function mintMany(uint256 quantity) external payable override {
    require(canMint, "autostaking: minting currently disabled");
    require (quantity < 11, "autostaking: minting more than 10 is prohibited");
    require(msg.value >= (quantity * _tokenPrice), "autostaking: must send correct price");
    require((_tokenIdTracker.current() + quantity) < maxSupply, "autostaking: all autostaking have been minted");
    for(uint i = 0; i < quantity; i++){
      _mint(msg.sender, _tokenIdTracker.current());
      creator[_tokenIdTracker.current()] = msg.sender;
      lastDividendAt[_tokenIdTracker.current()] = totalDividend;
      _setTokenURI(_tokenIdTracker.current(), string(abi.encodePacked(Strings.toString(_tokenIdTracker.current()), ".json")));
      _tokenIdTracker.increment();
    }
    splitBalance(quantity);
  }
  
  function mintMultiples(address[] calldata recipients)public {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to initial mint");
        for (uint256 i = 0; i < recipients.length; i++){
      _mint(recipients[i], _tokenIdTracker.current());
      creator[_tokenIdTracker.current()] = recipients[i];
      lastDividendAt[_tokenIdTracker.current()] = totalDividend;
      _setTokenURI(_tokenIdTracker.current(), string(abi.encodePacked(Strings.toString(_tokenIdTracker.current()), ".json")));
      _tokenIdTracker.increment();
    }
  }

  function NftCreator(uint256 tokenId) public view returns(address){
    return creator[tokenId];
  }

  function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) {
    return ERC721URIStorage._burn(tokenId);
  }

  function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
    return ERC721URIStorage.tokenURI(tokenId);
  }
  
  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Enumerable) {
    if (totalSupply() > tokenId) claimReward(tokenId);
    super._beforeTokenTransfer(from, to, tokenId);
  }

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

  function currentRate() public view returns (uint256){
      if(totalSupply() == 0) return 0;
      return reflectionBalance/totalSupply();
  }

  function claimRewards() public override{
    uint count = balanceOf(msg.sender);
    uint256 total = 0;
    for(uint i=0; i < count; i++){
        uint tokenId = tokenOfOwnerByIndex(msg.sender, i);
        //claimReward(tokenId);
        total += getReflectionBalance(tokenId);
        lastDividendAt[tokenId] = totalDividend;
    }
    if(total > 0){
        IERC20(DGTV).transfer(msg.sender, total);
        reflectionBalance -= total;
    }
  }

  function claimReward(uint tokenId) internal {
    uint256 total = getReflectionBalance(tokenId);
    if(total > 0){
      reflectionBalance -= total;
      if(!excludedFromRewards[ownerOf(tokenId)]){
          IERC20(DGTV).transfer(ownerOf(tokenId), total);
      }else{
        reflectDividend(total);
      }
      lastDividendAt[tokenId] = totalDividend;
    }
  }

  function getReflectionBalances() public view override returns(uint256) {
    uint count = balanceOf(msg.sender);
    uint256 total = 0;
    for(uint i=0; i < count; i++){
        uint tokenId = tokenOfOwnerByIndex(msg.sender, i);
        total += getReflectionBalance(tokenId);
    }
    return total;
  }

  function add100() external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to change this");
    if(maxSupply <= 1000){
      maxSupply += 100;
    }
    
  }

  function claimTokens () external override {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to claim the balance");
    // make sure we capture all BNB that may or may not be sent to this contract
    payable(_admin).transfer(address(this).balance);
  }

  function setDevFeereciever (address receiver) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to set artist wallet");
    // make sure we capture all BNB that may or may not be sent to this contract
    
    devFeeReciever = receiver;
  }

  function recoverStuckToken (IERC20 token) external override{
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "autostaking: must have admin role to claim the balance");
    // make sure we capture all BNB that may or may not be sent to this contract
    require(address(token) != DGTV, "Cant remove reflects");
    token.transfer(msg.sender, token.balanceOf(address(this)));
  }

  function getReflectionBalance(uint256 tokenId) public view returns (uint256){
      return totalDividend - lastDividendAt[tokenId];
  }

  function deposit(uint amount)public {
    uint256 balance = IERC20(DGTV).balanceOf(address(this));
    require(reflectionBalance + amount <= balance, "must send token first");
    reflectDividend(balance - reflectionBalance);
  }

  function splitBalance(uint256 amount) private {
      uint tokenAmount = amount * _tokenPrice; // get the total token price to sell for reflection purchases
      uint totaltoDistribute = tokenAmount;
      uint256 devValue = totaltoDistribute * devpercent /100;
      payable(devFeeReciever).transfer(devValue);
      address[] memory path = new address[](2);
                path[1] = DGTV;
                path[0] = router.WETH();
      router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: totaltoDistribute - devValue}(0, path, deadAddress, block.timestamp + 3);
  }

  function reflectDividend(uint256 amount) private {
    reflectionBalance  = reflectionBalance + amount;
    totalDividend = totalDividend + (amount/totalSupply());
    totalCollected += amount;
    totalReflectionVolume += amount;
  } 
}

File 1 of 20: AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";
import "./ERC165.sol";


/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping (address => bool) members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 2 of 20: AccessControlEnumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./AccessControl.sol";
import "./EnumerableSet.sol";


/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable {
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping (bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account) internal virtual override {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}

File 3 of 20: 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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 4 of 20: 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 5 of 20: Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }
}

File 7 of 20: EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

File 8 of 20: 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 9 of 20: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.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}. 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 || ERC721.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 || ERC721.isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

File 10 of 20: ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 11 of 20: 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 12 of 20: ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Pausable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

File 13 of 20: ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";

/**
 * @dev ERC721 token with storage based token uri management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 14 of 20: 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 15 of 20: 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 16 of 20: 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 17 of 20: 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 18 of 20: 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 19 of 20: Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[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":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"address","name":"admin","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":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DGTV","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NftCreator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"SetcontractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_contractMeta","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenIdTracker","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"add100","outputs":[],"stateMutability":"nonpayable","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":[],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devFeeReciever","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"Adds","type":"address[]"}],"name":"excludeFromrewardMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinted","outputs":[{"internalType":"uint256","name":"minted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getReflectionBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReflectionBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getServiceFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStoragePrice","outputs":[{"internalType":"uint256","name":"storagePrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAutostaking","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintMany","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"mintMultiples","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"recoverStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reflectionBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IDEXRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"setAdditionalAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"setDevFeereciever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"decimals","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"Allowed","type":"bool"}],"name":"setMintingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCollected","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividend","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReflectionVolume","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalrewards","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"},{"stateMutability":"payable","type":"receive"}]

6080604052670429d069189e0000601055662386f26fc100006011556103e86012556014805460ff60a01b1916905560506018556019805460ff19166001179055601a80546001600160a01b031990811661dead17909155601c805490911673feb6d5238ed8f1d59dcab2db381aa948e625966d179055606460225560006023553480156200008d57600080fd5b506040516200458a3803806200458a833981016040819052620000b091620004fa565b835184908490620000c990600290602085019062000362565b508051620000df90600390602084019062000362565b50505060108290556064601255601380546001600160a01b0383166001600160a01b03199182161790915560148054909116737a250d5630b4cf539739df2c5dacb4c659f2488d17905562000136600082620001fd565b62000143600033620001fd565b601460009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200019257600080fd5b505afa158015620001a7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cd9190620004dc565b601960016101000a8154816001600160a01b0302191690836001600160a01b0316021790555050505050620005d3565b6200021482826200024060201b62001fdf1760201c565b60008281526001602090815260409091206200023b91839062001fe962000250821b17901c565b505050565b6200024c828262000270565b5050565b600062000267836001600160a01b03841662000310565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166200024c576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620002cc3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205462000359575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200026a565b5060006200026a565b828054620003709062000580565b90600052602060002090601f016020900481019282620003945760008555620003df565b82601f10620003af57805160ff1916838001178555620003df565b82800160010185558215620003df579182015b82811115620003df578251825591602001919060010190620003c2565b50620003ed929150620003f1565b5090565b5b80821115620003ed5760008155600101620003f2565b80516001600160a01b03811681146200042057600080fd5b919050565b600082601f8301126200043757600080fd5b81516001600160401b0380821115620004545762000454620005bd565b604051601f8301601f19908116603f011681019082821181831017156200047f576200047f620005bd565b816040528381526020925086838588010111156200049c57600080fd5b600091505b83821015620004c05785820183015181830184015290820190620004a1565b83821115620004d25760008385830101525b9695505050505050565b600060208284031215620004ef57600080fd5b620002678262000408565b600080600080608085870312156200051157600080fd5b84516001600160401b03808211156200052957600080fd5b620005378883890162000425565b955060208701519150808211156200054e57600080fd5b506200055d8782880162000425565b93505060408501519150620005756060860162000408565b905092959194509250565b600181811c908216806200059557607f821691505b60208210811415620005b757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613fa780620005e36000396000f3fe6080604052600436106103dc5760003560e01c80636352211e116101fd578063ac72200d11610118578063d547741f116100ab578063e985e9c51161007a578063e985e9c514610ad9578063f747fb8814610b22578063f82f235f14610b42578063f887ea4014610b72578063f9f8bdb714610b9257600080fd5b8063d547741f14610a78578063d5abeb0114610a98578063e29eb83614610aae578063e8a3d48514610ac457600080fd5b8063beb9716d116100e7578063beb9716d146109f7578063c87b56dd14610a18578063c9a7f8ad14610a38578063ca15c87314610a5857600080fd5b8063ac72200d1461096d578063b6b55f2514610982578063b7530819146109a2578063b88d4fde146109d757600080fd5b8063926f353b11610190578063a22cb4651161015f578063a22cb4651461090c578063a7f93ebd1461092c578063a9c6c9e114610941578063ac5c845b1461095757600080fd5b8063926f353b146108ab57806395d89b41146108cb57806398bcede9146108e0578063a217fddf146108f757600080fd5b80638dd37d36116101cc5780638dd37d36146108315780639010d07c14610851578063901f53581461087157806391d148541461088b57600080fd5b80636352211e146107b1578063653088cf146107d157806370a08231146107f157806389c343b61461081157600080fd5b8063262d75df116102f857806343e61a411161028b5780634ea3871a1161025a5780634ea3871a146107065780634f6ccce714610726578063510b51581461074657806355f804b31461077b57806360876ba71461079b57600080fd5b806343e61a41146106b157806348c54b9d146106c65780634b6acafb146106db5780634c0f38c2146106f157600080fd5b806336568abe116102c757806336568abe14610646578063372500ab146106665780634131ff991461067b57806342842e0e1461069157600080fd5b8063262d75df146105245780632f2ff15d146105e65780632f745c59146106065780632f9bc9811461062657600080fd5b80630b9267b71161037057806318160ddd1161033f57806318160ddd146105615780631e1a1e761461057657806323b872dd14610596578063248a9ca3146105b657600080fd5b80630b9267b71461050f57806311a1933c146105245780631249c58b14610539578063162094c41461054157600080fd5b8063059513a6116103ac578063059513a61461048257806306fdde0314610495578063081812fc146104b7578063095ea7b3146104ef57600080fd5b8062fe50c6146103e857806301eb99ec1461041b57806301ffc9a7146104305780630442bfa81461046057600080fd5b366103e357005b600080fd5b3480156103f457600080fd5b5061040861040336600461383b565b610ba7565b6040519081526020015b60405180910390f35b34801561042757600080fd5b50610408610bc9565b34801561043c57600080fd5b5061045061044b36600461389b565b610c21565b6040519015158152602001610412565b34801561046c57600080fd5b5061048061047b366004613879565b610c2c565b005b61048061049036600461383b565b610c48565b3480156104a157600080fd5b506104aa610e2e565b6040516104129190613af5565b3480156104c357600080fd5b506104d76104d236600461383b565b610ec0565b6040516001600160a01b039091168152602001610412565b3480156104fb57600080fd5b5061048061050a366004613760565b610f48565b34801561051b57600080fd5b5061048061105e565b34801561053057600080fd5b50601154610408565b6104806110e2565b34801561054d57600080fd5b5061048061055c366004613983565b6111ed565b34801561056d57600080fd5b50600a54610408565b34801561058257600080fd5b5061048061059136600461378c565b61125e565b3480156105a257600080fd5b506104806105b1366004613671565b6113ad565b3480156105c257600080fd5b506104086105d136600461383b565b60009081526020819052604090206001015490565b3480156105f257600080fd5b50610480610601366004613854565b6113de565b34801561061257600080fd5b50610408610621366004613760565b611400565b34801561063257600080fd5b50601b546104d7906001600160a01b031681565b34801561065257600080fd5b50610480610661366004613854565b611496565b34801561067257600080fd5b506104806114b8565b34801561068757600080fd5b50610408601d5481565b34801561069d57600080fd5b506104806106ac366004613671565b6115c3565b3480156106bd57600080fd5b506104aa6115de565b3480156106d257600080fd5b5061048061166c565b3480156106e757600080fd5b50610408601e5481565b3480156106fd57600080fd5b50601254610408565b34801561071257600080fd5b50610480610721366004613801565b6116cc565b34801561073257600080fd5b5061040861074136600461383b565b611755565b34801561075257600080fd5b506104d761076136600461383b565b60208052600090815260409020546001600160a01b031681565b34801561078757600080fd5b50610480610796366004613935565b6117e8565b3480156107a757600080fd5b5061040860155481565b3480156107bd57600080fd5b506104d76107cc36600461383b565b61185d565b3480156107dd57600080fd5b506104806107ec3660046138d5565b6118d4565b3480156107fd57600080fd5b5061040861080c3660046135fe565b611953565b34801561081d57600080fd5b5061048061082c36600461378c565b6119da565b34801561083d57600080fd5b50601c546104d7906001600160a01b031681565b34801561085d57600080fd5b506104d761086c366004613879565b611ac9565b34801561087d57600080fd5b506019546104509060ff1681565b34801561089757600080fd5b506104506108a6366004613854565b611ae8565b3480156108b757600080fd5b506104806108c63660046135fe565b611b11565b3480156108d757600080fd5b506104aa611b79565b3480156108ec57600080fd5b50600d546104089081565b34801561090357600080fd5b50610408600081565b34801561091857600080fd5b50610480610927366004613732565b611b88565b34801561093857600080fd5b50601054610408565b34801561094d57600080fd5b5061040860235481565b34801561096357600080fd5b5061040860165481565b34801561097957600080fd5b50610408611c4d565b34801561098e57600080fd5b5061048061099d36600461383b565b611c5d565b3480156109ae57600080fd5b506104d76109bd36600461383b565b60009081526020805260409020546001600160a01b031690565b3480156109e357600080fd5b506104806109f23660046136b2565b611d46565b348015610a0357600080fd5b5060145461045090600160a01b900460ff1681565b348015610a2457600080fd5b506104aa610a3336600461383b565b611d7e565b348015610a4457600080fd5b50610480610a533660046135fe565b611d89565b348015610a6457600080fd5b50610408610a7336600461383b565b611e0f565b348015610a8457600080fd5b50610480610a93366004613854565b611e26565b348015610aa457600080fd5b5061040860125481565b348015610aba57600080fd5b5061040860175481565b348015610ad057600080fd5b506104aa611e30565b348015610ae557600080fd5b50610450610af4366004613638565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610b2e57600080fd5b50610480610b3d3660046135fe565b611e3f565b348015610b4e57600080fd5b50610450610b5d3660046135fe565b60216020526000908152604090205460ff1681565b348015610b7e57600080fd5b506014546104d7906001600160a01b031681565b348015610b9e57600080fd5b50610408611fba565b6000818152601f6020526040812054601e54610bc39190613dfd565b92915050565b600080610bd533611953565b90506000805b82811015610c1a576000610bef3383611400565b9050610bfa81610ba7565b610c049084613cc7565b9250508080610c1290613e7b565b915050610bdb565b5092915050565b6000610bc382611ffe565b610c3781600a613d36565b610c419083613dde565b6010555050565b601454600160a01b900460ff16610c7a5760405162461bcd60e51b8152600401610c7190613b5a565b60405180910390fd5b600b8110610ce25760405162461bcd60e51b815260206004820152602f60248201527f6175746f7374616b696e673a206d696e74696e67206d6f7265207468616e203160448201526e0c081a5cc81c1c9bda1a589a5d1959608a1b6064820152608401610c71565b601054610cef9082613dde565b341015610d0e5760405162461bcd60e51b8152600401610c7190613ba1565b60125481610d1b600d5490565b610d259190613cc7565b10610d425760405162461bcd60e51b8152600401610c7190613c29565b60005b81811015610e2157610d5f33610d5a600d5490565b612023565b3360206000610d6d600d5490565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550601e54601f6000610daf600d5490565b8152602081019190915260400160002055610e01610dcc600d5490565b610ddd610dd8600d5490565b612162565b604051602001610ded9190613a25565b604051602081830303815290604052612268565b610e0f600d80546001019055565b80610e1981613e7b565b915050610d45565b50610e2b816122f3565b50565b606060028054610e3d90613e40565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6990613e40565b8015610eb65780601f10610e8b57610100808354040283529160200191610eb6565b820191906000526020600020905b815481529060010190602001808311610e9957829003601f168201915b5050505050905090565b6000610ecb826124e1565b610f2c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c71565b506000908152600660205260409020546001600160a01b031690565b6000610f538261185d565b9050806001600160a01b0316836001600160a01b03161415610fc15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c71565b336001600160a01b0382161480610fdd5750610fdd8133610af4565b61104f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c71565b61105983836124fe565b505050565b611069600033611ae8565b6110bc5760405162461bcd60e51b81526020600482015260306024820152600080516020613f5283398151915260448201526f6520746f206368616e6765207468697360801b6064820152608401610c71565b6103e8601254116110e0576064601260008282546110da9190613cc7565b90915550505b565b601454600160a01b900460ff1661110b5760405162461bcd60e51b8152600401610c7190613b5a565b60105434101561112d5760405162461bcd60e51b8152600401610c7190613ba1565b601254600d5461113e906001613cc7565b1061115b5760405162461bcd60e51b8152600401610c7190613c29565b61116833610d5a600d5490565b3360206000611176600d5490565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550601e54601f60006111b8600d5490565b81526020810191909152604001600020556111d5610dcc600d5490565b6111e3600d80546001019055565b6110e060016122f3565b6111f8600033611ae8565b6112505760405162461bcd60e51b81526020600482015260356024820152600080516020613f528339815191526044820152746520746f206368616e676520746f6b656e2055524960581b6064820152608401610c71565b61125a8282612268565b5050565b611269600033611ae8565b6112bd5760405162461bcd60e51b81526020600482015260316024820152600080516020613f5283398151915260448201527019481d1bc81a5b9a5d1a585b081b5a5b9d607a1b6064820152608401610c71565b60005b81811015611059576112fa8383838181106112dd576112dd613eec565b90506020020160208101906112f291906135fe565b600d54612023565b82828281811061130c5761130c613eec565b905060200201602081019061132191906135fe565b6020600061132e600d5490565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550601e54601f6000611370600d5490565b815260208101919091526040016000205561138d610dcc600d5490565b61139b600d80546001019055565b806113a581613e7b565b9150506112c0565b6113b7338261256c565b6113d35760405162461bcd60e51b8152600401610c7190613c76565b611059838383612652565b6113e882826127fd565b60008281526001602052604090206110599082611fe9565b600061140b83611953565b821061146d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c71565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6114a0828261287e565b600082815260016020526040902061105990826128f8565b60006114c333611953565b90506000805b8281101561151c5760006114dd3383611400565b90506114e881610ba7565b6114f29084613cc7565b601e546000928352601f60205260409092209190915591508061151481613e7b565b9150506114c9565b50801561125a57601c5460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb90604401602060405180830381600087803b15801561156f57600080fd5b505af1158015611583573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a7919061381e565b5080601d60008282546115ba9190613dfd565b90915550505050565b61105983838360405180602001604052806000815250611d46565b600f80546115eb90613e40565b80601f016020809104026020016040519081016040528092919081815260200182805461161790613e40565b80156116645780601f1061163957610100808354040283529160200191611664565b820191906000526020600020905b81548152906001019060200180831161164757829003601f168201915b505050505081565b611677600033611ae8565b6116935760405162461bcd60e51b8152600401610c7190613be5565b6013546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e2b573d6000803e3d6000fd5b6116d7600033611ae8565b6117375760405162461bcd60e51b815260206004820152603b6024820152600080516020613f5283398151915260448201527f6520746f206368616e6765206d696e74696e67206162696c69747900000000006064820152608401610c71565b60148054911515600160a01b0260ff60a01b19909216919091179055565b6000611760600a5490565b82106117c35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c71565b600a82815481106117d6576117d6613eec565b90600052602060002001549050919050565b6117f3600033611ae8565b61184a5760405162461bcd60e51b81526020600482015260346024820152600080516020613f528339815191526044820152736520746f206368616e676520626173652055524960601b6064820152608401610c71565b805161125a90600e90602084019061345b565b6000818152600460205260408120546001600160a01b031680610bc35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c71565b6118df600033611ae8565b6119475760405162461bcd60e51b815260206004820152603360248201527f6175746f7374616b696e673a206f6e6c7920746865206469737472696275746f604482015272722063616e206164642074686973206d65746160681b6064820152608401610c71565b611059600f83836134df565b60006001600160a01b0382166119be5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c71565b506001600160a01b031660009081526005602052604090205490565b6119e5600033611ae8565b611a575760405162461bcd60e51b815260206004820152603960248201527f6175746f7374616b696e673a206d75737420686176652064697374726962757460448201527f6f7220726f6c6520746f20616464206578636c7573696f6e73000000000000006064820152608401610c71565b60005b8181101561105957600160216000858585818110611a7a57611a7a613eec565b9050602002016020810190611a8f91906135fe565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611ac181613e7b565b915050611a5a565b6000828152600160205260408120611ae1908361290d565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b611b1c600033611ae8565b611b6e5760405162461bcd60e51b815260206004820152602f6024820152600080516020613f5283398151915260448201526e6520746f206164642061646d696e7360881b6064820152608401610c71565b610e2b600082612919565b606060038054610e3d90613e40565b6001600160a01b038216331415611be15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c71565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000611c58600d5490565b905090565b601c546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611ca157600080fd5b505afa158015611cb5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cd9919061396a565b90508082601d54611cea9190613cc7565b1115611d305760405162461bcd60e51b81526020600482015260156024820152741b5d5cdd081cd95b99081d1bdad95b88199a5c9cdd605a1b6044820152606401610c71565b61125a601d5482611d419190613dfd565b612923565b611d50338361256c565b611d6c5760405162461bcd60e51b8152600401610c7190613c76565b611d7884848484612987565b50505050565b6060610bc3826129ba565b611d94600033611ae8565b611ded5760405162461bcd60e51b81526020600482015260366024820152600080516020613f5283398151915260448201527519481d1bc81cd95d08185c9d1a5cdd081dd85b1b195d60521b6064820152608401610c71565b601b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600160205260408120610bc390612b1c565b6114a08282612b26565b6060600f8054610e3d90613e40565b611e4a600033611ae8565b611e665760405162461bcd60e51b8152600401610c7190613be5565b601c546001600160a01b0382811691161415611ebb5760405162461bcd60e51b815260206004820152601460248201527343616e742072656d6f7665207265666c6563747360601b6044820152606401610c71565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b158015611f0457600080fd5b505afa158015611f18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3c919061396a565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611f8257600080fd5b505af1158015611f96573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125a919061381e565b6000611fc5600a5490565b611fcf5750600090565b600a54601d54611c589190613cdf565b61125a8282612ba6565b6000611ae1836001600160a01b038416612c2a565b60006001600160e01b0319821663780e9d6360e01b1480610bc35750610bc382612c79565b6001600160a01b0382166120795760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c71565b612082816124e1565b156120cf5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c71565b6120db60008383612cb9565b6001600160a01b0382166000908152600560205260408120805460019290612104908490613cc7565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060816121865750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121b0578061219a81613e7b565b91506121a99050600a83613cdf565b915061218a565b60008167ffffffffffffffff8111156121cb576121cb613f02565b6040519080825280601f01601f1916602001820160405280156121f5576020820181803683370190505b5090505b84156122605761220a600183613dfd565b9150612217600a86613e96565b612222906030613cc7565b60f81b81838151811061223757612237613eec565b60200101906001600160f81b031916908160001a905350612259600a86613cdf565b94506121f9565b949350505050565b612271826124e1565b6122d45760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610c71565b6000828152600c6020908152604090912082516110599284019061345b565b6000601054826123039190613dde565b90506000819050600060646018548361231c9190613dde565b6123269190613cdf565b601b546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612361573d6000803e3d6000fd5b506040805160028082526060820183526000926020830190803683375050601c5482519293506001600160a01b03169183915060019081106123a5576123a5613eec565b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156123f957600080fd5b505afa15801561240d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612431919061361b565b8160008151811061244457612444613eec565b6001600160a01b0392831660209182029290920101526014541663b6f9de9561246d8486613dfd565b601a5460009085906001600160a01b0316612489426003613cc7565b6040518663ffffffff1660e01b81526004016124a89493929190613a8b565b6000604051808303818588803b1580156124c157600080fd5b505af11580156124d5573d6000803e3d6000fd5b50505050505050505050565b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b03841690811790915581906125338261185d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612577826124e1565b6125d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c71565b60006125e38361185d565b9050806001600160a01b0316846001600160a01b0316148061261e5750836001600160a01b031661261384610ec0565b6001600160a01b0316145b8061226057506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff16612260565b826001600160a01b03166126658261185d565b6001600160a01b0316146126cd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c71565b6001600160a01b03821661272f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c71565b61273a838383612cb9565b6127456000826124fe565b6001600160a01b038316600090815260056020526040812080546001929061276e908490613dfd565b90915550506001600160a01b038216600090815260056020526040812080546001929061279c908490613cc7565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008281526020819052604090206001015461281a905b33611ae8565b611fdf5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b6064820152608401610c71565b6001600160a01b03811633146128ee5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610c71565b61125a8282612cdd565b6000611ae1836001600160a01b038416612d42565b6000611ae18383612e35565b6113e88282611fdf565b80601d546129319190613cc7565b601d55600a546129419082613cdf565b601e5461294e9190613cc7565b601e8190555080601760008282546129669190613cc7565b92505081905550806016600082825461297f9190613cc7565b909155505050565b612992848484612652565b61299e84848484612ebb565b611d785760405162461bcd60e51b8152600401610c7190613b08565b60606129c5826124e1565b612a2b5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610c71565b6000828152600c602052604081208054612a4490613e40565b80601f0160208091040260200160405190810160405280929190818152602001828054612a7090613e40565b8015612abd5780601f10612a9257610100808354040283529160200191612abd565b820191906000526020600020905b815481529060010190602001808311612aa057829003601f168201915b505050505090506000612ace612fc8565b9050805160001415612ae1575092915050565b815115612b13578082604051602001612afb9291906139f6565b60405160208183030381529060405292505050919050565b61226084612fd7565b6000610bc3825490565b600082815260208190526040902060010154612b4190612814565b6128ee5760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b6064820152608401610c71565b612bb08282611ae8565b61125a576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055612be63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054612c7157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610bc3565b506000610bc3565b60006001600160e01b031982166380ac58cd60e01b1480612caa57506001600160e01b03198216635b5e139f60e01b145b80610bc35750610bc3826130a1565b80612cc3600a5490565b1115612cd257612cd2816130c6565b6110598383836131de565b612ce78282611ae8565b1561125a576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015612e2b576000612d66600183613dfd565b8554909150600090612d7a90600190613dfd565b90506000866000018281548110612d9357612d93613eec565b9060005260206000200154905080876000018481548110612db657612db6613eec565b600091825260209091200155612dcd836001613cc7565b60008281526001890160205260409020558654879080612def57612def613ed6565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610bc3565b6000915050610bc3565b81546000908210612e935760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610c71565b826000018281548110612ea857612ea8613eec565b9060005260206000200154905092915050565b60006001600160a01b0384163b15612fbd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612eff903390899088908890600401613a4e565b602060405180830381600087803b158015612f1957600080fd5b505af1925050508015612f49575060408051601f3d908101601f19168201909252612f46918101906138b8565b60015b612fa3573d808015612f77576040519150601f19603f3d011682016040523d82523d6000602084013e612f7c565b606091505b508051612f9b5760405162461bcd60e51b8152600401610c7190613b08565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612260565b506001949350505050565b6060600e8054610e3d90613e40565b6060612fe2826124e1565b6130465760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c71565b6000613050612fc8565b905060008151116130705760405180602001604052806000815250611ae1565b8061307a84612162565b60405160200161308b9291906139f6565b6040516020818303038152906040529392505050565b60006001600160e01b03198216635a05180f60e01b1480610bc35750610bc382613296565b60006130d182610ba7565b9050801561125a5780601d60008282546130eb9190613dfd565b909155506021905060006130fe8461185d565b6001600160a01b0316815260208101919091526040016000205460ff166131bf57601c546001600160a01b031663a9059cbb6131398461185d565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b15801561318157600080fd5b505af1158015613195573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131b9919061381e565b506131c8565b6131c881612923565b601e546000838152601f60205260409020555050565b6001600160a01b0383166132395761323481600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b61325c565b816001600160a01b0316836001600160a01b03161461325c5761325c83826132cb565b6001600160a01b0382166132735761105981613368565b826001600160a01b0316826001600160a01b031614611059576110598282613417565b60006001600160e01b03198216637965db0b60e01b1480610bc357506301ffc9a760e01b6001600160e01b0319831614610bc3565b600060016132d884611953565b6132e29190613dfd565b600083815260096020526040902054909150808214613335576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061337a90600190613dfd565b6000838152600b6020526040812054600a80549394509092849081106133a2576133a2613eec565b9060005260206000200154905080600a83815481106133c3576133c3613eec565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a8054806133fb576133fb613ed6565b6001900381819060005260206000200160009055905550505050565b600061342283611953565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b82805461346790613e40565b90600052602060002090601f01602090048101928261348957600085556134cf565b82601f106134a257805160ff19168380011785556134cf565b828001600101855582156134cf579182015b828111156134cf5782518255916020019190600101906134b4565b506134db929150613553565b5090565b8280546134eb90613e40565b90600052602060002090601f01602090048101928261350d57600085556134cf565b82601f106135265782800160ff198235161785556134cf565b828001600101855582156134cf579182015b828111156134cf578235825591602001919060010190613538565b5b808211156134db5760008155600101613554565b600067ffffffffffffffff8084111561358357613583613f02565b604051601f8501601f19908116603f011681019082821181831017156135ab576135ab613f02565b816040528093508581528686860111156135c457600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126135ef57600080fd5b611ae183833560208501613568565b60006020828403121561361057600080fd5b8135611ae181613f18565b60006020828403121561362d57600080fd5b8151611ae181613f18565b6000806040838503121561364b57600080fd5b823561365681613f18565b9150602083013561366681613f18565b809150509250929050565b60008060006060848603121561368657600080fd5b833561369181613f18565b925060208401356136a181613f18565b929592945050506040919091013590565b600080600080608085870312156136c857600080fd5b84356136d381613f18565b935060208501356136e381613f18565b925060408501359150606085013567ffffffffffffffff81111561370657600080fd5b8501601f8101871361371757600080fd5b61372687823560208401613568565b91505092959194509250565b6000806040838503121561374557600080fd5b823561375081613f18565b9150602083013561366681613f2d565b6000806040838503121561377357600080fd5b823561377e81613f18565b946020939093013593505050565b6000806020838503121561379f57600080fd5b823567ffffffffffffffff808211156137b757600080fd5b818501915085601f8301126137cb57600080fd5b8135818111156137da57600080fd5b8660208260051b85010111156137ef57600080fd5b60209290920196919550909350505050565b60006020828403121561381357600080fd5b8135611ae181613f2d565b60006020828403121561383057600080fd5b8151611ae181613f2d565b60006020828403121561384d57600080fd5b5035919050565b6000806040838503121561386757600080fd5b82359150602083013561366681613f18565b6000806040838503121561388c57600080fd5b50508035926020909101359150565b6000602082840312156138ad57600080fd5b8135611ae181613f3b565b6000602082840312156138ca57600080fd5b8151611ae181613f3b565b600080602083850312156138e857600080fd5b823567ffffffffffffffff8082111561390057600080fd5b818501915085601f83011261391457600080fd5b81358181111561392357600080fd5b8660208285010111156137ef57600080fd5b60006020828403121561394757600080fd5b813567ffffffffffffffff81111561395e57600080fd5b612260848285016135de565b60006020828403121561397c57600080fd5b5051919050565b6000806040838503121561399657600080fd5b82359150602083013567ffffffffffffffff8111156139b457600080fd5b6139c0858286016135de565b9150509250929050565b600081518084526139e2816020860160208601613e14565b601f01601f19169290920160200192915050565b60008351613a08818460208801613e14565b835190830190613a1c818360208801613e14565b01949350505050565b60008251613a37818460208701613e14565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a81908301846139ca565b9695505050505050565b600060808201868352602060808185015281875180845260a086019150828901935060005b81811015613ad55784516001600160a01b031683529383019391830191600101613ab0565b50506001600160a01b039690961660408501525050506060015292915050565b602081526000611ae160208301846139ca565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f6175746f7374616b696e673a206d696e74696e672063757272656e746c7920646040820152661a5cd8589b195960ca1b606082015260800190565b60208082526024908201527f6175746f7374616b696e673a206d7573742073656e6420636f727265637420706040820152637269636560e01b606082015260800190565b6020808252603690820152600080516020613f528339815191526040820152756520746f20636c61696d207468652062616c616e636560501b606082015260800190565b6020808252602d908201527f6175746f7374616b696e673a20616c6c206175746f7374616b696e672068617660408201526c19481899595b881b5a5b9d1959609a1b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115613cda57613cda613eaa565b500190565b600082613cee57613cee613ec0565b500490565b600181815b80851115613d2e578160001904821115613d1457613d14613eaa565b80851615613d2157918102915b93841c9390800290613cf8565b509250929050565b6000611ae18383600082613d4c57506001610bc3565b81613d5957506000610bc3565b8160018114613d6f5760028114613d7957613d95565b6001915050610bc3565b60ff841115613d8a57613d8a613eaa565b50506001821b610bc3565b5060208310610133831016604e8410600b8410161715613db8575081810a610bc3565b613dc28383613cf3565b8060001904821115613dd657613dd6613eaa565b029392505050565b6000816000190483118215151615613df857613df8613eaa565b500290565b600082821015613e0f57613e0f613eaa565b500390565b60005b83811015613e2f578181015183820152602001613e17565b83811115611d785750506000910152565b600181811c90821680613e5457607f821691505b60208210811415613e7557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613e8f57613e8f613eaa565b5060010190565b600082613ea557613ea5613ec0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e2b57600080fd5b8015158114610e2b57600080fd5b6001600160e01b031981168114610e2b57600080fdfe6175746f7374616b696e673a206d75737420686176652061646d696e20726f6ca26469706673582212202090d82612af9a8bbef4a65754af8f4eb21b6dfe776418f65913c9786617a08c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000214e8348c4f00000000000000000000000000000fdc977660c0603320ebcdcb63bff2123a97153d000000000000000000000000000000000000000000000000000000000000000b446f676554564865616473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000824444754564e4654000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103dc5760003560e01c80636352211e116101fd578063ac72200d11610118578063d547741f116100ab578063e985e9c51161007a578063e985e9c514610ad9578063f747fb8814610b22578063f82f235f14610b42578063f887ea4014610b72578063f9f8bdb714610b9257600080fd5b8063d547741f14610a78578063d5abeb0114610a98578063e29eb83614610aae578063e8a3d48514610ac457600080fd5b8063beb9716d116100e7578063beb9716d146109f7578063c87b56dd14610a18578063c9a7f8ad14610a38578063ca15c87314610a5857600080fd5b8063ac72200d1461096d578063b6b55f2514610982578063b7530819146109a2578063b88d4fde146109d757600080fd5b8063926f353b11610190578063a22cb4651161015f578063a22cb4651461090c578063a7f93ebd1461092c578063a9c6c9e114610941578063ac5c845b1461095757600080fd5b8063926f353b146108ab57806395d89b41146108cb57806398bcede9146108e0578063a217fddf146108f757600080fd5b80638dd37d36116101cc5780638dd37d36146108315780639010d07c14610851578063901f53581461087157806391d148541461088b57600080fd5b80636352211e146107b1578063653088cf146107d157806370a08231146107f157806389c343b61461081157600080fd5b8063262d75df116102f857806343e61a411161028b5780634ea3871a1161025a5780634ea3871a146107065780634f6ccce714610726578063510b51581461074657806355f804b31461077b57806360876ba71461079b57600080fd5b806343e61a41146106b157806348c54b9d146106c65780634b6acafb146106db5780634c0f38c2146106f157600080fd5b806336568abe116102c757806336568abe14610646578063372500ab146106665780634131ff991461067b57806342842e0e1461069157600080fd5b8063262d75df146105245780632f2ff15d146105e65780632f745c59146106065780632f9bc9811461062657600080fd5b80630b9267b71161037057806318160ddd1161033f57806318160ddd146105615780631e1a1e761461057657806323b872dd14610596578063248a9ca3146105b657600080fd5b80630b9267b71461050f57806311a1933c146105245780631249c58b14610539578063162094c41461054157600080fd5b8063059513a6116103ac578063059513a61461048257806306fdde0314610495578063081812fc146104b7578063095ea7b3146104ef57600080fd5b8062fe50c6146103e857806301eb99ec1461041b57806301ffc9a7146104305780630442bfa81461046057600080fd5b366103e357005b600080fd5b3480156103f457600080fd5b5061040861040336600461383b565b610ba7565b6040519081526020015b60405180910390f35b34801561042757600080fd5b50610408610bc9565b34801561043c57600080fd5b5061045061044b36600461389b565b610c21565b6040519015158152602001610412565b34801561046c57600080fd5b5061048061047b366004613879565b610c2c565b005b61048061049036600461383b565b610c48565b3480156104a157600080fd5b506104aa610e2e565b6040516104129190613af5565b3480156104c357600080fd5b506104d76104d236600461383b565b610ec0565b6040516001600160a01b039091168152602001610412565b3480156104fb57600080fd5b5061048061050a366004613760565b610f48565b34801561051b57600080fd5b5061048061105e565b34801561053057600080fd5b50601154610408565b6104806110e2565b34801561054d57600080fd5b5061048061055c366004613983565b6111ed565b34801561056d57600080fd5b50600a54610408565b34801561058257600080fd5b5061048061059136600461378c565b61125e565b3480156105a257600080fd5b506104806105b1366004613671565b6113ad565b3480156105c257600080fd5b506104086105d136600461383b565b60009081526020819052604090206001015490565b3480156105f257600080fd5b50610480610601366004613854565b6113de565b34801561061257600080fd5b50610408610621366004613760565b611400565b34801561063257600080fd5b50601b546104d7906001600160a01b031681565b34801561065257600080fd5b50610480610661366004613854565b611496565b34801561067257600080fd5b506104806114b8565b34801561068757600080fd5b50610408601d5481565b34801561069d57600080fd5b506104806106ac366004613671565b6115c3565b3480156106bd57600080fd5b506104aa6115de565b3480156106d257600080fd5b5061048061166c565b3480156106e757600080fd5b50610408601e5481565b3480156106fd57600080fd5b50601254610408565b34801561071257600080fd5b50610480610721366004613801565b6116cc565b34801561073257600080fd5b5061040861074136600461383b565b611755565b34801561075257600080fd5b506104d761076136600461383b565b60208052600090815260409020546001600160a01b031681565b34801561078757600080fd5b50610480610796366004613935565b6117e8565b3480156107a757600080fd5b5061040860155481565b3480156107bd57600080fd5b506104d76107cc36600461383b565b61185d565b3480156107dd57600080fd5b506104806107ec3660046138d5565b6118d4565b3480156107fd57600080fd5b5061040861080c3660046135fe565b611953565b34801561081d57600080fd5b5061048061082c36600461378c565b6119da565b34801561083d57600080fd5b50601c546104d7906001600160a01b031681565b34801561085d57600080fd5b506104d761086c366004613879565b611ac9565b34801561087d57600080fd5b506019546104509060ff1681565b34801561089757600080fd5b506104506108a6366004613854565b611ae8565b3480156108b757600080fd5b506104806108c63660046135fe565b611b11565b3480156108d757600080fd5b506104aa611b79565b3480156108ec57600080fd5b50600d546104089081565b34801561090357600080fd5b50610408600081565b34801561091857600080fd5b50610480610927366004613732565b611b88565b34801561093857600080fd5b50601054610408565b34801561094d57600080fd5b5061040860235481565b34801561096357600080fd5b5061040860165481565b34801561097957600080fd5b50610408611c4d565b34801561098e57600080fd5b5061048061099d36600461383b565b611c5d565b3480156109ae57600080fd5b506104d76109bd36600461383b565b60009081526020805260409020546001600160a01b031690565b3480156109e357600080fd5b506104806109f23660046136b2565b611d46565b348015610a0357600080fd5b5060145461045090600160a01b900460ff1681565b348015610a2457600080fd5b506104aa610a3336600461383b565b611d7e565b348015610a4457600080fd5b50610480610a533660046135fe565b611d89565b348015610a6457600080fd5b50610408610a7336600461383b565b611e0f565b348015610a8457600080fd5b50610480610a93366004613854565b611e26565b348015610aa457600080fd5b5061040860125481565b348015610aba57600080fd5b5061040860175481565b348015610ad057600080fd5b506104aa611e30565b348015610ae557600080fd5b50610450610af4366004613638565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610b2e57600080fd5b50610480610b3d3660046135fe565b611e3f565b348015610b4e57600080fd5b50610450610b5d3660046135fe565b60216020526000908152604090205460ff1681565b348015610b7e57600080fd5b506014546104d7906001600160a01b031681565b348015610b9e57600080fd5b50610408611fba565b6000818152601f6020526040812054601e54610bc39190613dfd565b92915050565b600080610bd533611953565b90506000805b82811015610c1a576000610bef3383611400565b9050610bfa81610ba7565b610c049084613cc7565b9250508080610c1290613e7b565b915050610bdb565b5092915050565b6000610bc382611ffe565b610c3781600a613d36565b610c419083613dde565b6010555050565b601454600160a01b900460ff16610c7a5760405162461bcd60e51b8152600401610c7190613b5a565b60405180910390fd5b600b8110610ce25760405162461bcd60e51b815260206004820152602f60248201527f6175746f7374616b696e673a206d696e74696e67206d6f7265207468616e203160448201526e0c081a5cc81c1c9bda1a589a5d1959608a1b6064820152608401610c71565b601054610cef9082613dde565b341015610d0e5760405162461bcd60e51b8152600401610c7190613ba1565b60125481610d1b600d5490565b610d259190613cc7565b10610d425760405162461bcd60e51b8152600401610c7190613c29565b60005b81811015610e2157610d5f33610d5a600d5490565b612023565b3360206000610d6d600d5490565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550601e54601f6000610daf600d5490565b8152602081019190915260400160002055610e01610dcc600d5490565b610ddd610dd8600d5490565b612162565b604051602001610ded9190613a25565b604051602081830303815290604052612268565b610e0f600d80546001019055565b80610e1981613e7b565b915050610d45565b50610e2b816122f3565b50565b606060028054610e3d90613e40565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6990613e40565b8015610eb65780601f10610e8b57610100808354040283529160200191610eb6565b820191906000526020600020905b815481529060010190602001808311610e9957829003601f168201915b5050505050905090565b6000610ecb826124e1565b610f2c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c71565b506000908152600660205260409020546001600160a01b031690565b6000610f538261185d565b9050806001600160a01b0316836001600160a01b03161415610fc15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c71565b336001600160a01b0382161480610fdd5750610fdd8133610af4565b61104f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c71565b61105983836124fe565b505050565b611069600033611ae8565b6110bc5760405162461bcd60e51b81526020600482015260306024820152600080516020613f5283398151915260448201526f6520746f206368616e6765207468697360801b6064820152608401610c71565b6103e8601254116110e0576064601260008282546110da9190613cc7565b90915550505b565b601454600160a01b900460ff1661110b5760405162461bcd60e51b8152600401610c7190613b5a565b60105434101561112d5760405162461bcd60e51b8152600401610c7190613ba1565b601254600d5461113e906001613cc7565b1061115b5760405162461bcd60e51b8152600401610c7190613c29565b61116833610d5a600d5490565b3360206000611176600d5490565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550601e54601f60006111b8600d5490565b81526020810191909152604001600020556111d5610dcc600d5490565b6111e3600d80546001019055565b6110e060016122f3565b6111f8600033611ae8565b6112505760405162461bcd60e51b81526020600482015260356024820152600080516020613f528339815191526044820152746520746f206368616e676520746f6b656e2055524960581b6064820152608401610c71565b61125a8282612268565b5050565b611269600033611ae8565b6112bd5760405162461bcd60e51b81526020600482015260316024820152600080516020613f5283398151915260448201527019481d1bc81a5b9a5d1a585b081b5a5b9d607a1b6064820152608401610c71565b60005b81811015611059576112fa8383838181106112dd576112dd613eec565b90506020020160208101906112f291906135fe565b600d54612023565b82828281811061130c5761130c613eec565b905060200201602081019061132191906135fe565b6020600061132e600d5490565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550601e54601f6000611370600d5490565b815260208101919091526040016000205561138d610dcc600d5490565b61139b600d80546001019055565b806113a581613e7b565b9150506112c0565b6113b7338261256c565b6113d35760405162461bcd60e51b8152600401610c7190613c76565b611059838383612652565b6113e882826127fd565b60008281526001602052604090206110599082611fe9565b600061140b83611953565b821061146d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c71565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6114a0828261287e565b600082815260016020526040902061105990826128f8565b60006114c333611953565b90506000805b8281101561151c5760006114dd3383611400565b90506114e881610ba7565b6114f29084613cc7565b601e546000928352601f60205260409092209190915591508061151481613e7b565b9150506114c9565b50801561125a57601c5460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb90604401602060405180830381600087803b15801561156f57600080fd5b505af1158015611583573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a7919061381e565b5080601d60008282546115ba9190613dfd565b90915550505050565b61105983838360405180602001604052806000815250611d46565b600f80546115eb90613e40565b80601f016020809104026020016040519081016040528092919081815260200182805461161790613e40565b80156116645780601f1061163957610100808354040283529160200191611664565b820191906000526020600020905b81548152906001019060200180831161164757829003601f168201915b505050505081565b611677600033611ae8565b6116935760405162461bcd60e51b8152600401610c7190613be5565b6013546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e2b573d6000803e3d6000fd5b6116d7600033611ae8565b6117375760405162461bcd60e51b815260206004820152603b6024820152600080516020613f5283398151915260448201527f6520746f206368616e6765206d696e74696e67206162696c69747900000000006064820152608401610c71565b60148054911515600160a01b0260ff60a01b19909216919091179055565b6000611760600a5490565b82106117c35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c71565b600a82815481106117d6576117d6613eec565b90600052602060002001549050919050565b6117f3600033611ae8565b61184a5760405162461bcd60e51b81526020600482015260346024820152600080516020613f528339815191526044820152736520746f206368616e676520626173652055524960601b6064820152608401610c71565b805161125a90600e90602084019061345b565b6000818152600460205260408120546001600160a01b031680610bc35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c71565b6118df600033611ae8565b6119475760405162461bcd60e51b815260206004820152603360248201527f6175746f7374616b696e673a206f6e6c7920746865206469737472696275746f604482015272722063616e206164642074686973206d65746160681b6064820152608401610c71565b611059600f83836134df565b60006001600160a01b0382166119be5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c71565b506001600160a01b031660009081526005602052604090205490565b6119e5600033611ae8565b611a575760405162461bcd60e51b815260206004820152603960248201527f6175746f7374616b696e673a206d75737420686176652064697374726962757460448201527f6f7220726f6c6520746f20616464206578636c7573696f6e73000000000000006064820152608401610c71565b60005b8181101561105957600160216000858585818110611a7a57611a7a613eec565b9050602002016020810190611a8f91906135fe565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611ac181613e7b565b915050611a5a565b6000828152600160205260408120611ae1908361290d565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b611b1c600033611ae8565b611b6e5760405162461bcd60e51b815260206004820152602f6024820152600080516020613f5283398151915260448201526e6520746f206164642061646d696e7360881b6064820152608401610c71565b610e2b600082612919565b606060038054610e3d90613e40565b6001600160a01b038216331415611be15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c71565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000611c58600d5490565b905090565b601c546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611ca157600080fd5b505afa158015611cb5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cd9919061396a565b90508082601d54611cea9190613cc7565b1115611d305760405162461bcd60e51b81526020600482015260156024820152741b5d5cdd081cd95b99081d1bdad95b88199a5c9cdd605a1b6044820152606401610c71565b61125a601d5482611d419190613dfd565b612923565b611d50338361256c565b611d6c5760405162461bcd60e51b8152600401610c7190613c76565b611d7884848484612987565b50505050565b6060610bc3826129ba565b611d94600033611ae8565b611ded5760405162461bcd60e51b81526020600482015260366024820152600080516020613f5283398151915260448201527519481d1bc81cd95d08185c9d1a5cdd081dd85b1b195d60521b6064820152608401610c71565b601b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600160205260408120610bc390612b1c565b6114a08282612b26565b6060600f8054610e3d90613e40565b611e4a600033611ae8565b611e665760405162461bcd60e51b8152600401610c7190613be5565b601c546001600160a01b0382811691161415611ebb5760405162461bcd60e51b815260206004820152601460248201527343616e742072656d6f7665207265666c6563747360601b6044820152606401610c71565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b158015611f0457600080fd5b505afa158015611f18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3c919061396a565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611f8257600080fd5b505af1158015611f96573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125a919061381e565b6000611fc5600a5490565b611fcf5750600090565b600a54601d54611c589190613cdf565b61125a8282612ba6565b6000611ae1836001600160a01b038416612c2a565b60006001600160e01b0319821663780e9d6360e01b1480610bc35750610bc382612c79565b6001600160a01b0382166120795760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c71565b612082816124e1565b156120cf5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c71565b6120db60008383612cb9565b6001600160a01b0382166000908152600560205260408120805460019290612104908490613cc7565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060816121865750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121b0578061219a81613e7b565b91506121a99050600a83613cdf565b915061218a565b60008167ffffffffffffffff8111156121cb576121cb613f02565b6040519080825280601f01601f1916602001820160405280156121f5576020820181803683370190505b5090505b84156122605761220a600183613dfd565b9150612217600a86613e96565b612222906030613cc7565b60f81b81838151811061223757612237613eec565b60200101906001600160f81b031916908160001a905350612259600a86613cdf565b94506121f9565b949350505050565b612271826124e1565b6122d45760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610c71565b6000828152600c6020908152604090912082516110599284019061345b565b6000601054826123039190613dde565b90506000819050600060646018548361231c9190613dde565b6123269190613cdf565b601b546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612361573d6000803e3d6000fd5b506040805160028082526060820183526000926020830190803683375050601c5482519293506001600160a01b03169183915060019081106123a5576123a5613eec565b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156123f957600080fd5b505afa15801561240d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612431919061361b565b8160008151811061244457612444613eec565b6001600160a01b0392831660209182029290920101526014541663b6f9de9561246d8486613dfd565b601a5460009085906001600160a01b0316612489426003613cc7565b6040518663ffffffff1660e01b81526004016124a89493929190613a8b565b6000604051808303818588803b1580156124c157600080fd5b505af11580156124d5573d6000803e3d6000fd5b50505050505050505050565b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b03841690811790915581906125338261185d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612577826124e1565b6125d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c71565b60006125e38361185d565b9050806001600160a01b0316846001600160a01b0316148061261e5750836001600160a01b031661261384610ec0565b6001600160a01b0316145b8061226057506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff16612260565b826001600160a01b03166126658261185d565b6001600160a01b0316146126cd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c71565b6001600160a01b03821661272f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c71565b61273a838383612cb9565b6127456000826124fe565b6001600160a01b038316600090815260056020526040812080546001929061276e908490613dfd565b90915550506001600160a01b038216600090815260056020526040812080546001929061279c908490613cc7565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008281526020819052604090206001015461281a905b33611ae8565b611fdf5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b6064820152608401610c71565b6001600160a01b03811633146128ee5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610c71565b61125a8282612cdd565b6000611ae1836001600160a01b038416612d42565b6000611ae18383612e35565b6113e88282611fdf565b80601d546129319190613cc7565b601d55600a546129419082613cdf565b601e5461294e9190613cc7565b601e8190555080601760008282546129669190613cc7565b92505081905550806016600082825461297f9190613cc7565b909155505050565b612992848484612652565b61299e84848484612ebb565b611d785760405162461bcd60e51b8152600401610c7190613b08565b60606129c5826124e1565b612a2b5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610c71565b6000828152600c602052604081208054612a4490613e40565b80601f0160208091040260200160405190810160405280929190818152602001828054612a7090613e40565b8015612abd5780601f10612a9257610100808354040283529160200191612abd565b820191906000526020600020905b815481529060010190602001808311612aa057829003601f168201915b505050505090506000612ace612fc8565b9050805160001415612ae1575092915050565b815115612b13578082604051602001612afb9291906139f6565b60405160208183030381529060405292505050919050565b61226084612fd7565b6000610bc3825490565b600082815260208190526040902060010154612b4190612814565b6128ee5760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b6064820152608401610c71565b612bb08282611ae8565b61125a576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055612be63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054612c7157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610bc3565b506000610bc3565b60006001600160e01b031982166380ac58cd60e01b1480612caa57506001600160e01b03198216635b5e139f60e01b145b80610bc35750610bc3826130a1565b80612cc3600a5490565b1115612cd257612cd2816130c6565b6110598383836131de565b612ce78282611ae8565b1561125a576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015612e2b576000612d66600183613dfd565b8554909150600090612d7a90600190613dfd565b90506000866000018281548110612d9357612d93613eec565b9060005260206000200154905080876000018481548110612db657612db6613eec565b600091825260209091200155612dcd836001613cc7565b60008281526001890160205260409020558654879080612def57612def613ed6565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610bc3565b6000915050610bc3565b81546000908210612e935760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610c71565b826000018281548110612ea857612ea8613eec565b9060005260206000200154905092915050565b60006001600160a01b0384163b15612fbd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612eff903390899088908890600401613a4e565b602060405180830381600087803b158015612f1957600080fd5b505af1925050508015612f49575060408051601f3d908101601f19168201909252612f46918101906138b8565b60015b612fa3573d808015612f77576040519150601f19603f3d011682016040523d82523d6000602084013e612f7c565b606091505b508051612f9b5760405162461bcd60e51b8152600401610c7190613b08565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612260565b506001949350505050565b6060600e8054610e3d90613e40565b6060612fe2826124e1565b6130465760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c71565b6000613050612fc8565b905060008151116130705760405180602001604052806000815250611ae1565b8061307a84612162565b60405160200161308b9291906139f6565b6040516020818303038152906040529392505050565b60006001600160e01b03198216635a05180f60e01b1480610bc35750610bc382613296565b60006130d182610ba7565b9050801561125a5780601d60008282546130eb9190613dfd565b909155506021905060006130fe8461185d565b6001600160a01b0316815260208101919091526040016000205460ff166131bf57601c546001600160a01b031663a9059cbb6131398461185d565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b15801561318157600080fd5b505af1158015613195573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131b9919061381e565b506131c8565b6131c881612923565b601e546000838152601f60205260409020555050565b6001600160a01b0383166132395761323481600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b61325c565b816001600160a01b0316836001600160a01b03161461325c5761325c83826132cb565b6001600160a01b0382166132735761105981613368565b826001600160a01b0316826001600160a01b031614611059576110598282613417565b60006001600160e01b03198216637965db0b60e01b1480610bc357506301ffc9a760e01b6001600160e01b0319831614610bc3565b600060016132d884611953565b6132e29190613dfd565b600083815260096020526040902054909150808214613335576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061337a90600190613dfd565b6000838152600b6020526040812054600a80549394509092849081106133a2576133a2613eec565b9060005260206000200154905080600a83815481106133c3576133c3613eec565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a8054806133fb576133fb613ed6565b6001900381819060005260206000200160009055905550505050565b600061342283611953565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b82805461346790613e40565b90600052602060002090601f01602090048101928261348957600085556134cf565b82601f106134a257805160ff19168380011785556134cf565b828001600101855582156134cf579182015b828111156134cf5782518255916020019190600101906134b4565b506134db929150613553565b5090565b8280546134eb90613e40565b90600052602060002090601f01602090048101928261350d57600085556134cf565b82601f106135265782800160ff198235161785556134cf565b828001600101855582156134cf579182015b828111156134cf578235825591602001919060010190613538565b5b808211156134db5760008155600101613554565b600067ffffffffffffffff8084111561358357613583613f02565b604051601f8501601f19908116603f011681019082821181831017156135ab576135ab613f02565b816040528093508581528686860111156135c457600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126135ef57600080fd5b611ae183833560208501613568565b60006020828403121561361057600080fd5b8135611ae181613f18565b60006020828403121561362d57600080fd5b8151611ae181613f18565b6000806040838503121561364b57600080fd5b823561365681613f18565b9150602083013561366681613f18565b809150509250929050565b60008060006060848603121561368657600080fd5b833561369181613f18565b925060208401356136a181613f18565b929592945050506040919091013590565b600080600080608085870312156136c857600080fd5b84356136d381613f18565b935060208501356136e381613f18565b925060408501359150606085013567ffffffffffffffff81111561370657600080fd5b8501601f8101871361371757600080fd5b61372687823560208401613568565b91505092959194509250565b6000806040838503121561374557600080fd5b823561375081613f18565b9150602083013561366681613f2d565b6000806040838503121561377357600080fd5b823561377e81613f18565b946020939093013593505050565b6000806020838503121561379f57600080fd5b823567ffffffffffffffff808211156137b757600080fd5b818501915085601f8301126137cb57600080fd5b8135818111156137da57600080fd5b8660208260051b85010111156137ef57600080fd5b60209290920196919550909350505050565b60006020828403121561381357600080fd5b8135611ae181613f2d565b60006020828403121561383057600080fd5b8151611ae181613f2d565b60006020828403121561384d57600080fd5b5035919050565b6000806040838503121561386757600080fd5b82359150602083013561366681613f18565b6000806040838503121561388c57600080fd5b50508035926020909101359150565b6000602082840312156138ad57600080fd5b8135611ae181613f3b565b6000602082840312156138ca57600080fd5b8151611ae181613f3b565b600080602083850312156138e857600080fd5b823567ffffffffffffffff8082111561390057600080fd5b818501915085601f83011261391457600080fd5b81358181111561392357600080fd5b8660208285010111156137ef57600080fd5b60006020828403121561394757600080fd5b813567ffffffffffffffff81111561395e57600080fd5b612260848285016135de565b60006020828403121561397c57600080fd5b5051919050565b6000806040838503121561399657600080fd5b82359150602083013567ffffffffffffffff8111156139b457600080fd5b6139c0858286016135de565b9150509250929050565b600081518084526139e2816020860160208601613e14565b601f01601f19169290920160200192915050565b60008351613a08818460208801613e14565b835190830190613a1c818360208801613e14565b01949350505050565b60008251613a37818460208701613e14565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a81908301846139ca565b9695505050505050565b600060808201868352602060808185015281875180845260a086019150828901935060005b81811015613ad55784516001600160a01b031683529383019391830191600101613ab0565b50506001600160a01b039690961660408501525050506060015292915050565b602081526000611ae160208301846139ca565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f6175746f7374616b696e673a206d696e74696e672063757272656e746c7920646040820152661a5cd8589b195960ca1b606082015260800190565b60208082526024908201527f6175746f7374616b696e673a206d7573742073656e6420636f727265637420706040820152637269636560e01b606082015260800190565b6020808252603690820152600080516020613f528339815191526040820152756520746f20636c61696d207468652062616c616e636560501b606082015260800190565b6020808252602d908201527f6175746f7374616b696e673a20616c6c206175746f7374616b696e672068617660408201526c19481899595b881b5a5b9d1959609a1b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115613cda57613cda613eaa565b500190565b600082613cee57613cee613ec0565b500490565b600181815b80851115613d2e578160001904821115613d1457613d14613eaa565b80851615613d2157918102915b93841c9390800290613cf8565b509250929050565b6000611ae18383600082613d4c57506001610bc3565b81613d5957506000610bc3565b8160018114613d6f5760028114613d7957613d95565b6001915050610bc3565b60ff841115613d8a57613d8a613eaa565b50506001821b610bc3565b5060208310610133831016604e8410600b8410161715613db8575081810a610bc3565b613dc28383613cf3565b8060001904821115613dd657613dd6613eaa565b029392505050565b6000816000190483118215151615613df857613df8613eaa565b500290565b600082821015613e0f57613e0f613eaa565b500390565b60005b83811015613e2f578181015183820152602001613e17565b83811115611d785750506000910152565b600181811c90821680613e5457607f821691505b60208210811415613e7557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613e8f57613e8f613eaa565b5060010190565b600082613ea557613ea5613ec0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e2b57600080fd5b8015158114610e2b57600080fd5b6001600160e01b031981168114610e2b57600080fdfe6175746f7374616b696e673a206d75737420686176652061646d696e20726f6ca26469706673582212202090d82612af9a8bbef4a65754af8f4eb21b6dfe776418f65913c9786617a08c64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000214e8348c4f00000000000000000000000000000fdc977660c0603320ebcdcb63bff2123a97153d000000000000000000000000000000000000000000000000000000000000000b446f676554564865616473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000824444754564e4654000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): DogeTVHeads
Arg [1] : symbol (string): $DGTVNFT
Arg [2] : mintPrice (uint256): 150000000000000000
Arg [3] : admin (address): 0x0fDC977660c0603320ebCDCB63Bff2123A97153D

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000214e8348c4f0000
Arg [3] : 0000000000000000000000000fdc977660c0603320ebcdcb63bff2123a97153d
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 446f676554564865616473000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 24444754564e4654000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

4412:10720:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13910:137;;;;;;;;;;-1:-1:-1;13910:137:5;;;;;:::i;:::-;;:::i;:::-;;;10837:25:20;;;10825:2;10810:18;13910:137:5;;;;;;;;12375:313;;;;;;;;;;;;;:::i;11170:198::-;;;;;;;;;;-1:-1:-1;11170:198:5;;;;;:::i;:::-;;:::i;:::-;;;10664:14:20;;10657:22;10639:41;;10627:2;10612:18;11170:198:5;10499:187:20;6848:108:5;;;;;;;;;;-1:-1:-1;6848:108:5;;;;;:::i;:::-;;:::i;:::-;;9010:839;;;;;;:::i;:::-;;:::i;2456:100:7:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3923:221::-;;;;;;;;;;-1:-1:-1;3923:221:7;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9683:32:20;;;9665:51;;9653:2;9638:18;3923:221:7;9519:203:20;3453:404:7;;;;;;;;;;-1:-1:-1;3453:404:7;;;;;:::i;:::-;;:::i;12694:208:5:-;;;;;;;;;;;;;:::i;8267:81::-;;;;;;;;;;-1:-1:-1;8336:6:5;;8267:81;;8356:648;;;:::i;7813:231::-;;;;;;;;;;-1:-1:-1;7813:231:5;;;;;:::i;:::-;;:::i;1590:113:9:-;;;;;;;;;;-1:-1:-1;1678:10:9;:17;1590:113;;9857:586:5;;;;;;;;;;-1:-1:-1;9857:586:5;;;;;:::i;:::-;;:::i;4813:305:7:-;;;;;;;;;;-1:-1:-1;4813:305:7;;;;;:::i;:::-;;:::i;4273:123:0:-;;;;;;;;;;-1:-1:-1;4273:123:0;;;;;:::i;:::-;4339:7;4366:12;;;;;;;;;;:22;;;;4273:123;2201:165:1;;;;;;;;;;-1:-1:-1;2201:165:1;;;;;:::i;:::-;;:::i;1258:256:9:-;;;;;;;;;;-1:-1:-1;1258:256:9;;;;;:::i;:::-;;:::i;5152:29:5:-;;;;;;;;;;-1:-1:-1;5152:29:5;;;;-1:-1:-1;;;;;5152:29:5;;;2724:174:1;;;;;;;;;;-1:-1:-1;2724:174:1;;;;;:::i;:::-;;:::i;11525:460:5:-;;;;;;;;;;;;;:::i;5338:32::-;;;;;;;;;;;;;;;;5189:151:7;;;;;;;;;;-1:-1:-1;5189:151:7;;;;;:::i;:::-;;:::i;4662:27:5:-;;;;;;;;;;;;;:::i;12908:299::-;;;;;;;;;;;;;:::i;5375:28::-;;;;;;;;;;;;;;;;6529:94;;;;;;;;;;-1:-1:-1;6608:9:5;;6529:94;;8050:209;;;;;;;;;;-1:-1:-1;8050:209:5;;;;;:::i;:::-;;:::i;1780:233:9:-;;;;;;;;;;-1:-1:-1;1780:233:9;;;;;:::i;:::-;;:::i;5457:44:5:-;;;;;;;;;;-1:-1:-1;5457:44:5;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;5457:44:5;;;7606:201;;;;;;;;;;-1:-1:-1;7606:201:5;;;;;:::i;:::-;;:::i;4895:26::-;;;;;;;;;;;;;;;;2150:239:7;;;;;;;;;;-1:-1:-1;2150:239:7;;;;;:::i;:::-;;:::i;6201:206:5:-;;;;;;;;;;-1:-1:-1;6201:206:5;;;;;:::i;:::-;;:::i;1880:208:7:-;;;;;;;;;;-1:-1:-1;1880:208:7;;;;;:::i;:::-;;:::i;7185:296:5:-;;;;;;;;;;-1:-1:-1;7185:296:5;;;;;:::i;:::-;;:::i;5257:64::-;;;;;;;;;;-1:-1:-1;5257:64:5;;;;-1:-1:-1;;;;;5257:64:5;;;1656:145:1;;;;;;;;;;-1:-1:-1;1656:145:1;;;;;:::i;:::-;;:::i;5029:32:5:-;;;;;;;;;;-1:-1:-1;5029:32:5;;;;;;;;3945:139:0;;;;;;;;;;-1:-1:-1;3945:139:0;;;;;:::i;:::-;;:::i;6962:216:5:-;;;;;;;;;;-1:-1:-1;6962:216:5;;;;;:::i;:::-;;:::i;2625:104:7:-;;;;;;;;;;;;;:::i;4583:39:5:-;;;;;;;;;;-1:-1:-1;4583:39:5;;;;;;2401:49:0;;;;;;;;;;-1:-1:-1;2401:49:0;2446:4;2401:49;;4216:295:7;;;;;;;;;;-1:-1:-1;4216:295:7;;;;;:::i;:::-;;:::i;6740:102:5:-;;;;;;;;;;-1:-1:-1;6825:11:5;;6740:102;;5603:31;;;;;;;;;;;;;;;;4926:36;;;;;;;;;;;;;;;;6413:110;;;;;;;;;;;;;:::i;14053:233::-;;;;;;;;;;-1:-1:-1;14053:233:5;;;;;:::i;:::-;;:::i;10449:101::-;;;;;;;;;;-1:-1:-1;10449:101:5;;;;;:::i;:::-;10506:7;10528:16;;;:7;:16;;;;;;-1:-1:-1;;;;;10528:16:5;;10449:101;5411:285:7;;;;;;;;;;-1:-1:-1;5411:285:7;;;;;:::i;:::-;;:::i;4863:27:5:-;;;;;;;;;;-1:-1:-1;4863:27:5;;;;-1:-1:-1;;;4863:27:5;;;;;;10697:160;;;;;;;;;;-1:-1:-1;10697:160:5;;;;;:::i;:::-;;:::i;13213:296::-;;;;;;;;;;-1:-1:-1;13213:296:5;;;;;:::i;:::-;;:::i;1975:134:1:-;;;;;;;;;;-1:-1:-1;1975:134:1;;;;;:::i;:::-;;:::i;2459:170::-;;;;;;;;;;-1:-1:-1;2459:170:1;;;;;:::i;:::-;;:::i;4774:28:5:-;;;;;;;;;;;;;;;;4967:29;;;;;;;;;;;;;;;;6099:96;;;;;;;;;;;;;:::i;4582:164:7:-;;;;;;;;;;-1:-1:-1;4582:164:7;;;;;:::i;:::-;-1:-1:-1;;;;;4703:25:7;;;4679:4;4703:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4582:164;13515:389:5;;;;;;;;;;-1:-1:-1;13515:389:5;;;;;:::i;:::-;;:::i;5506:52::-;;;;;;;;;;-1:-1:-1;5506:52:5;;;;;:::i;:::-;;;;;;;;;;;;;;;;4834:24;;;;;;;;;;-1:-1:-1;4834:24:5;;;;-1:-1:-1;;;;;4834:24:5;;;11374:145;;;;;;;;;;;;;:::i;13910:137::-;13978:7;14018:23;;;:14;:23;;;;;;14002:13;;:39;;14018:23;14002:39;:::i;:::-;13995:46;13910:137;-1:-1:-1;;13910:137:5:o;12375:313::-;12437:7;12453:10;12466:21;12476:10;12466:9;:21::i;:::-;12453:34;;12494:13;12522:6;12518:146;12536:5;12532:1;:9;12518:146;;;12558:12;12573:34;12593:10;12605:1;12573:19;:34::i;:::-;12558:49;;12627:29;12648:7;12627:20;:29::i;:::-;12618:38;;;;:::i;:::-;;;12547:117;12543:3;;;;;:::i;:::-;;;;12518:146;;;-1:-1:-1;12677:5:5;12375:313;-1:-1:-1;;12375:313:5:o;11170:198::-;11306:4;11326:36;11350:11;11326:23;:36::i;6848:108::-;6936:14;6942:8;6936:2;:14;:::i;:::-;6927:23;;:6;:23;:::i;:::-;6913:11;:37;-1:-1:-1;;6848:108:5:o;9010:839::-;9087:7;;-1:-1:-1;;;9087:7:5;;;;9079:59;;;;-1:-1:-1;;;9079:59:5;;;;;;;:::i;:::-;;;;;;;;;9165:2;9154:8;:13;9145:74;;;;-1:-1:-1;;;9145:74:5;;24243:2:20;9145:74:5;;;24225:21:20;24282:2;24262:18;;;24255:30;24321:34;24301:18;;;24294:62;-1:-1:-1;;;24372:18:20;;;24365:45;24427:19;;9145:74:5;24041:411:20;9145:74:5;9259:11;;9248:22;;:8;:22;:::i;:::-;9234:9;:37;;9226:86;;;;-1:-1:-1;;;9226:86:5;;;;;;;:::i;:::-;9368:9;;9356:8;9328:25;:15;885:14:4;;793:114;9328:25:5;:36;;;;:::i;:::-;9327:50;9319:108;;;;-1:-1:-1;;;9319:108:5;;;;;;;:::i;:::-;9438:6;9434:381;9454:8;9450:1;:12;9434:381;;;9477:44;9483:10;9495:25;:15;885:14:4;;793:114;9495:25:5;9477:5;:44::i;:::-;9567:10;9530:7;:34;9538:25;:15;885:14:4;;793:114;9538:25:5;9530:34;;;;;;;;;;;;:47;;;;;-1:-1:-1;;;;;9530:47:5;;;;;-1:-1:-1;;;;;9530:47:5;;;;;;9630:13;;9586:14;:41;9601:25;:15;885:14:4;;793:114;9601:25:5;9586:41;;;;;;;;;;;-1:-1:-1;9586:41:5;:57;9652:119;9665:25;:15;885:14:4;;793:114;9665:25:5;9716:43;9733:25;:15;885:14:4;;793:114;9733:25:5;9716:16;:43::i;:::-;9699:70;;;;;;;;:::i;:::-;;;;;;;;;;;;;9652:12;:119::i;:::-;9780:27;:15;1004:19:4;;1022:1;1004:19;;;915:127;9780:27:5;9464:3;;;;:::i;:::-;;;;9434:381;;;;9821:22;9834:8;9821:12;:22::i;:::-;9010:839;:::o;2456:100:7:-;2510:13;2543:5;2536:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2456:100;:::o;3923:221::-;3999:7;4027:16;4035:7;4027;:16::i;:::-;4019:73;;;;-1:-1:-1;;;4019:73:7;;22156:2:20;4019:73:7;;;22138:21:20;22195:2;22175:18;;;22168:30;22234:34;22214:18;;;22207:62;-1:-1:-1;;;22285:18:20;;;22278:42;22337:19;;4019:73:7;21954:408:20;4019:73:7;-1:-1:-1;4112:24:7;;;;:15;:24;;;;;;-1:-1:-1;;;;;4112:24:7;;3923:221::o;3453:404::-;3534:13;3550:23;3565:7;3550:14;:23::i;:::-;3534:39;;3598:5;-1:-1:-1;;;;;3592:11:7;:2;-1:-1:-1;;;;;3592:11:7;;;3584:57;;;;-1:-1:-1;;;3584:57:7;;25075:2:20;3584:57:7;;;25057:21:20;25114:2;25094:18;;;25087:30;25153:34;25133:18;;;25126:62;-1:-1:-1;;;25204:18:20;;;25197:31;25245:19;;3584:57:7;24873:397:20;3584:57:7;681:10:3;-1:-1:-1;;;;;3662:21:7;;;;:69;;-1:-1:-1;3687:44:7;3711:5;681:10:3;4582:164:7;:::i;3687:44::-;3654:161;;;;-1:-1:-1;;;3654:161:7;;19302:2:20;3654:161:7;;;19284:21:20;19341:2;19321:18;;;19314:30;19380:34;19360:18;;;19353:62;19451:26;19431:18;;;19424:54;19495:19;;3654:161:7;19100:420:20;3654:161:7;3828:21;3837:2;3841:7;3828:8;:21::i;:::-;3523:334;3453:404;;:::o;12694:208:5:-;12736:41;2446:4:0;681:10:3;3945:139:0;:::i;12736:41:5:-;12728:102;;;;-1:-1:-1;;;12728:102:5;;15621:2:20;12728:102:5;;;15603:21:20;15660:2;15640:18;;;15633:30;-1:-1:-1;;;;;;;;;;;15679:18:20;;;15672:62;-1:-1:-1;;;15750:18:20;;;15743:46;15806:19;;12728:102:5;15419:412:20;12728:102:5;12853:4;12840:9;;:17;12837:54;;12880:3;12867:9;;:16;;;;;;;:::i;:::-;;;;-1:-1:-1;;12837:54:5;12694:208::o;8356:648::-;8404:7;;-1:-1:-1;;;8404:7:5;;;;8396:59;;;;-1:-1:-1;;;8396:59:5;;;;;;;:::i;:::-;8484:11;;8470:9;:26;;8462:75;;;;-1:-1:-1;;;8462:75:5;;;;;;;:::i;:::-;8586:9;;8553:15;885:14:4;8553:29:5;;8581:1;8553:29;:::i;:::-;8552:43;8544:101;;;;-1:-1:-1;;;8544:101:5;;;;;;;:::i;:::-;8654:44;8660:10;8672:25;:15;885:14:4;;793:114;8654:44:5;8742:10;8705:7;:34;8713:25;:15;885:14:4;;793:114;8713:25:5;8705:34;;;;;;;;;;;;:47;;;;;-1:-1:-1;;;;;8705:47:5;;;;;-1:-1:-1;;;;;8705:47:5;;;;;;8803:13;;8759:14;:41;8774:25;:15;885:14:4;;793:114;8774:25:5;8759:41;;;;;;;;;;;-1:-1:-1;8759:41:5;:57;8823:119;8836:25;:15;885:14:4;;793:114;8823:119:5;8949:27;:15;1004:19:4;;1022:1;1004:19;;;915:127;8949:27:5;8983:15;8996:1;8983:12;:15::i;7813:231::-;7900:41;2446:4:0;681:10:3;3945:139:0;:::i;7900:41:5:-;7892:107;;;;-1:-1:-1;;;7892:107:5;;27497:2:20;7892:107:5;;;27479:21:20;27536:2;27516:18;;;27509:30;-1:-1:-1;;;;;;;;;;;27555:18:20;;;27548:62;-1:-1:-1;;;27626:18:20;;;27619:51;27687:19;;7892:107:5;27295:417:20;7892:107:5;8006:32;8019:7;8028:9;8006:12;:32::i;:::-;7813:231;;:::o;9857:586::-;9932:41;2446:4:0;681:10:3;3945:139:0;:::i;9932:41:5:-;9924:103;;;;-1:-1:-1;;;9924:103:5;;14089:2:20;9924:103:5;;;14071:21:20;14128:2;14108:18;;;14101:30;-1:-1:-1;;;;;;;;;;;14147:18:20;;;14140:62;-1:-1:-1;;;14218:18:20;;;14211:47;14275:19;;9924:103:5;13887:413:20;9924:103:5;10043:9;10038:400;10058:21;;;10038:400;;;10094:47;10100:10;;10111:1;10100:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;10115:15;885:14:4;9477:5:5;:44::i;10094:47::-;10187:10;;10198:1;10187:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;10150:7;:34;10158:25;:15;885:14:4;;793:114;10158:25:5;10150:34;;;;;;;;;;;;:50;;;;;-1:-1:-1;;;;;10150:50:5;;;;;-1:-1:-1;;;;;10150:50:5;;;;;;10253:13;;10209:14;:41;10224:25;:15;885:14:4;;793:114;10224:25:5;10209:41;;;;;;;;;;;-1:-1:-1;10209:41:5;:57;10275:119;10288:25;:15;885:14:4;;793:114;10275:119:5;10403:27;:15;1004:19:4;;1022:1;1004:19;;;915:127;10403:27:5;10081:3;;;;:::i;:::-;;;;10038:400;;4813:305:7;4974:41;681:10:3;5007:7:7;4974:18;:41::i;:::-;4966:103;;;;-1:-1:-1;;;4966:103:7;;;;;;;:::i;:::-;5082:28;5092:4;5098:2;5102:7;5082:9;:28::i;2201:165:1:-;2286:30;2302:4;2308:7;2286:15;:30::i;:::-;2327:18;;;;:12;:18;;;;;:31;;2350:7;2327:22;:31::i;1258:256:9:-;1355:7;1391:23;1408:5;1391:16;:23::i;:::-;1383:5;:31;1375:87;;;;-1:-1:-1;;;1375:87:9;;13258:2:20;1375:87:9;;;13240:21:20;13297:2;13277:18;;;13270:30;13336:34;13316:18;;;13309:62;-1:-1:-1;;;13387:18:20;;;13380:41;13438:19;;1375:87:9;13056:407:20;1375:87:9;-1:-1:-1;;;;;;1480:19:9;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1258:256::o;2724:174:1:-;2812:33;2831:4;2837:7;2812:18;:33::i;:::-;2856:18;;;;:12;:18;;;;;:34;;2882:7;2856:25;:34::i;11525:460:5:-;11571:10;11584:21;11594:10;11584:9;:21::i;:::-;11571:34;;11612:13;11640:6;11636:229;11654:5;11650:1;:9;11636:229;;;11676:12;11691:34;11711:10;11723:1;11691:19;:34::i;:::-;11676:49;;11778:29;11799:7;11778:20;:29::i;:::-;11769:38;;;;:::i;:::-;11844:13;;11818:23;;;;:14;:23;;;;;;:39;;;;11769:38;-1:-1:-1;11661:3:5;;;;:::i;:::-;;;;11636:229;;;-1:-1:-1;11874:9:5;;11871:109;;11902:4;;11895:40;;-1:-1:-1;;;11895:40:5;;11917:10;11895:40;;;10394:51:20;10461:18;;;10454:34;;;-1:-1:-1;;;;;11902:4:5;;;;11895:21;;10367:18:20;;11895:40:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11967:5;11946:17;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;11564:421:5;;11525:460::o;5189:151:7:-;5293:39;5310:4;5316:2;5320:7;5293:39;;;;;;;;;;;;:16;:39::i;4662:27:5:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12908:299::-;12965:41;2446:4:0;681:10:3;3945:139:0;:::i;12965:41:5:-;12957:108;;;;-1:-1:-1;;;12957:108:5;;;;;;;:::i;:::-;13162:6;;13154:47;;-1:-1:-1;;;;;13162:6:5;;;;13179:21;13154:47;;;;;13162:6;13154:47;13162:6;13154:47;13179:21;13162:6;13154:47;;;;;;;;;;;;;;;;;;;8050:209;8124:41;2446:4:0;681:10:3;3945:139:0;:::i;8124:41:5:-;8116:113;;;;-1:-1:-1;;;8116:113:5;;22569:2:20;8116:113:5;;;22551:21:20;22608:2;22588:18;;;22581:30;-1:-1:-1;;;;;;;;;;;22627:18:20;;;22620:62;22718:29;22698:18;;;22691:57;22765:19;;8116:113:5;22367:423:20;8116:113:5;8236:7;:17;;;;;-1:-1:-1;;;8236:17:5;-1:-1:-1;;;;8236:17:5;;;;;;;;;8050:209::o;1780:233:9:-;1855:7;1891:30;1678:10;:17;;1590:113;1891:30;1883:5;:38;1875:95;;;;-1:-1:-1;;;1875:95:9;;26245:2:20;1875:95:9;;;26227:21:20;26284:2;26264:18;;;26257:30;26323:34;26303:18;;;26296:62;-1:-1:-1;;;26374:18:20;;;26367:42;26426:19;;1875:95:9;26043:408:20;1875:95:9;1988:10;1999:5;1988:17;;;;;;;;:::i;:::-;;;;;;;;;1981:24;;1780:233;;;:::o;7606:201:5:-;7673:41;2446:4:0;681:10:3;3945:139:0;:::i;7673:41:5:-;7665:106;;;;-1:-1:-1;;;7665:106:5;;18051:2:20;7665:106:5;;;18033:21:20;18090:2;18070:18;;;18063:30;-1:-1:-1;;;;;;;;;;;18109:18:20;;;18102:62;-1:-1:-1;;;18180:18:20;;;18173:50;18240:19;;7665:106:5;17849:416:20;7665:106:5;7778:23;;;;:13;;:23;;;;;:::i;2150:239:7:-;2222:7;2258:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2258:16:7;2293:19;2285:73;;;;-1:-1:-1;;;2285:73:7;;20138:2:20;2285:73:7;;;20120:21:20;20177:2;20157:18;;;20150:30;20216:34;20196:18;;;20189:62;-1:-1:-1;;;20267:18:20;;;20260:39;20316:19;;2285:73:7;19936:405:20;6201:206:5;6274:41;2446:4:0;681:10:3;3945:139:0;:::i;6274:41:5:-;6266:105;;;;-1:-1:-1;;;6266:105:5;;23823:2:20;6266:105:5;;;23805:21:20;23862:2;23842:18;;;23835:30;23901:34;23881:18;;;23874:62;-1:-1:-1;;;23952:18:20;;;23945:49;24011:19;;6266:105:5;23621:415:20;6266:105:5;6382:19;:13;6398:3;;6382:19;:::i;1880:208:7:-;1952:7;-1:-1:-1;;;;;1980:19:7;;1972:74;;;;-1:-1:-1;;;1972:74:7;;19727:2:20;1972:74:7;;;19709:21:20;19766:2;19746:18;;;19739:30;19805:34;19785:18;;;19778:62;-1:-1:-1;;;19856:18:20;;;19849:40;19906:19;;1972:74:7;19525:406:20;1972:74:7;-1:-1:-1;;;;;;2064:16:7;;;;;:9;:16;;;;;;;1880:208::o;7185:296:5:-;7278:41;2446:4:0;681:10:3;3945:139:0;:::i;7278:41:5:-;7270:111;;;;-1:-1:-1;;;7270:111:5;;16038:2:20;7270:111:5;;;16020:21:20;16077:2;16057:18;;;16050:30;16116:34;16096:18;;;16089:62;16187:27;16167:18;;;16160:55;16232:19;;7270:111:5;15836:421:20;7270:111:5;7392:6;7388:88;7404:14;;;7388:88;;;7464:4;7433:19;:28;7453:4;;7458:1;7453:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;7433:28:5;;;;;;;;;;;;-1:-1:-1;7433:28:5;:35;;-1:-1:-1;;7433:35:5;;;;;;;;;;7420:3;;;;:::i;:::-;;;;7388:88;;1656:145:1;1738:7;1765:18;;;:12;:18;;;;;:28;;1787:5;1765:21;:28::i;:::-;1758:35;1656:145;-1:-1:-1;;;1656:145:1:o;3945:139:0:-;4023:4;4047:12;;;;;;;;;;;-1:-1:-1;;;;;4047:29:0;;;;;;;;;;;;;;;3945:139::o;6962:216:5:-;7032:41;2446:4:0;681:10:3;3945:139:0;:::i;7032:41:5:-;7024:101;;;;-1:-1:-1;;;7024:101:5;;24659:2:20;7024:101:5;;;24641:21:20;24698:2;24678:18;;;24671:30;-1:-1:-1;;;;;;;;;;;24717:18:20;;;24710:62;-1:-1:-1;;;24788:18:20;;;24781:45;24843:19;;7024:101:5;24457:411:20;7024:101:5;7132:40;2446:4:0;7163:8:5;7132:10;:40::i;2625:104:7:-;2681:13;2714:7;2707:14;;;;;:::i;4216:295::-;-1:-1:-1;;;;;4319:24:7;;681:10:3;4319:24:7;;4311:62;;;;-1:-1:-1;;;4311:62:7;;17274:2:20;4311:62:7;;;17256:21:20;17313:2;17293:18;;;17286:30;17352:27;17332:18;;;17325:55;17397:18;;4311:62:7;17072:349:20;4311:62:7;681:10:3;4386:32:7;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4386:42:7;;;;;;;;;;;;:53;;-1:-1:-1;;4386:53:7;;;;;;;;;;4455:48;;10639:41:20;;;4386:42:7;;681:10:3;4455:48:7;;10612:18:20;4455:48:7;;;;;;;4216:295;;:::o;6413:110:5:-;6466:11;6492:25;:15;885:14:4;;793:114;6492:25:5;6485:32;;6413:110;:::o;14053:233::-;14121:4;;14114:37;;-1:-1:-1;;;14114:37:5;;14145:4;14114:37;;;9665:51:20;14096:15:5;;-1:-1:-1;;;;;14121:4:5;;14114:22;;9638:18:20;;14114:37:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14096:55;;14196:7;14186:6;14166:17;;:26;;;;:::i;:::-;:37;;14158:71;;;;-1:-1:-1;;;14158:71:5;;25477:2:20;14158:71:5;;;25459:21:20;25516:2;25496:18;;;25489:30;-1:-1:-1;;;25535:18:20;;;25528:51;25596:18;;14158:71:5;25275:345:20;14158:71:5;14236:44;14262:17;;14252:7;:27;;;;:::i;:::-;14236:15;:44::i;5411:285:7:-;5543:41;681:10:3;5576:7:7;5543:18;:41::i;:::-;5535:103;;;;-1:-1:-1;;;5535:103:7;;;;;;;:::i;:::-;5649:39;5663:4;5669:2;5673:7;5682:5;5649:13;:39::i;:::-;5411:285;;;;:::o;10697:160:5:-;10788:13;10817:34;10843:7;10817:25;:34::i;13213:296::-;13283:41;2446:4:0;681:10:3;3945:139:0;:::i;13283:41:5:-;13275:108;;;;-1:-1:-1;;;13275:108:5;;26658:2:20;13275:108:5;;;26640:21:20;26697:2;26677:18;;;26670:30;-1:-1:-1;;;;;;;;;;;26716:18:20;;;26709:62;-1:-1:-1;;;26787:18:20;;;26780:52;26849:19;;13275:108:5;26456:418:20;13275:108:5;13478:14;:25;;-1:-1:-1;;;;;;13478:25:5;-1:-1:-1;;;;;13478:25:5;;;;;;;;;;13213:296::o;1975:134:1:-;2047:7;2074:18;;;:12;:18;;;;;:27;;:25;:27::i;2459:170::-;2545:31;2562:4;2568:7;2545:16;:31::i;6099:96:5:-;6143:13;6176;6169:20;;;;;:::i;13515:389::-;13589:41;2446:4:0;681:10:3;3945:139:0;:::i;13589:41:5:-;13581:108;;;;-1:-1:-1;;;13581:108:5;;;;;;;:::i;:::-;13804:4;;-1:-1:-1;;;;;13786:22:5;;;13804:4;;13786:22;;13778:55;;;;-1:-1:-1;;;13778:55:5;;14507:2:20;13778:55:5;;;14489:21:20;14546:2;14526:18;;;14519:30;-1:-1:-1;;;14565:18:20;;;14558:50;14625:18;;13778:55:5;14305:344:20;13778:55:5;13867:30;;-1:-1:-1;;;13867:30:5;;13891:4;13867:30;;;9665:51:20;-1:-1:-1;;;;;13840:14:5;;;;;13855:10;;13840:14;;13867:15;;9638:18:20;;13867:30:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13840:58;;-1:-1:-1;;;;;;13840:58:5;;;;;;;-1:-1:-1;;;;;10412:32:20;;;13840:58:5;;;10394:51:20;10461:18;;;10454:34;10367:18;;13840:58:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;11374:145::-;11418:7;11438:13;1678:10:9;:17;;1590:113;11438:13:5;11435:31;;-1:-1:-1;11465:1:5;;11374:145::o;11435:31::-;1678:10:9;:17;11482::5;;:31;;;;:::i;6678:112:0:-;6757:25;6768:4;6774:7;6757:10;:25::i;6621:152:12:-;6691:4;6715:50;6720:3;-1:-1:-1;;;;;6740:23:12;;6715:4;:50::i;937:237:9:-;1039:4;-1:-1:-1;;;;;;1063:50:9;;-1:-1:-1;;;1063:50:9;;:103;;;1130:36;1154:11;1130:23;:36::i;9077:382:7:-;-1:-1:-1;;;;;9157:16:7;;9149:61;;;;-1:-1:-1;;;9149:61:7;;21377:2:20;9149:61:7;;;21359:21:20;;;21396:18;;;21389:30;21455:34;21435:18;;;21428:62;21507:18;;9149:61:7;21175:356:20;9149:61:7;9230:16;9238:7;9230;:16::i;:::-;9229:17;9221:58;;;;-1:-1:-1;;;9221:58:7;;14856:2:20;9221:58:7;;;14838:21:20;14895:2;14875:18;;;14868:30;14934;14914:18;;;14907:58;14982:18;;9221:58:7;14654:352:20;9221:58:7;9292:45;9321:1;9325:2;9329:7;9292:20;:45::i;:::-;-1:-1:-1;;;;;9350:13:7;;;;;;:9;:13;;;;;:18;;9367:1;;9350:13;:18;;9367:1;;9350:18;:::i;:::-;;;;-1:-1:-1;;9379:16:7;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9379:21:7;-1:-1:-1;;;;;9379:21:7;;;;;;;;9418:33;;9379:16;;;9418:33;;9379:16;;9418:33;9077:382;;:::o;284:723:19:-;340:13;561:10;557:53;;-1:-1:-1;;588:10:19;;;;;;;;;;;;-1:-1:-1;;;588:10:19;;;;;284:723::o;557:53::-;635:5;620:12;676:78;683:9;;676:78;;709:8;;;;:::i;:::-;;-1:-1:-1;732:10:19;;-1:-1:-1;740:2:19;732:10;;:::i;:::-;;;676:78;;;764:19;796:6;786:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;786:17:19;;764:39;;814:154;821:10;;814:154;;848:11;858:1;848:11;;:::i;:::-;;-1:-1:-1;917:10:19;925:2;917:5;:10;:::i;:::-;904:24;;:2;:24;:::i;:::-;891:39;;874:6;881;874:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;874:56:19;;;;;;;;-1:-1:-1;945:11:19;954:2;945:11;;:::i;:::-;;;814:154;;;992:6;284:723;-1:-1:-1;;;;284:723:19:o;1240:217:11:-;1340:16;1348:7;1340;:16::i;:::-;1332:75;;;;-1:-1:-1;;;1332:75:11;;20548:2:20;1332:75:11;;;20530:21:20;20587:2;20567:18;;;20560:30;20626:34;20606:18;;;20599:62;-1:-1:-1;;;20677:18:20;;;20670:44;20731:19;;1332:75:11;20346:410:20;1332:75:11;1418:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;14292:591:5:-;14347:16;14375:11;;14366:6;:20;;;;:::i;:::-;14347:39;;14457:22;14482:11;14457:36;;14502:16;14553:3;14541:10;;14521:17;:30;;;;:::i;:::-;:35;;;;:::i;:::-;14573:14;;14565:42;;14502:54;;-1:-1:-1;;;;;;14573:14:5;;14565:42;;;;;14502:54;;14573:14;14565:42;14573:14;14565:42;14502:54;14573:14;14565:42;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14640:16:5;;;14654:1;14640:16;;;;;;;;14616:21;;14640:16;;;;;;;;-1:-1:-1;;14685:4:5;;14675:7;;;;-1:-1:-1;;;;;;14685:4:5;;14675:7;;-1:-1:-1;14685:4:5;;14675:7;;;;;;:::i;:::-;-1:-1:-1;;;;;14675:14:5;;;:7;;;;;;;;;;:14;;;;14718:6;;:13;;;-1:-1:-1;;;14718:13:5;;;;:6;;;;;:11;;:13;;;;;14675:7;;14718:13;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14708:4;14713:1;14708:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;14708:23:5;;;:7;;;;;;;;;:23;14740:6;;;:57;14805:28;14825:8;14805:17;:28;:::i;:::-;14844:11;;14835:1;;14838:4;;-1:-1:-1;;;;;14844:11:5;14857:19;:15;14875:1;14857:19;:::i;:::-;14740:137;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14338:545;;;;14292:591;:::o;7163:127:7:-;7228:4;7252:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7252:16:7;:30;;;7163:127::o;11047:174::-;11122:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11122:29:7;-1:-1:-1;;;;;11122:29:7;;;;;;;;:24;;11176:23;11122:24;11176:14;:23::i;:::-;-1:-1:-1;;;;;11167:46:7;;;;;;;;;;;11047:174;;:::o;7457:355::-;7550:4;7575:16;7583:7;7575;:16::i;:::-;7567:73;;;;-1:-1:-1;;;7567:73:7;;18472:2:20;7567:73:7;;;18454:21:20;18511:2;18491:18;;;18484:30;18550:34;18530:18;;;18523:62;-1:-1:-1;;;18601:18:20;;;18594:42;18653:19;;7567:73:7;18270:408:20;7567:73:7;7651:13;7667:23;7682:7;7667:14;:23::i;:::-;7651:39;;7720:5;-1:-1:-1;;;;;7709:16:7;:7;-1:-1:-1;;;;;7709:16:7;;:51;;;;7753:7;-1:-1:-1;;;;;7729:31:7;:20;7741:7;7729:11;:20::i;:::-;-1:-1:-1;;;;;7729:31:7;;7709:51;:94;;;-1:-1:-1;;;;;;4703:25:7;;;4679:4;4703:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7764:39;4582:164;10385:544;10510:4;-1:-1:-1;;;;;10483:31:7;:23;10498:7;10483:14;:23::i;:::-;-1:-1:-1;;;;;10483:31:7;;10475:85;;;;-1:-1:-1;;;10475:85:7;;22997:2:20;10475:85:7;;;22979:21:20;23036:2;23016:18;;;23009:30;23075:34;23055:18;;;23048:62;-1:-1:-1;;;23126:18:20;;;23119:39;23175:19;;10475:85:7;22795:405:20;10475:85:7;-1:-1:-1;;;;;10579:16:7;;10571:65;;;;-1:-1:-1;;;10571:65:7;;16869:2:20;10571:65:7;;;16851:21:20;16908:2;16888:18;;;16881:30;16947:34;16927:18;;;16920:62;-1:-1:-1;;;16998:18:20;;;16991:34;17042:19;;10571:65:7;16667:400:20;10571:65:7;10649:39;10670:4;10676:2;10680:7;10649:20;:39::i;:::-;10753:29;10770:1;10774:7;10753:8;:29::i;:::-;-1:-1:-1;;;;;10795:15:7;;;;;;:9;:15;;;;;:20;;10814:1;;10795:15;:20;;10814:1;;10795:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10826:13:7;;;;;;:9;:13;;;;;:18;;10843:1;;10826:13;:18;;10843:1;;10826:18;:::i;:::-;;;;-1:-1:-1;;10855:16:7;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10855:21:7;-1:-1:-1;;;;;10855:21:7;;;;;;;;;10894:27;;10855:16;;10894:27;;;;;;;10385:544;;;:::o;4658:232:0:-;4339:7;4366:12;;;;;;;;;;:22;;;4751:41;;4759:18;681:10:3;3945:139:0;:::i;4751:41::-;4743:101;;;;-1:-1:-1;;;4743:101:0;;12842:2:20;4743:101:0;;;12824:21:20;12881:2;12861:18;;;12854:30;12920:34;12900:18;;;12893:62;-1:-1:-1;;;12971:18:20;;;12964:45;13026:19;;4743:101:0;12640:411:20;5877:218:0;-1:-1:-1;;;;;5973:23:0;;681:10:3;5973:23:0;5965:83;;;;-1:-1:-1;;;5965:83:0;;27081:2:20;5965:83:0;;;27063:21:20;27120:2;27100:18;;;27093:30;27159:34;27139:18;;;27132:62;-1:-1:-1;;;27210:18:20;;;27203:45;27265:19;;5965:83:0;26879:411:20;5965:83:0;6061:26;6073:4;6079:7;6061:11;:26::i;6949:158:12:-;7022:4;7046:53;7054:3;-1:-1:-1;;;;;7074:23:12;;7046:7;:53::i;7907:158::-;7981:7;8032:22;8036:3;8048:5;8032:3;:22::i;2991:169:1:-;3079:31;3096:4;3102:7;3079:16;:31::i;14889:239:5:-;14986:6;14966:17;;:26;;;;:::i;:::-;14945:17;:47;1678:10:9;:17;15032:20:5;;:6;:20;:::i;:::-;15015:13;;:38;;;;:::i;:::-;14999:13;:54;;;;15078:6;15060:14;;:24;;;;;;;:::i;:::-;;;;;;;;15116:6;15091:21;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;;;14889:239:5:o;6578:272:7:-;6692:28;6702:4;6708:2;6712:7;6692:9;:28::i;:::-;6739:48;6762:4;6768:2;6772:7;6781:5;6739:22;:48::i;:::-;6731:111;;;;-1:-1:-1;;;6731:111:7;;;;;;;:::i;405:679:11:-;478:13;512:16;520:7;512;:16::i;:::-;504:78;;;;-1:-1:-1;;;504:78:11;;21738:2:20;504:78:11;;;21720:21:20;21777:2;21757:18;;;21750:30;21816:34;21796:18;;;21789:62;-1:-1:-1;;;21867:18:20;;;21860:47;21924:19;;504:78:11;21536:413:20;504:78:11;595:23;621:19;;;:10;:19;;;;;595:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;651:18;672:10;:8;:10::i;:::-;651:31;;764:4;758:18;780:1;758:23;754:72;;;-1:-1:-1;805:9:11;405:679;-1:-1:-1;;405:679:11:o;754:72::-;930:23;;:27;926:108;;1005:4;1011:9;988:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;974:48;;;;405:679;;;:::o;926:108::-;1053:23;1068:7;1053:14;:23::i;7446:117:12:-;7509:7;7536:19;7544:3;4203:18;;4120:109;5135:235:0;4339:7;4366:12;;;;;;;;;;:22;;;5229:41;;5237:18;4273:123;5229:41;5221:102;;;;-1:-1:-1;;;5221:102:0;;18885:2:20;5221:102:0;;;18867:21:20;18924:2;18904:18;;;18897:30;18963:34;18943:18;;;18936:62;-1:-1:-1;;;19014:18:20;;;19007:46;19070:19;;5221:102:0;18683:412:20;7125:229:0;7200:22;7208:4;7214:7;7200;:22::i;:::-;7195:152;;7239:6;:12;;;;;;;;;;;-1:-1:-1;;;;;7239:29:0;;;;;;;;;:36;;-1:-1:-1;;7239:36:0;7271:4;7239:36;;;7322:12;681:10:3;;601:98;7322:12:0;-1:-1:-1;;;;;7295:40:0;7313:7;-1:-1:-1;;;;;7295:40:0;7307:4;7295:40;;;;;;;;;;7125:229;;:::o;1685:414:12:-;1748:4;4002:19;;;:12;;;:19;;;;;;1765:327;;-1:-1:-1;1808:23:12;;;;;;;;:11;:23;;;;;;;;;;;;;1991:18;;1969:19;;;:12;;;:19;;;;;;:40;;;;2024:11;;1765:327;-1:-1:-1;2075:5:12;2068:12;;1524:292:7;1626:4;-1:-1:-1;;;;;;1650:40:7;;-1:-1:-1;;;1650:40:7;;:105;;-1:-1:-1;;;;;;;1707:48:7;;-1:-1:-1;;;1707:48:7;1650:105;:158;;;;1772:36;1796:11;1772:23;:36::i;10865:239:5:-;11017:7;11001:13;1678:10:9;:17;;1590:113;11001:13:5;:23;10997:49;;;11026:20;11038:7;11026:11;:20::i;:::-;11053:45;11080:4;11086:2;11090:7;11053:26;:45::i;7362:230:0:-;7437:22;7445:4;7451:7;7437;:22::i;:::-;7433:152;;;7508:5;7476:12;;;;;;;;;;;-1:-1:-1;;;;;7476:29:0;;;;;;;;;;:37;;-1:-1:-1;;7476:37:0;;;7533:40;681:10:3;;7476:12:0;;7533:40;;7508:5;7533:40;7362:230;;:::o;2275:1544:12:-;2341:4;2480:19;;;:12;;;:19;;;;;;2516:15;;2512:1300;;2878:21;2902:14;2915:1;2902:10;:14;:::i;:::-;2951:18;;2878:38;;-1:-1:-1;2931:17:12;;2951:22;;2972:1;;2951:22;:::i;:::-;2931:42;;3218:17;3238:3;:11;;3250:9;3238:22;;;;;;;;:::i;:::-;;;;;;;;;3218:42;;3384:9;3355:3;:11;;3367:13;3355:26;;;;;;;;:::i;:::-;;;;;;;;;;:38;3487:17;:13;3503:1;3487:17;:::i;:::-;3461:23;;;;:12;;;:23;;;;;:43;3613:17;;3461:3;;3613:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3708:3;:12;;:19;3721:5;3708:19;;;;;;;;;;;3701:26;;;3751:4;3744:11;;;;;;;;2512:1300;3795:5;3788:12;;;;;4573:204;4668:18;;4640:7;;4668:26;-1:-1:-1;4660:73:12;;;;-1:-1:-1;;;4660:73:12;;12439:2:20;4660:73:12;;;12421:21:20;12478:2;12458:18;;;12451:30;12517:34;12497:18;;;12490:62;-1:-1:-1;;;12568:18:20;;;12561:32;12610:19;;4660:73:12;12237:398:20;4660:73:12;4751:3;:11;;4763:5;4751:18;;;;;;;;:::i;:::-;;;;;;;;;4744:25;;4573:204;;;;:::o;11786:843:7:-;11907:4;-1:-1:-1;;;;;11933:13:7;;1110:20:2;1149:8;11929:693:7;;11969:72;;-1:-1:-1;;;11969:72:7;;-1:-1:-1;;;;;11969:36:7;;;;;:72;;681:10:3;;12020:4:7;;12026:7;;12035:5;;11969:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11969:72:7;;;;;;;;-1:-1:-1;;11969:72:7;;;;;;;;;;;;:::i;:::-;;;11965:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12215:13:7;;12211:341;;12258:60;;-1:-1:-1;;;12258:60:7;;;;;;;:::i;12211:341::-;12502:6;12496:13;12487:6;12483:2;12479:15;12472:38;11965:602;-1:-1:-1;;;;;;12092:55:7;-1:-1:-1;;;12092:55:7;;-1:-1:-1;12085:62:7;;11929:693;-1:-1:-1;12606:4:7;11786:843;;;;;;:::o;7488:110:5:-;7548:13;7579;7572:20;;;;;:::i;2800:360:7:-;2873:13;2907:16;2915:7;2907;:16::i;:::-;2899:76;;;;-1:-1:-1;;;2899:76:7;;23407:2:20;2899:76:7;;;23389:21:20;23446:2;23426:18;;;23419:30;23485:34;23465:18;;;23458:62;-1:-1:-1;;;23536:18:20;;;23529:45;23591:19;;2899:76:7;23205:411:20;2899:76:7;2988:21;3012:10;:8;:10::i;:::-;2988:34;;3064:1;3046:7;3040:21;:25;:112;;;;;;;;;;;;;;;;;3105:7;3114:18;:7;:16;:18::i;:::-;3088:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3033:119;2800:360;-1:-1:-1;;;2800:360:7:o;830:227:1:-;915:4;-1:-1:-1;;;;;;939:57:1;;-1:-1:-1;;;939:57:1;;:110;;;1013:36;1037:11;1013:23;:36::i;11991:378:5:-;12042:13;12058:29;12079:7;12058:20;:29::i;:::-;12042:45;-1:-1:-1;12097:9:5;;12094:270;;12137:5;12116:17;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;12155:19:5;;-1:-1:-1;12155:37:5;12175:16;12183:7;12175;:16::i;:::-;-1:-1:-1;;;;;12155:37:5;;;;;;;;;;;;-1:-1:-1;12155:37:5;;;;12151:158;;12213:4;;-1:-1:-1;;;;;12213:4:5;12206:21;12228:16;12236:7;12228;:16::i;:::-;12206:46;;-1:-1:-1;;;;;;12206:46:5;;;;;;;-1:-1:-1;;;;;10412:32:20;;;12206:46:5;;;10394:51:20;10461:18;;;10454:34;;;10367:18;;12206:46:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12151:158;;;12277:22;12293:5;12277:15;:22::i;:::-;12343:13;;12317:23;;;;:14;:23;;;;;:39;12035:334;11991:378;:::o;2626:555:9:-;-1:-1:-1;;;;;2798:18:9;;2794:187;;2833:40;2865:7;4008:10;:17;;3981:24;;;;:15;:24;;;;;:44;;;4036:24;;;;;;;;;;;;3904:164;2833:40;2794:187;;;2903:2;-1:-1:-1;;;;;2895:10:9;:4;-1:-1:-1;;;;;2895:10:9;;2891:90;;2922:47;2955:4;2961:7;2922:32;:47::i;:::-;-1:-1:-1;;;;;2995:16:9;;2991:183;;3028:45;3065:7;3028:36;:45::i;2991:183::-;3101:4;-1:-1:-1;;;;;3095:10:9;:2;-1:-1:-1;;;;;3095:10:9;;3091:83;;3122:40;3150:2;3154:7;3122:27;:40::i;3636:217:0:-;3721:4;-1:-1:-1;;;;;;3745:47:0;;-1:-1:-1;;;3745:47:0;;:100;;-1:-1:-1;;;;;;;;;;898:40:6;;;3809:36:0;789:157:6;4695:988:9;4961:22;5011:1;4986:22;5003:4;4986:16;:22::i;:::-;:26;;;;:::i;:::-;5023:18;5044:26;;;:17;:26;;;;;;4961:51;;-1:-1:-1;5177:28:9;;;5173:328;;-1:-1:-1;;;;;5244:18:9;;5222:19;5244:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5295:30;;;;;;:44;;;5412:30;;:17;:30;;;;;:43;;;5173:328;-1:-1:-1;5597:26:9;;;;:17;:26;;;;;;;;5590:33;;;-1:-1:-1;;;;;5641:18:9;;;;;:12;:18;;;;;:34;;;;;;;5634:41;4695:988::o;5978:1079::-;6256:10;:17;6231:22;;6256:21;;6276:1;;6256:21;:::i;:::-;6288:18;6309:24;;;:15;:24;;;;;;6682:10;:26;;6231:46;;-1:-1:-1;6309:24:9;;6231:46;;6682:26;;;;;;:::i;:::-;;;;;;;;;6660:48;;6746:11;6721:10;6732;6721:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6826:28;;;:15;:28;;;;;;;:41;;;6998:24;;;;;6991:31;7033:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6049:1008;;;5978:1079;:::o;3482:221::-;3567:14;3584:20;3601:2;3584:16;:20::i;:::-;-1:-1:-1;;;;;3615:16:9;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3660:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3482:221:9:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:20;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:20;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:221::-;693:5;746:3;739:4;731:6;727:17;723:27;713:55;;764:1;761;754:12;713:55;786:79;861:3;852:6;839:20;832:4;824:6;820:17;786:79;:::i;876:247::-;935:6;988:2;976:9;967:7;963:23;959:32;956:52;;;1004:1;1001;994:12;956:52;1043:9;1030:23;1062:31;1087:5;1062:31;:::i;1128:251::-;1198:6;1251:2;1239:9;1230:7;1226:23;1222:32;1219:52;;;1267:1;1264;1257:12;1219:52;1299:9;1293:16;1318:31;1343:5;1318:31;:::i;1384:388::-;1452:6;1460;1513:2;1501:9;1492:7;1488:23;1484:32;1481:52;;;1529:1;1526;1519:12;1481:52;1568:9;1555:23;1587:31;1612:5;1587:31;:::i;:::-;1637:5;-1:-1:-1;1694:2:20;1679:18;;1666:32;1707:33;1666:32;1707:33;:::i;:::-;1759:7;1749:17;;;1384:388;;;;;:::o;1777:456::-;1854:6;1862;1870;1923:2;1911:9;1902:7;1898:23;1894:32;1891:52;;;1939:1;1936;1929:12;1891:52;1978:9;1965:23;1997:31;2022:5;1997:31;:::i;:::-;2047:5;-1:-1:-1;2104:2:20;2089:18;;2076:32;2117:33;2076:32;2117:33;:::i;:::-;1777:456;;2169:7;;-1:-1:-1;;;2223:2:20;2208:18;;;;2195:32;;1777:456::o;2238:794::-;2333:6;2341;2349;2357;2410:3;2398:9;2389:7;2385:23;2381:33;2378:53;;;2427:1;2424;2417:12;2378:53;2466:9;2453:23;2485:31;2510:5;2485:31;:::i;:::-;2535:5;-1:-1:-1;2592:2:20;2577:18;;2564:32;2605:33;2564:32;2605:33;:::i;:::-;2657:7;-1:-1:-1;2711:2:20;2696:18;;2683:32;;-1:-1:-1;2766:2:20;2751:18;;2738:32;2793:18;2782:30;;2779:50;;;2825:1;2822;2815:12;2779:50;2848:22;;2901:4;2893:13;;2889:27;-1:-1:-1;2879:55:20;;2930:1;2927;2920:12;2879:55;2953:73;3018:7;3013:2;3000:16;2995:2;2991;2987:11;2953:73;:::i;:::-;2943:83;;;2238:794;;;;;;;:::o;3037:382::-;3102:6;3110;3163:2;3151:9;3142:7;3138:23;3134:32;3131:52;;;3179:1;3176;3169:12;3131:52;3218:9;3205:23;3237:31;3262:5;3237:31;:::i;:::-;3287:5;-1:-1:-1;3344:2:20;3329:18;;3316:32;3357:30;3316:32;3357:30;:::i;3424:315::-;3492:6;3500;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3608:9;3595:23;3627:31;3652:5;3627:31;:::i;:::-;3677:5;3729:2;3714:18;;;;3701:32;;-1:-1:-1;;;3424:315:20:o;3744:615::-;3830:6;3838;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3947:9;3934:23;3976:18;4017:2;4009:6;4006:14;4003:34;;;4033:1;4030;4023:12;4003:34;4071:6;4060:9;4056:22;4046:32;;4116:7;4109:4;4105:2;4101:13;4097:27;4087:55;;4138:1;4135;4128:12;4087:55;4178:2;4165:16;4204:2;4196:6;4193:14;4190:34;;;4220:1;4217;4210:12;4190:34;4273:7;4268:2;4258:6;4255:1;4251:14;4247:2;4243:23;4239:32;4236:45;4233:65;;;4294:1;4291;4284:12;4233:65;4325:2;4317:11;;;;;4347:6;;-1:-1:-1;3744:615:20;;-1:-1:-1;;;;3744:615:20:o;4364:241::-;4420:6;4473:2;4461:9;4452:7;4448:23;4444:32;4441:52;;;4489:1;4486;4479:12;4441:52;4528:9;4515:23;4547:28;4569:5;4547:28;:::i;4610:245::-;4677:6;4730:2;4718:9;4709:7;4705:23;4701:32;4698:52;;;4746:1;4743;4736:12;4698:52;4778:9;4772:16;4797:28;4819:5;4797:28;:::i;4860:180::-;4919:6;4972:2;4960:9;4951:7;4947:23;4943:32;4940:52;;;4988:1;4985;4978:12;4940:52;-1:-1:-1;5011:23:20;;4860:180;-1:-1:-1;4860:180:20:o;5045:315::-;5113:6;5121;5174:2;5162:9;5153:7;5149:23;5145:32;5142:52;;;5190:1;5187;5180:12;5142:52;5226:9;5213:23;5203:33;;5286:2;5275:9;5271:18;5258:32;5299:31;5324:5;5299:31;:::i;5365:248::-;5433:6;5441;5494:2;5482:9;5473:7;5469:23;5465:32;5462:52;;;5510:1;5507;5500:12;5462:52;-1:-1:-1;;5533:23:20;;;5603:2;5588:18;;;5575:32;;-1:-1:-1;5365:248:20:o;5618:245::-;5676:6;5729:2;5717:9;5708:7;5704:23;5700:32;5697:52;;;5745:1;5742;5735:12;5697:52;5784:9;5771:23;5803:30;5827:5;5803:30;:::i;5868:249::-;5937:6;5990:2;5978:9;5969:7;5965:23;5961:32;5958:52;;;6006:1;6003;5996:12;5958:52;6038:9;6032:16;6057:30;6081:5;6057:30;:::i;6388:592::-;6459:6;6467;6520:2;6508:9;6499:7;6495:23;6491:32;6488:52;;;6536:1;6533;6526:12;6488:52;6576:9;6563:23;6605:18;6646:2;6638:6;6635:14;6632:34;;;6662:1;6659;6652:12;6632:34;6700:6;6689:9;6685:22;6675:32;;6745:7;6738:4;6734:2;6730:13;6726:27;6716:55;;6767:1;6764;6757:12;6716:55;6807:2;6794:16;6833:2;6825:6;6822:14;6819:34;;;6849:1;6846;6839:12;6819:34;6894:7;6889:2;6880:6;6876:2;6872:15;6868:24;6865:37;6862:57;;;6915:1;6912;6905:12;6985:322;7054:6;7107:2;7095:9;7086:7;7082:23;7078:32;7075:52;;;7123:1;7120;7113:12;7075:52;7163:9;7150:23;7196:18;7188:6;7185:30;7182:50;;;7228:1;7225;7218:12;7182:50;7251;7293:7;7284:6;7273:9;7269:22;7251:50;:::i;7497:184::-;7567:6;7620:2;7608:9;7599:7;7595:23;7591:32;7588:52;;;7636:1;7633;7626:12;7588:52;-1:-1:-1;7659:16:20;;7497:184;-1:-1:-1;7497:184:20:o;7686:390::-;7764:6;7772;7825:2;7813:9;7804:7;7800:23;7796:32;7793:52;;;7841:1;7838;7831:12;7793:52;7877:9;7864:23;7854:33;;7938:2;7927:9;7923:18;7910:32;7965:18;7957:6;7954:30;7951:50;;;7997:1;7994;7987:12;7951:50;8020;8062:7;8053:6;8042:9;8038:22;8020:50;:::i;:::-;8010:60;;;7686:390;;;;;:::o;8334:257::-;8375:3;8413:5;8407:12;8440:6;8435:3;8428:19;8456:63;8512:6;8505:4;8500:3;8496:14;8489:4;8482:5;8478:16;8456:63;:::i;:::-;8573:2;8552:15;-1:-1:-1;;8548:29:20;8539:39;;;;8580:4;8535:50;;8334:257;-1:-1:-1;;8334:257:20:o;8596:470::-;8775:3;8813:6;8807:13;8829:53;8875:6;8870:3;8863:4;8855:6;8851:17;8829:53;:::i;:::-;8945:13;;8904:16;;;;8967:57;8945:13;8904:16;9001:4;8989:17;;8967:57;:::i;:::-;9040:20;;8596:470;-1:-1:-1;;;;8596:470:20:o;9071:443::-;9303:3;9341:6;9335:13;9357:53;9403:6;9398:3;9391:4;9383:6;9379:17;9357:53;:::i;:::-;-1:-1:-1;;;9432:16:20;;9457:22;;;-1:-1:-1;9506:1:20;9495:13;;9071:443;-1:-1:-1;9071:443:20:o;9727:488::-;-1:-1:-1;;;;;9996:15:20;;;9978:34;;10048:15;;10043:2;10028:18;;10021:43;10095:2;10080:18;;10073:34;;;10143:3;10138:2;10123:18;;10116:31;;;9921:4;;10164:45;;10189:19;;10181:6;10164:45;:::i;:::-;10156:53;9727:488;-1:-1:-1;;;;;;9727:488:20:o;11100:908::-;11334:4;11382:3;11371:9;11367:19;11413:6;11402:9;11395:25;11439:2;11477:3;11472:2;11461:9;11457:18;11450:31;11501:6;11536;11530:13;11567:6;11559;11552:22;11605:3;11594:9;11590:19;11583:26;;11644:2;11636:6;11632:15;11618:29;;11665:1;11675:195;11689:6;11686:1;11683:13;11675:195;;;11754:13;;-1:-1:-1;;;;;11750:39:20;11738:52;;11845:15;;;;11810:12;;;;11786:1;11704:9;11675:195;;;-1:-1:-1;;;;;;;11926:32:20;;;;11921:2;11906:18;;11899:60;-1:-1:-1;;;11990:2:20;11975:18;11968:34;11887:3;11100:908;-1:-1:-1;;11100:908:20:o;12013:219::-;12162:2;12151:9;12144:21;12125:4;12182:44;12222:2;12211:9;12207:18;12199:6;12182:44;:::i;13468:414::-;13670:2;13652:21;;;13709:2;13689:18;;;13682:30;13748:34;13743:2;13728:18;;13721:62;-1:-1:-1;;;13814:2:20;13799:18;;13792:48;13872:3;13857:19;;13468:414::o;15011:403::-;15213:2;15195:21;;;15252:2;15232:18;;;15225:30;15291:34;15286:2;15271:18;;15264:62;-1:-1:-1;;;15357:2:20;15342:18;;15335:37;15404:3;15389:19;;15011:403::o;16262:400::-;16464:2;16446:21;;;16503:2;16483:18;;;16476:30;16542:34;16537:2;16522:18;;16515:62;-1:-1:-1;;;16608:2:20;16593:18;;16586:34;16652:3;16637:19;;16262:400::o;17426:418::-;17628:2;17610:21;;;17667:2;17647:18;;;17640:30;-1:-1:-1;;;;;;;;;;;17701:2:20;17686:18;;17679:62;-1:-1:-1;;;17772:2:20;17757:18;;17750:52;17834:3;17819:19;;17426:418::o;20761:409::-;20963:2;20945:21;;;21002:2;20982:18;;;20975:30;21041:34;21036:2;21021:18;;21014:62;-1:-1:-1;;;21107:2:20;21092:18;;21085:43;21160:3;21145:19;;20761:409::o;25625:413::-;25827:2;25809:21;;;25866:2;25846:18;;;25839:30;25905:34;25900:2;25885:18;;25878:62;-1:-1:-1;;;25971:2:20;25956:18;;25949:47;26028:3;26013:19;;25625:413::o;27899:128::-;27939:3;27970:1;27966:6;27963:1;27960:13;27957:39;;;27976:18;;:::i;:::-;-1:-1:-1;28012:9:20;;27899:128::o;28032:120::-;28072:1;28098;28088:35;;28103:18;;:::i;:::-;-1:-1:-1;28137:9:20;;28032:120::o;28157:422::-;28246:1;28289:5;28246:1;28303:270;28324:7;28314:8;28311:21;28303:270;;;28383:4;28379:1;28375:6;28371:17;28365:4;28362:27;28359:53;;;28392:18;;:::i;:::-;28442:7;28432:8;28428:22;28425:55;;;28462:16;;;;28425:55;28541:22;;;;28501:15;;;;28303:270;;;28307:3;28157:422;;;;;:::o;28584:131::-;28644:5;28673:36;28700:8;28694:4;28769:5;28799:8;28789:80;;-1:-1:-1;28840:1:20;28854:5;;28789:80;28888:4;28878:76;;-1:-1:-1;28925:1:20;28939:5;;28878:76;28970:4;28988:1;28983:59;;;;29056:1;29051:130;;;;28963:218;;28983:59;29013:1;29004:10;;29027:5;;;29051:130;29088:3;29078:8;29075:17;29072:43;;;29095:18;;:::i;:::-;-1:-1:-1;;29151:1:20;29137:16;;29166:5;;28963:218;;29265:2;29255:8;29252:16;29246:3;29240:4;29237:13;29233:36;29227:2;29217:8;29214:16;29209:2;29203:4;29200:12;29196:35;29193:77;29190:159;;;-1:-1:-1;29302:19:20;;;29334:5;;29190:159;29381:34;29406:8;29400:4;29381:34;:::i;:::-;29451:6;29447:1;29443:6;29439:19;29430:7;29427:32;29424:58;;;29462:18;;:::i;:::-;29500:20;;28720:806;-1:-1:-1;;;28720:806:20:o;29531:168::-;29571:7;29637:1;29633;29629:6;29625:14;29622:1;29619:21;29614:1;29607:9;29600:17;29596:45;29593:71;;;29644:18;;:::i;:::-;-1:-1:-1;29684:9:20;;29531:168::o;29704:125::-;29744:4;29772:1;29769;29766:8;29763:34;;;29777:18;;:::i;:::-;-1:-1:-1;29814:9:20;;29704:125::o;29834:258::-;29906:1;29916:113;29930:6;29927:1;29924:13;29916:113;;;30006:11;;;30000:18;29987:11;;;29980:39;29952:2;29945:10;29916:113;;;30047:6;30044:1;30041:13;30038:48;;;-1:-1:-1;;30082:1:20;30064:16;;30057:27;29834:258::o;30097:380::-;30176:1;30172:12;;;;30219;;;30240:61;;30294:4;30286:6;30282:17;30272:27;;30240:61;30347:2;30339:6;30336:14;30316:18;30313:38;30310:161;;;30393:10;30388:3;30384:20;30381:1;30374:31;30428:4;30425:1;30418:15;30456:4;30453:1;30446:15;30310:161;;30097:380;;;:::o;30482:135::-;30521:3;-1:-1:-1;;30542:17:20;;30539:43;;;30562:18;;:::i;:::-;-1:-1:-1;30609:1:20;30598:13;;30482:135::o;30622:112::-;30654:1;30680;30670:35;;30685:18;;:::i;:::-;-1:-1:-1;30719:9:20;;30622:112::o;30739:127::-;30800:10;30795:3;30791:20;30788:1;30781:31;30831:4;30828:1;30821:15;30855:4;30852:1;30845:15;30871:127;30932:10;30927:3;30923:20;30920:1;30913:31;30963:4;30960:1;30953:15;30987:4;30984:1;30977:15;31003:127;31064:10;31059:3;31055:20;31052:1;31045:31;31095:4;31092:1;31085:15;31119:4;31116:1;31109:15;31135:127;31196:10;31191:3;31187:20;31184:1;31177:31;31227:4;31224:1;31217:15;31251:4;31248:1;31241:15;31267:127;31328:10;31323:3;31319:20;31316:1;31309:31;31359:4;31356:1;31349:15;31383:4;31380:1;31373:15;31399:131;-1:-1:-1;;;;;31474:31:20;;31464:42;;31454:70;;31520:1;31517;31510:12;31535:118;31621:5;31614:13;31607:21;31600:5;31597:32;31587:60;;31643:1;31640;31633:12;31658:131;-1:-1:-1;;;;;;31732:32:20;;31722:43;;31712:71;;31779:1;31776;31769:12

Swarm Source

ipfs://2090d82612af9a8bbef4a65754af8f4eb21b6dfe776418f65913c9786617a08c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.