ETH Price: $3,442.19 (-1.02%)
Gas: 5 Gwei

Token

Bitcoin Minetrix (BTCMTX)
 

Overview

Max Total Supply

3,600,000,000 BTCMTX

Holders

7,495

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
22,353.34930533369 BTCMTX

Value
$0.00
0x3E21f6c2494B13630F7853595f26Dc9D07820a30
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:
BitcoinMinetrixToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-22
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
  /**
   * @dev Emitted when `value` tokens are moved from one account (`from`) to
   * another (`to`).
   *
   * Note that `value` may be zero.
   */
  event Transfer(address indexed from, address indexed to, uint256 value);

  /**
   * @dev Emitted when the allowance of a `spender` for an `owner` is set by
   * a call to {approve}. `value` is the new allowance.
   */
  event Approval(address indexed owner, address indexed spender, uint256 value);

  /**
   * @dev Returns the amount of tokens in existence.
   */
  function totalSupply() external view returns (uint256);

  /**
   * @dev Returns the amount of tokens owned by `account`.
   */
  function balanceOf(address account) external view returns (uint256);

  /**
   * @dev Moves `amount` tokens from the caller's account to `to`.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transfer(address to, uint256 amount) external returns (bool);

  /**
   * @dev Returns the remaining number of tokens that `spender` will be
   * allowed to spend on behalf of `owner` through {transferFrom}. This is
   * zero by default.
   *
   * This value changes when {approve} or {transferFrom} are called.
   */
  function allowance(address owner, address spender) external view returns (uint256);

  /**
   * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * IMPORTANT: Beware that changing an allowance with this method brings the risk
   * that someone may use both the old and the new allowance by unfortunate
   * transaction ordering. One possible solution to mitigate this race
   * condition is to first reduce the spender's allowance to 0 and set the
   * desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   *
   * Emits an {Approval} event.
   */
  function approve(address spender, uint256 amount) external returns (bool);

  /**
   * @dev Moves `amount` tokens from `from` to `to` using the
   * allowance mechanism. `amount` is then deducted from the caller's
   * allowance.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
  /**
   * @dev Returns the name of the token.
   */
  function name() external view returns (string memory);

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

  /**
   * @dev Returns the decimals places of the token.
   */
  function decimals() external view returns (uint8);
}

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

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

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

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

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

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    _checkOwner();
    _;
  }

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

  /**
   * @dev Throws if the sender is not the owner.
   */
  function _checkOwner() internal view virtual {
    require(owner() == _msgSender(), 'Ownable: caller is not the owner');
  }

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

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

  /**
   * @dev Transfers ownership of the contract to a new account (`newOwner`).
   * Internal function without access restriction.
   */
  function _transferOwnership(address newOwner) internal virtual {
    address oldOwner = _owner;
    _owner = newOwner;
    emit OwnershipTransferred(oldOwner, newOwner);
  }
}

contract BitcoinMinetrixToken is Context, IERC20Metadata, Ownable {
  mapping(address => uint256) private _balances;

  mapping(address => mapping(address => uint256)) private _allowances;

  uint256 private _totalSupply;

  string private _name;
  string private _symbol;
  uint8 private constant _decimals = 18;
  uint256 public constant presaleReserve = 2_800_000_000 * (10 ** _decimals); // 2800 Million
  uint256 public constant stakingReserve = 500_000_000 * (10 ** _decimals);   //  500 Million
  uint256 public constant liquidityReserve = 300_000_000 * (10 ** _decimals); //  300 Million
  uint256 public constant companyReserve = 400_000_000 * (10 ** _decimals);   //  400 Million

  /**
   * @dev Contract constructor.
   * @param name_ The name of the token.
   * @param symbol_ The symbol of the token.
   */
  constructor(string memory name_, string memory symbol_) {
    _name = name_;
    _symbol = symbol_;
    _mint(0x8f3ca30c912449949d5656183b8F2D221BE22016, presaleReserve);
    _mint(0x76d5636FB8189b25F7B869dbf32c968334597f13, stakingReserve);
    _mint(0x9e4AdD4E6b48Fa23Bd87a89835f952aC7B5711D7, liquidityReserve);
    _mint(0xE441466A9367AD5670225c7f7806C10D5b000B41, companyReserve);
  }

  /**
   * @dev Returns the name of the token.
   * @return The name of the token.
   */
  function name() public view virtual override returns (string memory) {
    return _name;
  }

  /**
   * @dev Returns the symbol of the token.
   * @return The symbol of the token.
   */
  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  /**
   * @dev Returns the number of decimals used for token display.
   * @return The number of decimals.
   */
  function decimals() public view virtual override returns (uint8) {
    return _decimals;
  }

  /**
   * @dev Returns the total supply of the token.
   * @return The total supply.
   */
  function totalSupply() public view virtual override returns (uint256) {
    return _totalSupply;
  }

  /**
   * @dev Returns the balance of the specified account.
   * @param account The address to check the balance for.
   * @return The balance of the account.
   */
  function balanceOf(address account) public view virtual override returns (uint256) {
    return _balances[account];
  }

  /**
   * @dev Transfers tokens from the caller to a specified recipient.
   * @param recipient The address to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   * @return A boolean value indicating whether the transfer was successful.
   */
  function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
    _transfer(_msgSender(), recipient, amount);
    return true;
  }

  /**
   * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner.
   * @param from The address that approves the spending.
   * @param to The address that is allowed to spend.
   * @return The remaining allowance for the spender.
   */
  function allowance(address from, address to) public view virtual override returns (uint256) {
    return _allowances[from][to];
  }

  /**
   * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller.
   * @param to The address to approve the spending for.
   * @param amount The amount of tokens to approve.
   * @return A boolean value indicating whether the approval was successful.
   */
  function approve(address to, uint256 amount) public virtual override returns (bool) {
    _approve(_msgSender(), to, amount);
    return true;
  }

  /**
   * @dev Transfers tokens from one address to another.
   * @param sender The address to transfer tokens from.
   * @param recipient The address to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   * @return A boolean value indicating whether the transfer was successful.
   */
  function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
    _transfer(sender, recipient, amount);

    uint256 currentAllowance = _allowances[sender][_msgSender()];
    require(currentAllowance >= amount, 'ERC20: transfer amount exceeds allowance');
    unchecked {
      _approve(sender, _msgSender(), currentAllowance - amount);
    }

    return true;
  }

  /**
   * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller.
   * @param to The address to increase the allowance for.
   * @param addedValue The amount of tokens to increase the allowance by.
   * @return A boolean value indicating whether the increase was successful.
   */
  function increaseAllowance(address to, uint256 addedValue) public virtual returns (bool) {
    _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
    return true;
  }

  /**
   * @dev Decreases the allowance granted by the owner of the tokens to `to` account.
   * @param to The account allowed to spend the tokens.
   * @param subtractedValue The amount of tokens to decrease the allowance by.
   * @return A boolean value indicating whether the operation succeeded.
   */
  function decreaseAllowance(address to, uint256 subtractedValue) public virtual returns (bool) {
    uint256 currentAllowance = _allowances[_msgSender()][to];
    require(currentAllowance >= subtractedValue, 'ERC20: decreased allowance below zero');
    unchecked {
      _approve(_msgSender(), to, currentAllowance - subtractedValue);
    }

    return true;
  }

  /**
   * @dev Transfers `amount` tokens from `sender` to `recipient`.
   * @param sender The account to transfer tokens from.
   * @param recipient The account to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   */
  function _transfer(address sender, address recipient, uint256 amount) internal virtual {
    require(amount > 0, 'ERC20: transfer amount zero');
    require(sender != address(0), 'ERC20: transfer from the zero address');
    require(recipient != address(0), 'ERC20: transfer to the zero address');

    uint256 senderBalance = _balances[sender];
    require(senderBalance >= amount, 'ERC20: transfer amount exceeds balance');
    unchecked {
      _balances[sender] = senderBalance - amount;
    }
    _balances[recipient] += amount;

    emit Transfer(sender, recipient, amount);
  }

  /**
   * @dev Creates `amount` tokens and assigns them to `account`.
   * @param account The account to assign the newly created tokens to.
   * @param amount The amount of tokens to create.
   */
  function _mint(address account, uint256 amount) internal virtual {
    require(account != address(0), 'ERC20: mint to the zero address');

    _totalSupply += amount;
    _balances[account] += amount;
    emit Transfer(address(0), account, amount);
  }

  /**
   * @dev Destroys `amount` tokens from `account`, reducing the total supply.
   * @param account The account to burn tokens from.
   * @param amount The amount of tokens to burn.
   */
  function _burn(address account, uint256 amount) internal virtual {
    require(account != address(0), 'ERC20: burn from the zero address');

    uint256 accountBalance = _balances[account];
    require(accountBalance >= amount, 'ERC20: burn amount exceeds balance');
    unchecked {
      _balances[account] = accountBalance - amount;
    }
    _totalSupply -= amount;

    emit Transfer(account, address(0), amount);
  }

  /**
   * @dev Destroys `amount` tokens from the caller's account, reducing the total supply.
   * @param amount The amount of tokens to burn.
   */
  function burn(uint256 amount) external {
    _burn(_msgSender(), amount);
  }

  /**
   * @dev Sets `amount` as the allowance of `to` over the caller's tokens.
   * @param from The account granting the allowance.
   * @param to The account allowed to spend the tokens.
   * @param amount The amount of tokens to allow.
   */
  function _approve(address from, address to, uint256 amount) internal virtual {
    require(from != address(0), 'ERC20: approve from the zero address');
    require(to != address(0), 'ERC20: approve to the zero address');

    _allowances[from][to] = amount;
    emit Approval(from, to, amount);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"companyReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620028d2380380620028d2833981810160405281019062000037919062000614565b620000576200004b620001a960201b60201c565b620001b160201b60201c565b81600490805190602001906200006f929190620003c7565b50806005908051906020019062000088929190620003c7565b50620000cf738f3ca30c912449949d5656183b8f2d221be220166012600a620000b2919062000833565b63a6e49c00620000c3919062000884565b6200027560201b60201c565b620001157376d5636fb8189b25f7b869dbf32c968334597f136012600a620000f8919062000833565b631dcd650062000109919062000884565b6200027560201b60201c565b6200015b739e4add4e6b48fa23bd87a89835f952ac7b5711d76012600a6200013e919062000833565b6311e1a3006200014f919062000884565b6200027560201b60201c565b620001a173e441466a9367ad5670225c7f7806c10d5b000b416012600a62000184919062000833565b6317d7840062000195919062000884565b6200027560201b60201c565b505062000a58565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002df9062000946565b60405180910390fd5b8060036000828254620002fc919062000968565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000354919062000968565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003bb9190620009d6565b60405180910390a35050565b828054620003d59062000a22565b90600052602060002090601f016020900481019282620003f9576000855562000445565b82601f106200041457805160ff191683800117855562000445565b8280016001018555821562000445579182015b828111156200044457825182559160200191906001019062000427565b5b50905062000454919062000458565b5090565b5b808211156200047357600081600090555060010162000459565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004e08262000495565b810181811067ffffffffffffffff82111715620005025762000501620004a6565b5b80604052505050565b60006200051762000477565b9050620005258282620004d5565b919050565b600067ffffffffffffffff821115620005485762000547620004a6565b5b620005538262000495565b9050602081019050919050565b60005b838110156200058057808201518184015260208101905062000563565b8381111562000590576000848401525b50505050565b6000620005ad620005a7846200052a565b6200050b565b905082815260208101848484011115620005cc57620005cb62000490565b5b620005d984828562000560565b509392505050565b600082601f830112620005f957620005f86200048b565b5b81516200060b84826020860162000596565b91505092915050565b600080604083850312156200062e576200062d62000481565b5b600083015167ffffffffffffffff8111156200064f576200064e62000486565b5b6200065d85828601620005e1565b925050602083015167ffffffffffffffff81111562000681576200068062000486565b5b6200068f85828601620005e1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200072757808604811115620006ff57620006fe62000699565b5b60018516156200070f5780820291505b80810290506200071f85620006c8565b9450620006df565b94509492505050565b60008262000742576001905062000815565b8162000752576000905062000815565b81600181146200076b57600281146200077657620007ac565b600191505062000815565b60ff8411156200078b576200078a62000699565b5b8360020a915084821115620007a557620007a462000699565b5b5062000815565b5060208310610133831016604e8410600b8410161715620007e65782820a905083811115620007e057620007df62000699565b5b62000815565b620007f58484846001620006d5565b925090508184048111156200080f576200080e62000699565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000840826200081c565b91506200084d8362000826565b92506200087c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000730565b905092915050565b600062000891826200081c565b91506200089e836200081c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620008da57620008d962000699565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200092e601f83620008e5565b91506200093b82620008f6565b602082019050919050565b6000602082019050818103600083015262000961816200091f565b9050919050565b600062000975826200081c565b915062000982836200081c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009ba57620009b962000699565b5b828201905092915050565b620009d0816200081c565b82525050565b6000602082019050620009ed6000830184620009c5565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a3b57607f821691505b6020821081141562000a525762000a51620009f3565b5b50919050565b611e6a8062000a686000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063b61d43b111610071578063b61d43b114610320578063b753bfe91461033e578063d5b5dc491461035c578063dd62ed3e1461037a578063f2fde38b146103aa57610121565b8063715018a61461027a5780638da5cb5b1461028457806395d89b41146102a2578063a457c2d7146102c0578063a9059cbb146102f057610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806339509351146101fe57806342966c681461022e57806370a082311461024a57610121565b806306fdde0314610126578063095ea7b3146101445780630c900e901461017457806318160ddd14610192575b600080fd5b61012e6103c6565b60405161013b919061120d565b60405180910390f35b61015e600480360381019061015991906112c8565b610458565b60405161016b9190611323565b60405180910390f35b61017c610476565b604051610189919061134d565b60405180910390f35b61019a610496565b6040516101a7919061134d565b60405180910390f35b6101ca60048036038101906101c59190611368565b6104a0565b6040516101d79190611323565b60405180910390f35b6101e8610598565b6040516101f591906113d7565b60405180910390f35b610218600480360381019061021391906112c8565b6105a1565b6040516102259190611323565b60405180910390f35b610248600480360381019061024391906113f2565b61064d565b005b610264600480360381019061025f919061141f565b610661565b604051610271919061134d565b60405180910390f35b6102826106aa565b005b61028c6106be565b604051610299919061145b565b60405180910390f35b6102aa6106e7565b6040516102b7919061120d565b60405180910390f35b6102da60048036038101906102d591906112c8565b610779565b6040516102e79190611323565b60405180910390f35b61030a600480360381019061030591906112c8565b610864565b6040516103179190611323565b60405180910390f35b610328610882565b604051610335919061134d565b60405180910390f35b6103466108a2565b604051610353919061134d565b60405180910390f35b6103646108c2565b604051610371919061134d565b60405180910390f35b610394600480360381019061038f9190611476565b6108e2565b6040516103a1919061134d565b60405180910390f35b6103c460048036038101906103bf919061141f565b610969565b005b6060600480546103d5906114e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610401906114e5565b801561044e5780601f106104235761010080835404028352916020019161044e565b820191906000526020600020905b81548152906001019060200180831161043157829003601f168201915b5050505050905090565b600061046c6104656109ed565b84846109f5565b6001905092915050565b6012600a6104849190611679565b63a6e49c0061049391906116c4565b81565b6000600354905090565b60006104ad848484610bc0565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104f86109ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056f90611790565b60405180910390fd5b61058c856105846109ed565b8584036109f5565b60019150509392505050565b60006012905090565b60006106436105ae6109ed565b8484600260006105bc6109ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461063e91906117b0565b6109f5565b6001905092915050565b61065e6106586109ed565b82610e71565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106b2611032565b6106bc60006110b0565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106f6906114e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610722906114e5565b801561076f5780601f106107445761010080835404028352916020019161076f565b820191906000526020600020905b81548152906001019060200180831161075257829003601f168201915b5050505050905090565b600080600260006107886109ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c90611878565b60405180910390fd5b6108596108506109ed565b858584036109f5565b600191505092915050565b60006108786108716109ed565b8484610bc0565b6001905092915050565b6012600a6108909190611679565b631dcd650061089f91906116c4565b81565b6012600a6108b09190611679565b6311e1a3006108bf91906116c4565b81565b6012600a6108d09190611679565b6317d784006108df91906116c4565b81565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610971611032565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d89061190a565b60405180910390fd5b6109ea816110b0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c9061199c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90611a2e565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bb3919061134d565b60405180910390a3505050565b60008111610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90611a9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90611b2c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90611bbe565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6190611c50565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dff91906117b0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e63919061134d565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890611ce2565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f90611d74565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254610fc09190611d94565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611025919061134d565b60405180910390a3505050565b61103a6109ed565b73ffffffffffffffffffffffffffffffffffffffff166110586106be565b73ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590611e14565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111ae578082015181840152602081019050611193565b838111156111bd576000848401525b50505050565b6000601f19601f8301169050919050565b60006111df82611174565b6111e9818561117f565b93506111f9818560208601611190565b611202816111c3565b840191505092915050565b6000602082019050818103600083015261122781846111d4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061125f82611234565b9050919050565b61126f81611254565b811461127a57600080fd5b50565b60008135905061128c81611266565b92915050565b6000819050919050565b6112a581611292565b81146112b057600080fd5b50565b6000813590506112c28161129c565b92915050565b600080604083850312156112df576112de61122f565b5b60006112ed8582860161127d565b92505060206112fe858286016112b3565b9150509250929050565b60008115159050919050565b61131d81611308565b82525050565b60006020820190506113386000830184611314565b92915050565b61134781611292565b82525050565b6000602082019050611362600083018461133e565b92915050565b6000806000606084860312156113815761138061122f565b5b600061138f8682870161127d565b93505060206113a08682870161127d565b92505060406113b1868287016112b3565b9150509250925092565b600060ff82169050919050565b6113d1816113bb565b82525050565b60006020820190506113ec60008301846113c8565b92915050565b6000602082840312156114085761140761122f565b5b6000611416848285016112b3565b91505092915050565b6000602082840312156114355761143461122f565b5b60006114438482850161127d565b91505092915050565b61145581611254565b82525050565b6000602082019050611470600083018461144c565b92915050565b6000806040838503121561148d5761148c61122f565b5b600061149b8582860161127d565b92505060206114ac8582860161127d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114fd57607f821691505b60208210811415611511576115106114b6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561159d5780860481111561157957611578611517565b5b60018516156115885780820291505b808102905061159685611546565b945061155d565b94509492505050565b6000826115b65760019050611672565b816115c45760009050611672565b81600181146115da57600281146115e457611613565b6001915050611672565b60ff8411156115f6576115f5611517565b5b8360020a91508482111561160d5761160c611517565b5b50611672565b5060208310610133831016604e8410600b84101617156116485782820a90508381111561164357611642611517565b5b611672565b6116558484846001611553565b9250905081840481111561166c5761166b611517565b5b81810290505b9392505050565b600061168482611292565b915061168f836113bb565b92506116bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846115a6565b905092915050565b60006116cf82611292565b91506116da83611292565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561171357611712611517565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061177a60288361117f565b91506117858261171e565b604082019050919050565b600060208201905081810360008301526117a98161176d565b9050919050565b60006117bb82611292565b91506117c683611292565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117fb576117fa611517565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061186260258361117f565b915061186d82611806565b604082019050919050565b6000602082019050818103600083015261189181611855565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118f460268361117f565b91506118ff82611898565b604082019050919050565b60006020820190508181036000830152611923816118e7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061198660248361117f565b91506119918261192a565b604082019050919050565b600060208201905081810360008301526119b581611979565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a1860228361117f565b9150611a23826119bc565b604082019050919050565b60006020820190508181036000830152611a4781611a0b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611a84601b8361117f565b9150611a8f82611a4e565b602082019050919050565b60006020820190508181036000830152611ab381611a77565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b1660258361117f565b9150611b2182611aba565b604082019050919050565b60006020820190508181036000830152611b4581611b09565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ba860238361117f565b9150611bb382611b4c565b604082019050919050565b60006020820190508181036000830152611bd781611b9b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c3a60268361117f565b9150611c4582611bde565b604082019050919050565b60006020820190508181036000830152611c6981611c2d565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ccc60218361117f565b9150611cd782611c70565b604082019050919050565b60006020820190508181036000830152611cfb81611cbf565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d5e60228361117f565b9150611d6982611d02565b604082019050919050565b60006020820190508181036000830152611d8d81611d51565b9050919050565b6000611d9f82611292565b9150611daa83611292565b925082821015611dbd57611dbc611517565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611dfe60208361117f565b9150611e0982611dc8565b602082019050919050565b60006020820190508181036000830152611e2d81611df1565b905091905056fea2646970667358221220b54ac41f1a41d8b044e4d83e837d56b962b0bae51ca58c45694a6cc09cd0218d64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000010426974636f696e204d696e65747269780000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064254434d54580000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063b61d43b111610071578063b61d43b114610320578063b753bfe91461033e578063d5b5dc491461035c578063dd62ed3e1461037a578063f2fde38b146103aa57610121565b8063715018a61461027a5780638da5cb5b1461028457806395d89b41146102a2578063a457c2d7146102c0578063a9059cbb146102f057610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806339509351146101fe57806342966c681461022e57806370a082311461024a57610121565b806306fdde0314610126578063095ea7b3146101445780630c900e901461017457806318160ddd14610192575b600080fd5b61012e6103c6565b60405161013b919061120d565b60405180910390f35b61015e600480360381019061015991906112c8565b610458565b60405161016b9190611323565b60405180910390f35b61017c610476565b604051610189919061134d565b60405180910390f35b61019a610496565b6040516101a7919061134d565b60405180910390f35b6101ca60048036038101906101c59190611368565b6104a0565b6040516101d79190611323565b60405180910390f35b6101e8610598565b6040516101f591906113d7565b60405180910390f35b610218600480360381019061021391906112c8565b6105a1565b6040516102259190611323565b60405180910390f35b610248600480360381019061024391906113f2565b61064d565b005b610264600480360381019061025f919061141f565b610661565b604051610271919061134d565b60405180910390f35b6102826106aa565b005b61028c6106be565b604051610299919061145b565b60405180910390f35b6102aa6106e7565b6040516102b7919061120d565b60405180910390f35b6102da60048036038101906102d591906112c8565b610779565b6040516102e79190611323565b60405180910390f35b61030a600480360381019061030591906112c8565b610864565b6040516103179190611323565b60405180910390f35b610328610882565b604051610335919061134d565b60405180910390f35b6103466108a2565b604051610353919061134d565b60405180910390f35b6103646108c2565b604051610371919061134d565b60405180910390f35b610394600480360381019061038f9190611476565b6108e2565b6040516103a1919061134d565b60405180910390f35b6103c460048036038101906103bf919061141f565b610969565b005b6060600480546103d5906114e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610401906114e5565b801561044e5780601f106104235761010080835404028352916020019161044e565b820191906000526020600020905b81548152906001019060200180831161043157829003601f168201915b5050505050905090565b600061046c6104656109ed565b84846109f5565b6001905092915050565b6012600a6104849190611679565b63a6e49c0061049391906116c4565b81565b6000600354905090565b60006104ad848484610bc0565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104f86109ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056f90611790565b60405180910390fd5b61058c856105846109ed565b8584036109f5565b60019150509392505050565b60006012905090565b60006106436105ae6109ed565b8484600260006105bc6109ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461063e91906117b0565b6109f5565b6001905092915050565b61065e6106586109ed565b82610e71565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106b2611032565b6106bc60006110b0565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106f6906114e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610722906114e5565b801561076f5780601f106107445761010080835404028352916020019161076f565b820191906000526020600020905b81548152906001019060200180831161075257829003601f168201915b5050505050905090565b600080600260006107886109ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c90611878565b60405180910390fd5b6108596108506109ed565b858584036109f5565b600191505092915050565b60006108786108716109ed565b8484610bc0565b6001905092915050565b6012600a6108909190611679565b631dcd650061089f91906116c4565b81565b6012600a6108b09190611679565b6311e1a3006108bf91906116c4565b81565b6012600a6108d09190611679565b6317d784006108df91906116c4565b81565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610971611032565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d89061190a565b60405180910390fd5b6109ea816110b0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c9061199c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90611a2e565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bb3919061134d565b60405180910390a3505050565b60008111610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90611a9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90611b2c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90611bbe565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6190611c50565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dff91906117b0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e63919061134d565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890611ce2565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f90611d74565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254610fc09190611d94565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611025919061134d565b60405180910390a3505050565b61103a6109ed565b73ffffffffffffffffffffffffffffffffffffffff166110586106be565b73ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590611e14565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111ae578082015181840152602081019050611193565b838111156111bd576000848401525b50505050565b6000601f19601f8301169050919050565b60006111df82611174565b6111e9818561117f565b93506111f9818560208601611190565b611202816111c3565b840191505092915050565b6000602082019050818103600083015261122781846111d4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061125f82611234565b9050919050565b61126f81611254565b811461127a57600080fd5b50565b60008135905061128c81611266565b92915050565b6000819050919050565b6112a581611292565b81146112b057600080fd5b50565b6000813590506112c28161129c565b92915050565b600080604083850312156112df576112de61122f565b5b60006112ed8582860161127d565b92505060206112fe858286016112b3565b9150509250929050565b60008115159050919050565b61131d81611308565b82525050565b60006020820190506113386000830184611314565b92915050565b61134781611292565b82525050565b6000602082019050611362600083018461133e565b92915050565b6000806000606084860312156113815761138061122f565b5b600061138f8682870161127d565b93505060206113a08682870161127d565b92505060406113b1868287016112b3565b9150509250925092565b600060ff82169050919050565b6113d1816113bb565b82525050565b60006020820190506113ec60008301846113c8565b92915050565b6000602082840312156114085761140761122f565b5b6000611416848285016112b3565b91505092915050565b6000602082840312156114355761143461122f565b5b60006114438482850161127d565b91505092915050565b61145581611254565b82525050565b6000602082019050611470600083018461144c565b92915050565b6000806040838503121561148d5761148c61122f565b5b600061149b8582860161127d565b92505060206114ac8582860161127d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114fd57607f821691505b60208210811415611511576115106114b6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561159d5780860481111561157957611578611517565b5b60018516156115885780820291505b808102905061159685611546565b945061155d565b94509492505050565b6000826115b65760019050611672565b816115c45760009050611672565b81600181146115da57600281146115e457611613565b6001915050611672565b60ff8411156115f6576115f5611517565b5b8360020a91508482111561160d5761160c611517565b5b50611672565b5060208310610133831016604e8410600b84101617156116485782820a90508381111561164357611642611517565b5b611672565b6116558484846001611553565b9250905081840481111561166c5761166b611517565b5b81810290505b9392505050565b600061168482611292565b915061168f836113bb565b92506116bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846115a6565b905092915050565b60006116cf82611292565b91506116da83611292565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561171357611712611517565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061177a60288361117f565b91506117858261171e565b604082019050919050565b600060208201905081810360008301526117a98161176d565b9050919050565b60006117bb82611292565b91506117c683611292565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117fb576117fa611517565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061186260258361117f565b915061186d82611806565b604082019050919050565b6000602082019050818103600083015261189181611855565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118f460268361117f565b91506118ff82611898565b604082019050919050565b60006020820190508181036000830152611923816118e7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061198660248361117f565b91506119918261192a565b604082019050919050565b600060208201905081810360008301526119b581611979565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a1860228361117f565b9150611a23826119bc565b604082019050919050565b60006020820190508181036000830152611a4781611a0b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611a84601b8361117f565b9150611a8f82611a4e565b602082019050919050565b60006020820190508181036000830152611ab381611a77565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b1660258361117f565b9150611b2182611aba565b604082019050919050565b60006020820190508181036000830152611b4581611b09565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ba860238361117f565b9150611bb382611b4c565b604082019050919050565b60006020820190508181036000830152611bd781611b9b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c3a60268361117f565b9150611c4582611bde565b604082019050919050565b60006020820190508181036000830152611c6981611c2d565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ccc60218361117f565b9150611cd782611c70565b604082019050919050565b60006020820190508181036000830152611cfb81611cbf565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d5e60228361117f565b9150611d6982611d02565b604082019050919050565b60006020820190508181036000830152611d8d81611d51565b9050919050565b6000611d9f82611292565b9150611daa83611292565b925082821015611dbd57611dbc611517565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611dfe60208361117f565b9150611e0982611dc8565b602082019050919050565b60006020820190508181036000830152611e2d81611df1565b905091905056fea2646970667358221220b54ac41f1a41d8b044e4d83e837d56b962b0bae51ca58c45694a6cc09cd0218d64736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000010426974636f696e204d696e65747269780000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064254434d54580000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Bitcoin Minetrix
Arg [1] : symbol_ (string): BTCMTX

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [3] : 426974636f696e204d696e657472697800000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 4254434d54580000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

6285:8405:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7623:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9820:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6611:74;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8238:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10293:426;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8042:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11052:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14046:79;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8518:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5518:97;;;:::i;:::-;;4913:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7820:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11560:370;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8919:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6706:72;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6801:74;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6896:72;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9372:133;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5760:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7623:94;7677:13;7706:5;7699:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7623:94;:::o;9820:149::-;9898:4;9911:34;9920:12;:10;:12::i;:::-;9934:2;9938:6;9911:8;:34::i;:::-;9959:4;9952:11;;9820:149;;;;:::o;6611:74::-;6604:2;6669;:15;;;;:::i;:::-;6652:13;:33;;;;:::i;:::-;6611:74;:::o;8238:102::-;8299:7;8322:12;;8315:19;;8238:102;:::o;10293:426::-;10399:4;10412:36;10422:6;10430:9;10441:6;10412:9;:36::i;:::-;10457:24;10484:11;:19;10496:6;10484:19;;;;;;;;;;;;;;;:33;10504:12;:10;:12::i;:::-;10484:33;;;;;;;;;;;;;;;;10457:60;;10552:6;10532:16;:26;;10524:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;10629:57;10638:6;10646:12;:10;:12::i;:::-;10679:6;10660:16;:25;10629:8;:57::i;:::-;10709:4;10702:11;;;10293:426;;;;;:::o;8042:94::-;8100:5;6604:2;8114:16;;8042:94;:::o;11052:190::-;11135:4;11148:70;11157:12;:10;:12::i;:::-;11171:2;11207:10;11175:11;:25;11187:12;:10;:12::i;:::-;11175:25;;;;;;;;;;;;;;;:29;11201:2;11175:29;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;11148:8;:70::i;:::-;11232:4;11225:11;;11052:190;;;;:::o;14046:79::-;14092:27;14098:12;:10;:12::i;:::-;14112:6;14092:5;:27::i;:::-;14046:79;:::o;8518:121::-;8592:7;8615:9;:18;8625:7;8615:18;;;;;;;;;;;;;;;;8608:25;;8518:121;;;:::o;5518:97::-;4813:13;:11;:13::i;:::-;5579:30:::1;5606:1;5579:18;:30::i;:::-;5518:97::o:0;4913:81::-;4959:7;4982:6;;;;;;;;;;;4975:13;;4913:81;:::o;7820:98::-;7876:13;7905:7;7898:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7820:98;:::o;11560:370::-;11648:4;11661:24;11688:11;:25;11700:12;:10;:12::i;:::-;11688:25;;;;;;;;;;;;;;;:29;11714:2;11688:29;;;;;;;;;;;;;;;;11661:56;;11752:15;11732:16;:35;;11724:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11835:62;11844:12;:10;:12::i;:::-;11858:2;11881:15;11862:16;:34;11835:8;:62::i;:::-;11920:4;11913:11;;;11560:370;;;;:::o;8919:165::-;9005:4;9018:42;9028:12;:10;:12::i;:::-;9042:9;9053:6;9018:9;:42::i;:::-;9074:4;9067:11;;8919:165;;;;:::o;6706:72::-;6604:2;6762;:15;;;;:::i;:::-;6747:11;:31;;;;:::i;:::-;6706:72;:::o;6801:74::-;6604:2;6859;:15;;;;:::i;:::-;6844:11;:31;;;;:::i;:::-;6801:74;:::o;6896:72::-;6604:2;6952;:15;;;;:::i;:::-;6937:11;:31;;;;:::i;:::-;6896:72;:::o;9372:133::-;9455:7;9478:11;:17;9490:4;9478:17;;;;;;;;;;;;;;;:21;9496:2;9478:21;;;;;;;;;;;;;;;;9471:28;;9372:133;;;;:::o;5760:191::-;4813:13;:11;:13::i;:::-;5865:1:::1;5845:22;;:8;:22;;;;5837:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5917:28;5936:8;5917:18;:28::i;:::-;5760:191:::0;:::o;3680:92::-;3733:7;3756:10;3749:17;;3680:92;:::o;14383:304::-;14491:1;14475:18;;:4;:18;;;;14467:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14563:1;14549:16;;:2;:16;;;;14541:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;14637:6;14613:11;:17;14625:4;14613:17;;;;;;;;;;;;;;;:21;14631:2;14613:21;;;;;;;;;;;;;;;:30;;;;14670:2;14655:26;;14664:4;14655:26;;;14674:6;14655:26;;;;;;:::i;:::-;;;;;;;;14383:304;;;:::o;12186:597::-;12297:1;12288:6;:10;12280:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;12363:1;12345:20;;:6;:20;;;;12337:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12443:1;12422:23;;:9;:23;;;;12414:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12494:21;12518:9;:17;12528:6;12518:17;;;;;;;;;;;;;;;;12494:41;;12567:6;12550:13;:23;;12542:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12678:6;12662:13;:22;12642:9;:17;12652:6;12642:17;;;;;;;;;;;;;;;:42;;;;12722:6;12698:9;:20;12708:9;12698:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12759:9;12742:35;;12751:6;12742:35;;;12770:6;12742:35;;;;;;:::i;:::-;;;;;;;;12273:510;12186:597;;;:::o;13454:432::-;13553:1;13534:21;;:7;:21;;;;13526:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13602:22;13627:9;:18;13637:7;13627:18;;;;;;;;;;;;;;;;13602:43;;13678:6;13660:14;:24;;13652:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13787:6;13770:14;:23;13749:9;:18;13759:7;13749:18;;;;;;;;;;;;;;;:44;;;;13823:6;13807:12;;:22;;;;;;;:::i;:::-;;;;;;;;13869:1;13843:37;;13852:7;13843:37;;;13873:6;13843:37;;;;;;:::i;:::-;;;;;;;;13519:367;13454:432;;:::o;5064:126::-;5135:12;:10;:12::i;:::-;5124:23;;:7;:5;:7::i;:::-;:23;;;5116:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5064:126::o;6101:177::-;6171:16;6190:6;;;;;;;;;;;6171:25;;6212:8;6203:6;;:17;;;;;;;;;;;;;;;;;;6263:8;6232:40;;6253:8;6232:40;;;;;;;;;;;;6164:114;6101:177;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:118::-;5658:24;5676:5;5658:24;:::i;:::-;5653:3;5646:37;5571:118;;:::o;5695:222::-;5788:4;5826:2;5815:9;5811:18;5803:26;;5839:71;5907:1;5896:9;5892:17;5883:6;5839:71;:::i;:::-;5695:222;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:180::-;6963:77;6960:1;6953:88;7060:4;7057:1;7050:15;7084:4;7081:1;7074:15;7101:102;7143:8;7190:5;7187:1;7183:13;7162:34;;7101:102;;;:::o;7209:848::-;7270:5;7277:4;7301:6;7292:15;;7325:5;7316:14;;7339:712;7360:1;7350:8;7347:15;7339:712;;;7455:4;7450:3;7446:14;7440:4;7437:24;7434:50;;;7464:18;;:::i;:::-;7434:50;7514:1;7504:8;7500:16;7497:451;;;7929:4;7922:5;7918:16;7909:25;;7497:451;7979:4;7973;7969:15;7961:23;;8009:32;8032:8;8009:32;:::i;:::-;7997:44;;7339:712;;;7209:848;;;;;;;:::o;8063:1073::-;8117:5;8308:8;8298:40;;8329:1;8320:10;;8331:5;;8298:40;8357:4;8347:36;;8374:1;8365:10;;8376:5;;8347:36;8443:4;8491:1;8486:27;;;;8527:1;8522:191;;;;8436:277;;8486:27;8504:1;8495:10;;8506:5;;;8522:191;8567:3;8557:8;8554:17;8551:43;;;8574:18;;:::i;:::-;8551:43;8623:8;8620:1;8616:16;8607:25;;8658:3;8651:5;8648:14;8645:40;;;8665:18;;:::i;:::-;8645:40;8698:5;;;8436:277;;8822:2;8812:8;8809:16;8803:3;8797:4;8794:13;8790:36;8772:2;8762:8;8759:16;8754:2;8748:4;8745:12;8741:35;8725:111;8722:246;;;8878:8;8872:4;8868:19;8859:28;;8913:3;8906:5;8903:14;8900:40;;;8920:18;;:::i;:::-;8900:40;8953:5;;8722:246;8993:42;9031:3;9021:8;9015:4;9012:1;8993:42;:::i;:::-;8978:57;;;;9067:4;9062:3;9058:14;9051:5;9048:25;9045:51;;;9076:18;;:::i;:::-;9045:51;9125:4;9118:5;9114:16;9105:25;;8063:1073;;;;;;:::o;9142:281::-;9200:5;9224:23;9242:4;9224:23;:::i;:::-;9216:31;;9268:25;9284:8;9268:25;:::i;:::-;9256:37;;9312:104;9349:66;9339:8;9333:4;9312:104;:::i;:::-;9303:113;;9142:281;;;;:::o;9429:348::-;9469:7;9492:20;9510:1;9492:20;:::i;:::-;9487:25;;9526:20;9544:1;9526:20;:::i;:::-;9521:25;;9714:1;9646:66;9642:74;9639:1;9636:81;9631:1;9624:9;9617:17;9613:105;9610:131;;;9721:18;;:::i;:::-;9610:131;9769:1;9766;9762:9;9751:20;;9429:348;;;;:::o;9783:227::-;9923:34;9919:1;9911:6;9907:14;9900:58;9992:10;9987:2;9979:6;9975:15;9968:35;9783:227;:::o;10016:366::-;10158:3;10179:67;10243:2;10238:3;10179:67;:::i;:::-;10172:74;;10255:93;10344:3;10255:93;:::i;:::-;10373:2;10368:3;10364:12;10357:19;;10016:366;;;:::o;10388:419::-;10554:4;10592:2;10581:9;10577:18;10569:26;;10641:9;10635:4;10631:20;10627:1;10616:9;10612:17;10605:47;10669:131;10795:4;10669:131;:::i;:::-;10661:139;;10388:419;;;:::o;10813:305::-;10853:3;10872:20;10890:1;10872:20;:::i;:::-;10867:25;;10906:20;10924:1;10906:20;:::i;:::-;10901:25;;11060:1;10992:66;10988:74;10985:1;10982:81;10979:107;;;11066:18;;:::i;:::-;10979:107;11110:1;11107;11103:9;11096:16;;10813:305;;;;:::o;11124:224::-;11264:34;11260:1;11252:6;11248:14;11241:58;11333:7;11328:2;11320:6;11316:15;11309:32;11124:224;:::o;11354:366::-;11496:3;11517:67;11581:2;11576:3;11517:67;:::i;:::-;11510:74;;11593:93;11682:3;11593:93;:::i;:::-;11711:2;11706:3;11702:12;11695:19;;11354:366;;;:::o;11726:419::-;11892:4;11930:2;11919:9;11915:18;11907:26;;11979:9;11973:4;11969:20;11965:1;11954:9;11950:17;11943:47;12007:131;12133:4;12007:131;:::i;:::-;11999:139;;11726:419;;;:::o;12151:225::-;12291:34;12287:1;12279:6;12275:14;12268:58;12360:8;12355:2;12347:6;12343:15;12336:33;12151:225;:::o;12382:366::-;12524:3;12545:67;12609:2;12604:3;12545:67;:::i;:::-;12538:74;;12621:93;12710:3;12621:93;:::i;:::-;12739:2;12734:3;12730:12;12723:19;;12382:366;;;:::o;12754:419::-;12920:4;12958:2;12947:9;12943:18;12935:26;;13007:9;13001:4;12997:20;12993:1;12982:9;12978:17;12971:47;13035:131;13161:4;13035:131;:::i;:::-;13027:139;;12754:419;;;:::o;13179:223::-;13319:34;13315:1;13307:6;13303:14;13296:58;13388:6;13383:2;13375:6;13371:15;13364:31;13179:223;:::o;13408:366::-;13550:3;13571:67;13635:2;13630:3;13571:67;:::i;:::-;13564:74;;13647:93;13736:3;13647:93;:::i;:::-;13765:2;13760:3;13756:12;13749:19;;13408:366;;;:::o;13780:419::-;13946:4;13984:2;13973:9;13969:18;13961:26;;14033:9;14027:4;14023:20;14019:1;14008:9;14004:17;13997:47;14061:131;14187:4;14061:131;:::i;:::-;14053:139;;13780:419;;;:::o;14205:221::-;14345:34;14341:1;14333:6;14329:14;14322:58;14414:4;14409:2;14401:6;14397:15;14390:29;14205:221;:::o;14432:366::-;14574:3;14595:67;14659:2;14654:3;14595:67;:::i;:::-;14588:74;;14671:93;14760:3;14671:93;:::i;:::-;14789:2;14784:3;14780:12;14773:19;;14432:366;;;:::o;14804:419::-;14970:4;15008:2;14997:9;14993:18;14985:26;;15057:9;15051:4;15047:20;15043:1;15032:9;15028:17;15021:47;15085:131;15211:4;15085:131;:::i;:::-;15077:139;;14804:419;;;:::o;15229:177::-;15369:29;15365:1;15357:6;15353:14;15346:53;15229:177;:::o;15412:366::-;15554:3;15575:67;15639:2;15634:3;15575:67;:::i;:::-;15568:74;;15651:93;15740:3;15651:93;:::i;:::-;15769:2;15764:3;15760:12;15753:19;;15412:366;;;:::o;15784:419::-;15950:4;15988:2;15977:9;15973:18;15965:26;;16037:9;16031:4;16027:20;16023:1;16012:9;16008:17;16001:47;16065:131;16191:4;16065:131;:::i;:::-;16057:139;;15784:419;;;:::o;16209:224::-;16349:34;16345:1;16337:6;16333:14;16326:58;16418:7;16413:2;16405:6;16401:15;16394:32;16209:224;:::o;16439:366::-;16581:3;16602:67;16666:2;16661:3;16602:67;:::i;:::-;16595:74;;16678:93;16767:3;16678:93;:::i;:::-;16796:2;16791:3;16787:12;16780:19;;16439:366;;;:::o;16811:419::-;16977:4;17015:2;17004:9;17000:18;16992:26;;17064:9;17058:4;17054:20;17050:1;17039:9;17035:17;17028:47;17092:131;17218:4;17092:131;:::i;:::-;17084:139;;16811:419;;;:::o;17236:222::-;17376:34;17372:1;17364:6;17360:14;17353:58;17445:5;17440:2;17432:6;17428:15;17421:30;17236:222;:::o;17464:366::-;17606:3;17627:67;17691:2;17686:3;17627:67;:::i;:::-;17620:74;;17703:93;17792:3;17703:93;:::i;:::-;17821:2;17816:3;17812:12;17805:19;;17464:366;;;:::o;17836:419::-;18002:4;18040:2;18029:9;18025:18;18017:26;;18089:9;18083:4;18079:20;18075:1;18064:9;18060:17;18053:47;18117:131;18243:4;18117:131;:::i;:::-;18109:139;;17836:419;;;:::o;18261:225::-;18401:34;18397:1;18389:6;18385:14;18378:58;18470:8;18465:2;18457:6;18453:15;18446:33;18261:225;:::o;18492:366::-;18634:3;18655:67;18719:2;18714:3;18655:67;:::i;:::-;18648:74;;18731:93;18820:3;18731:93;:::i;:::-;18849:2;18844:3;18840:12;18833:19;;18492:366;;;:::o;18864:419::-;19030:4;19068:2;19057:9;19053:18;19045:26;;19117:9;19111:4;19107:20;19103:1;19092:9;19088:17;19081:47;19145:131;19271:4;19145:131;:::i;:::-;19137:139;;18864:419;;;:::o;19289:220::-;19429:34;19425:1;19417:6;19413:14;19406:58;19498:3;19493:2;19485:6;19481:15;19474:28;19289:220;:::o;19515:366::-;19657:3;19678:67;19742:2;19737:3;19678:67;:::i;:::-;19671:74;;19754:93;19843:3;19754:93;:::i;:::-;19872:2;19867:3;19863:12;19856:19;;19515:366;;;:::o;19887:419::-;20053:4;20091:2;20080:9;20076:18;20068:26;;20140:9;20134:4;20130:20;20126:1;20115:9;20111:17;20104:47;20168:131;20294:4;20168:131;:::i;:::-;20160:139;;19887:419;;;:::o;20312:221::-;20452:34;20448:1;20440:6;20436:14;20429:58;20521:4;20516:2;20508:6;20504:15;20497:29;20312:221;:::o;20539:366::-;20681:3;20702:67;20766:2;20761:3;20702:67;:::i;:::-;20695:74;;20778:93;20867:3;20778:93;:::i;:::-;20896:2;20891:3;20887:12;20880:19;;20539:366;;;:::o;20911:419::-;21077:4;21115:2;21104:9;21100:18;21092:26;;21164:9;21158:4;21154:20;21150:1;21139:9;21135:17;21128:47;21192:131;21318:4;21192:131;:::i;:::-;21184:139;;20911:419;;;:::o;21336:191::-;21376:4;21396:20;21414:1;21396:20;:::i;:::-;21391:25;;21430:20;21448:1;21430:20;:::i;:::-;21425:25;;21469:1;21466;21463:8;21460:34;;;21474:18;;:::i;:::-;21460:34;21519:1;21516;21512:9;21504:17;;21336:191;;;;:::o;21533:182::-;21673:34;21669:1;21661:6;21657:14;21650:58;21533:182;:::o;21721:366::-;21863:3;21884:67;21948:2;21943:3;21884:67;:::i;:::-;21877:74;;21960:93;22049:3;21960:93;:::i;:::-;22078:2;22073:3;22069:12;22062:19;;21721:366;;;:::o;22093:419::-;22259:4;22297:2;22286:9;22282:18;22274:26;;22346:9;22340:4;22336:20;22332:1;22321:9;22317:17;22310:47;22374:131;22500:4;22374:131;:::i;:::-;22366:139;;22093:419;;;:::o

Swarm Source

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