ERC-20
Overview
Max Total Supply
1,000,000,000,000 Lola
Holders
19
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LOLA
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-17 */ // SPDX-License-Identifier: No License pragma solidity ^0.8.10; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } library Address { function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } 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"); } 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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); 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); } } } } contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; constructor (string memory tname, string memory tsymbol) { _name = tname; _symbol = tsymbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract LOLA is ERC20, Ownable { mapping (address => bool) private whitelisters; constructor() ERC20("Lola", "Lola") { whitelisters[msg.sender] = true; _mint(msg.sender, 1000000000000 * 10 ** decimals()); } function setWhitelisters(address _whitelister, bool iswhitelister)external onlyOwner{ whitelisters[_whitelister] = iswhitelister; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override virtual { if(!whitelisters[to]) require( balanceOf(to) + amount <= totalSupply() / 100 * 2 , "You can't transfer"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelister","type":"address"},{"internalType":"bool","name":"iswhitelister","type":"bool"}],"name":"setWhitelisters","outputs":[],"stateMutability":"nonpayable","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600481526020017f4c6f6c61000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c6f6c610000000000000000000000000000000000000000000000000000000081525081600390816200008f9190620007f2565b508060049081620000a19190620007f2565b506012600560006101000a81548160ff021916908360ff16021790555050506000620000d26200021060201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200020a33620001de6200021860201b60201c565b600a620001ec919062000a69565b64e8d4a51000620001fe919062000aba565b6200022f60201b60201c565b62000d3c565b600033905090565b6000600560009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002989062000b66565b60405180910390fd5b620002b560008383620003dd60201b60201c565b620002d181600254620004c360201b62000c051790919060201c565b6002819055506200032f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620004c360201b62000c051790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003d1919062000b99565b60405180910390a35050565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16620004be5760026064620004436200052660201b60201c565b6200044f919062000be5565b6200045b919062000aba565b816200046d846200053060201b60201c565b62000479919062000c1d565b1115620004bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b49062000ca8565b60405180910390fd5b5b505050565b6000808284620004d4919062000c1d565b9050838110156200051c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005139062000d1a565b60405180910390fd5b8091505092915050565b6000600254905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005fa57607f821691505b60208210810362000610576200060f620005b2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200067a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200063b565b6200068686836200063b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006d3620006cd620006c7846200069e565b620006a8565b6200069e565b9050919050565b6000819050919050565b620006ef83620006b2565b62000707620006fe82620006da565b84845462000648565b825550505050565b600090565b6200071e6200070f565b6200072b818484620006e4565b505050565b5b8181101562000753576200074760008262000714565b60018101905062000731565b5050565b601f821115620007a2576200076c8162000616565b62000777846200062b565b8101602085101562000787578190505b6200079f62000796856200062b565b83018262000730565b50505b505050565b600082821c905092915050565b6000620007c760001984600802620007a7565b1980831691505092915050565b6000620007e28383620007b4565b9150826002028217905092915050565b620007fd8262000578565b67ffffffffffffffff81111562000819576200081862000583565b5b620008258254620005e1565b6200083282828562000757565b600060209050601f8311600181146200086a576000841562000855578287015190505b620008618582620007d4565b865550620008d1565b601f1984166200087a8662000616565b60005b82811015620008a4578489015182556001820191506020850194506020810190506200087d565b86831015620008c45784890151620008c0601f891682620007b4565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000967578086048111156200093f576200093e620008d9565b5b60018516156200094f5780820291505b80810290506200095f8562000908565b94506200091f565b94509492505050565b60008262000982576001905062000a55565b8162000992576000905062000a55565b8160018114620009ab5760028114620009b657620009ec565b600191505062000a55565b60ff841115620009cb57620009ca620008d9565b5b8360020a915084821115620009e557620009e4620008d9565b5b5062000a55565b5060208310610133831016604e8410600b841016171562000a265782820a90508381111562000a205762000a1f620008d9565b5b62000a55565b62000a35848484600162000915565b9250905081840481111562000a4f5762000a4e620008d9565b5b81810290505b9392505050565b600060ff82169050919050565b600062000a76826200069e565b915062000a838362000a5c565b925062000ab27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000970565b905092915050565b600062000ac7826200069e565b915062000ad4836200069e565b925082820262000ae4816200069e565b9150828204841483151762000afe5762000afd620008d9565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b4e601f8362000b05565b915062000b5b8262000b16565b602082019050919050565b6000602082019050818103600083015262000b818162000b3f565b9050919050565b62000b93816200069e565b82525050565b600060208201905062000bb0600083018462000b88565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000bf2826200069e565b915062000bff836200069e565b92508262000c125762000c1162000bb6565b5b828204905092915050565b600062000c2a826200069e565b915062000c37836200069e565b925082820190508082111562000c525762000c51620008d9565b5b92915050565b7f596f752063616e2774207472616e736665720000000000000000000000000000600082015250565b600062000c9060128362000b05565b915062000c9d8262000c58565b602082019050919050565b6000602082019050818103600083015262000cc38162000c81565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000d02601b8362000b05565b915062000d0f8262000cca565b602082019050919050565b6000602082019050818103600083015262000d358162000cf3565b9050919050565b611bcf8062000d4c6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461028a578063b8985d4e146102ba578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190611287565b60405180910390f35b610132600480360381019061012d9190611342565b6103b4565b60405161013f919061139d565b60405180910390f35b6101506103d2565b60405161015d91906113c7565b60405180910390f35b610180600480360381019061017b91906113e2565b6103dc565b60405161018d919061139d565b60405180910390f35b61019e6104b5565b6040516101ab9190611451565b60405180910390f35b6101ce60048036038101906101c99190611342565b6104cc565b6040516101db919061139d565b60405180910390f35b6101fe60048036038101906101f9919061146c565b61057f565b60405161020b91906113c7565b60405180910390f35b61021c6105c7565b005b61022661071f565b60405161023391906114a8565b60405180910390f35b610244610749565b6040516102519190611287565b60405180910390f35b610274600480360381019061026f9190611342565b6107db565b604051610281919061139d565b60405180910390f35b6102a4600480360381019061029f9190611342565b6108a8565b6040516102b1919061139d565b60405180910390f35b6102d460048036038101906102cf91906114ef565b6108c6565b005b6102f060048036038101906102eb919061152f565b6109b8565b6040516102fd91906113c7565b60405180910390f35b610320600480360381019061031b919061146c565b610a3f565b005b6060600380546103319061159e565b80601f016020809104026020016040519081016040528092919081815260200182805461035d9061159e565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c86103c1610c63565b8484610c6b565b6001905092915050565b6000600254905090565b60006103e9848484610e34565b6104aa846103f5610c63565b6104a585604051806060016040528060288152602001611b4d60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610c63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110c79092919063ffffffff16565b610c6b565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105756104d9610c63565b8461057085600160006104ea610c63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c0590919063ffffffff16565b610c6b565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105cf610c63565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461065e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106559061161b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107589061159e565b80601f01602080910402602001604051908101604052809291908181526020018280546107849061159e565b80156107d15780601f106107a6576101008083540402835291602001916107d1565b820191906000526020600020905b8154815290600101906020018083116107b457829003601f168201915b5050505050905090565b600061089e6107e8610c63565b8461089985604051806060016040528060258152602001611b756025913960016000610812610c63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110c79092919063ffffffff16565b610c6b565b6001905092915050565b60006108bc6108b5610c63565b8484610e34565b6001905092915050565b6108ce610c63565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461095d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109549061161b565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a47610c63565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd9061161b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c906116ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284610c1491906116fc565b905083811015610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c509061177c565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd19061180e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d40906118a0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e2791906113c7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90611932565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f09906119c4565b60405180910390fd5b610f1d83838361112b565b610f8881604051806060016040528060268152602001611b27602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110c79092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061101b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c0590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110ba91906113c7565b60405180910390a3505050565b600083831115829061110f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111069190611287565b60405180910390fd5b506000838561111e91906119e4565b9050809150509392505050565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111f257600260646111886103d2565b6111929190611a47565b61119c9190611a78565b816111a68461057f565b6111b091906116fc565b11156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890611b06565b60405180910390fd5b5b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611231578082015181840152602081019050611216565b60008484015250505050565b6000601f19601f8301169050919050565b6000611259826111f7565b6112638185611202565b9350611273818560208601611213565b61127c8161123d565b840191505092915050565b600060208201905081810360008301526112a1818461124e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112d9826112ae565b9050919050565b6112e9816112ce565b81146112f457600080fd5b50565b600081359050611306816112e0565b92915050565b6000819050919050565b61131f8161130c565b811461132a57600080fd5b50565b60008135905061133c81611316565b92915050565b60008060408385031215611359576113586112a9565b5b6000611367858286016112f7565b92505060206113788582860161132d565b9150509250929050565b60008115159050919050565b61139781611382565b82525050565b60006020820190506113b2600083018461138e565b92915050565b6113c18161130c565b82525050565b60006020820190506113dc60008301846113b8565b92915050565b6000806000606084860312156113fb576113fa6112a9565b5b6000611409868287016112f7565b935050602061141a868287016112f7565b925050604061142b8682870161132d565b9150509250925092565b600060ff82169050919050565b61144b81611435565b82525050565b60006020820190506114666000830184611442565b92915050565b600060208284031215611482576114816112a9565b5b6000611490848285016112f7565b91505092915050565b6114a2816112ce565b82525050565b60006020820190506114bd6000830184611499565b92915050565b6114cc81611382565b81146114d757600080fd5b50565b6000813590506114e9816114c3565b92915050565b60008060408385031215611506576115056112a9565b5b6000611514858286016112f7565b9250506020611525858286016114da565b9150509250929050565b60008060408385031215611546576115456112a9565b5b6000611554858286016112f7565b9250506020611565858286016112f7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115b657607f821691505b6020821081036115c9576115c861156f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611605602083611202565b9150611610826115cf565b602082019050919050565b60006020820190508181036000830152611634816115f8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611697602683611202565b91506116a28261163b565b604082019050919050565b600060208201905081810360008301526116c68161168a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117078261130c565b91506117128361130c565b925082820190508082111561172a576117296116cd565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000611766601b83611202565b915061177182611730565b602082019050919050565b6000602082019050818103600083015261179581611759565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117f8602483611202565b91506118038261179c565b604082019050919050565b60006020820190508181036000830152611827816117eb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061188a602283611202565b91506118958261182e565b604082019050919050565b600060208201905081810360008301526118b98161187d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061191c602583611202565b9150611927826118c0565b604082019050919050565b6000602082019050818103600083015261194b8161190f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119ae602383611202565b91506119b982611952565b604082019050919050565b600060208201905081810360008301526119dd816119a1565b9050919050565b60006119ef8261130c565b91506119fa8361130c565b9250828203905081811115611a1257611a116116cd565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611a528261130c565b9150611a5d8361130c565b925082611a6d57611a6c611a18565b5b828204905092915050565b6000611a838261130c565b9150611a8e8361130c565b9250828202611a9c8161130c565b91508282048414831517611ab357611ab26116cd565b5b5092915050565b7f596f752063616e2774207472616e736665720000000000000000000000000000600082015250565b6000611af0601283611202565b9150611afb82611aba565b602082019050919050565b60006020820190508181036000830152611b1f81611ae3565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dcf0ab60c474cd3ad4ad7653d5636dc9e24ee29c405132b2442ef58a15529bc564736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461028a578063b8985d4e146102ba578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190611287565b60405180910390f35b610132600480360381019061012d9190611342565b6103b4565b60405161013f919061139d565b60405180910390f35b6101506103d2565b60405161015d91906113c7565b60405180910390f35b610180600480360381019061017b91906113e2565b6103dc565b60405161018d919061139d565b60405180910390f35b61019e6104b5565b6040516101ab9190611451565b60405180910390f35b6101ce60048036038101906101c99190611342565b6104cc565b6040516101db919061139d565b60405180910390f35b6101fe60048036038101906101f9919061146c565b61057f565b60405161020b91906113c7565b60405180910390f35b61021c6105c7565b005b61022661071f565b60405161023391906114a8565b60405180910390f35b610244610749565b6040516102519190611287565b60405180910390f35b610274600480360381019061026f9190611342565b6107db565b604051610281919061139d565b60405180910390f35b6102a4600480360381019061029f9190611342565b6108a8565b6040516102b1919061139d565b60405180910390f35b6102d460048036038101906102cf91906114ef565b6108c6565b005b6102f060048036038101906102eb919061152f565b6109b8565b6040516102fd91906113c7565b60405180910390f35b610320600480360381019061031b919061146c565b610a3f565b005b6060600380546103319061159e565b80601f016020809104026020016040519081016040528092919081815260200182805461035d9061159e565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c86103c1610c63565b8484610c6b565b6001905092915050565b6000600254905090565b60006103e9848484610e34565b6104aa846103f5610c63565b6104a585604051806060016040528060288152602001611b4d60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610c63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110c79092919063ffffffff16565b610c6b565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105756104d9610c63565b8461057085600160006104ea610c63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c0590919063ffffffff16565b610c6b565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105cf610c63565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461065e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106559061161b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107589061159e565b80601f01602080910402602001604051908101604052809291908181526020018280546107849061159e565b80156107d15780601f106107a6576101008083540402835291602001916107d1565b820191906000526020600020905b8154815290600101906020018083116107b457829003601f168201915b5050505050905090565b600061089e6107e8610c63565b8461089985604051806060016040528060258152602001611b756025913960016000610812610c63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110c79092919063ffffffff16565b610c6b565b6001905092915050565b60006108bc6108b5610c63565b8484610e34565b6001905092915050565b6108ce610c63565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461095d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109549061161b565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a47610c63565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd9061161b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c906116ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284610c1491906116fc565b905083811015610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c509061177c565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd19061180e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d40906118a0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e2791906113c7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90611932565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f09906119c4565b60405180910390fd5b610f1d83838361112b565b610f8881604051806060016040528060268152602001611b27602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110c79092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061101b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c0590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110ba91906113c7565b60405180910390a3505050565b600083831115829061110f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111069190611287565b60405180910390fd5b506000838561111e91906119e4565b9050809150509392505050565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111f257600260646111886103d2565b6111929190611a47565b61119c9190611a78565b816111a68461057f565b6111b091906116fc565b11156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890611b06565b60405180910390fd5b5b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611231578082015181840152602081019050611216565b60008484015250505050565b6000601f19601f8301169050919050565b6000611259826111f7565b6112638185611202565b9350611273818560208601611213565b61127c8161123d565b840191505092915050565b600060208201905081810360008301526112a1818461124e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112d9826112ae565b9050919050565b6112e9816112ce565b81146112f457600080fd5b50565b600081359050611306816112e0565b92915050565b6000819050919050565b61131f8161130c565b811461132a57600080fd5b50565b60008135905061133c81611316565b92915050565b60008060408385031215611359576113586112a9565b5b6000611367858286016112f7565b92505060206113788582860161132d565b9150509250929050565b60008115159050919050565b61139781611382565b82525050565b60006020820190506113b2600083018461138e565b92915050565b6113c18161130c565b82525050565b60006020820190506113dc60008301846113b8565b92915050565b6000806000606084860312156113fb576113fa6112a9565b5b6000611409868287016112f7565b935050602061141a868287016112f7565b925050604061142b8682870161132d565b9150509250925092565b600060ff82169050919050565b61144b81611435565b82525050565b60006020820190506114666000830184611442565b92915050565b600060208284031215611482576114816112a9565b5b6000611490848285016112f7565b91505092915050565b6114a2816112ce565b82525050565b60006020820190506114bd6000830184611499565b92915050565b6114cc81611382565b81146114d757600080fd5b50565b6000813590506114e9816114c3565b92915050565b60008060408385031215611506576115056112a9565b5b6000611514858286016112f7565b9250506020611525858286016114da565b9150509250929050565b60008060408385031215611546576115456112a9565b5b6000611554858286016112f7565b9250506020611565858286016112f7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115b657607f821691505b6020821081036115c9576115c861156f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611605602083611202565b9150611610826115cf565b602082019050919050565b60006020820190508181036000830152611634816115f8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611697602683611202565b91506116a28261163b565b604082019050919050565b600060208201905081810360008301526116c68161168a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117078261130c565b91506117128361130c565b925082820190508082111561172a576117296116cd565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000611766601b83611202565b915061177182611730565b602082019050919050565b6000602082019050818103600083015261179581611759565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117f8602483611202565b91506118038261179c565b604082019050919050565b60006020820190508181036000830152611827816117eb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061188a602283611202565b91506118958261182e565b604082019050919050565b600060208201905081810360008301526118b98161187d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061191c602583611202565b9150611927826118c0565b604082019050919050565b6000602082019050818103600083015261194b8161190f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119ae602383611202565b91506119b982611952565b604082019050919050565b600060208201905081810360008301526119dd816119a1565b9050919050565b60006119ef8261130c565b91506119fa8361130c565b9250828203905081811115611a1257611a116116cd565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611a528261130c565b9150611a5d8361130c565b925082611a6d57611a6c611a18565b5b828204905092915050565b6000611a838261130c565b9150611a8e8361130c565b9250828202611a9c8161130c565b91508282048414831517611ab357611ab26116cd565b5b5092915050565b7f596f752063616e2774207472616e736665720000000000000000000000000000600082015250565b6000611af0601283611202565b9150611afb82611aba565b602082019050919050565b60006020820190508181036000830152611b1f81611ae3565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dcf0ab60c474cd3ad4ad7653d5636dc9e24ee29c405132b2442ef58a15529bc564736f6c63430008120033
Deployed Bytecode Sourcemap
22719:650:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12214:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14320:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13289:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14963:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13141:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15693:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13452:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22165:148;;;:::i;:::-;;21523:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12416:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16414:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13784:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22974:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14022:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22468:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12214:83;12251:13;12284:5;12277:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12214:83;:::o;14320:169::-;14403:4;14420:39;14429:12;:10;:12::i;:::-;14443:7;14452:6;14420:8;:39::i;:::-;14477:4;14470:11;;14320:169;;;;:::o;13289:100::-;13342:7;13369:12;;13362:19;;13289:100;:::o;14963:321::-;15069:4;15086:36;15096:6;15104:9;15115:6;15086:9;:36::i;:::-;15133:121;15142:6;15150:12;:10;:12::i;:::-;15164:89;15202:6;15164:89;;;;;;;;;;;;;;;;;:11;:19;15176:6;15164:19;;;;;;;;;;;;;;;:33;15184:12;:10;:12::i;:::-;15164:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;15133:8;:121::i;:::-;15272:4;15265:11;;14963:321;;;;;:::o;13141:83::-;13182:5;13207:9;;;;;;;;;;;13200:16;;13141:83;:::o;15693:218::-;15781:4;15798:83;15807:12;:10;:12::i;:::-;15821:7;15830:50;15869:10;15830:11;:25;15842:12;:10;:12::i;:::-;15830:25;;;;;;;;;;;;;;;:34;15856:7;15830:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;15798:8;:83::i;:::-;15899:4;15892:11;;15693:218;;;;:::o;13452:119::-;13518:7;13545:9;:18;13555:7;13545:18;;;;;;;;;;;;;;;;13538:25;;13452:119;;;:::o;22165:148::-;21745:12;:10;:12::i;:::-;21735:22;;:6;;;;;;;;;;;:22;;;21727:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22272:1:::1;22235:40;;22256:6;;;;;;;;;;;22235:40;;;;;;;;;;;;22303:1;22286:6;;:19;;;;;;;;;;;;;;;;;;22165:148::o:0;21523:79::-;21561:7;21588:6;;;;;;;;;;;21581:13;;21523:79;:::o;12416:87::-;12455:13;12488:7;12481:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12416:87;:::o;16414:269::-;16507:4;16524:129;16533:12;:10;:12::i;:::-;16547:7;16556:96;16595:15;16556:96;;;;;;;;;;;;;;;;;:11;:25;16568:12;:10;:12::i;:::-;16556:25;;;;;;;;;;;;;;;:34;16582:7;16556:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;16524:8;:129::i;:::-;16671:4;16664:11;;16414:269;;;;:::o;13784:175::-;13870:4;13887:42;13897:12;:10;:12::i;:::-;13911:9;13922:6;13887:9;:42::i;:::-;13947:4;13940:11;;13784:175;;;;:::o;22974:145::-;21745:12;:10;:12::i;:::-;21735:22;;:6;;;;;;;;;;;:22;;;21727:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23098:13:::1;23069:12;:26;23082:12;23069:26;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;22974:145:::0;;:::o;14022:151::-;14111:7;14138:11;:18;14150:5;14138:18;;;;;;;;;;;;;;;:27;14157:7;14138:27;;;;;;;;;;;;;;;;14131:34;;14022:151;;;;:::o;22468:244::-;21745:12;:10;:12::i;:::-;21735:22;;:6;;;;;;;;;;;:22;;;21727:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22577:1:::1;22557:22;;:8;:22;;::::0;22549:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22667:8;22638:38;;22659:6;;;;;;;;;;;22638:38;;;;;;;;;;;;22696:8;22687:6;;:17;;;;;;;;;;;;;;;;;;22468:244:::0;:::o;3351:181::-;3409:7;3429:9;3445:1;3441;:5;;;;:::i;:::-;3429:17;;3470:1;3465;:6;;3457:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3523:1;3516:8;;;3351:181;;;;:::o;103:98::-;156:7;183:10;176:17;;103:98;:::o;19561:346::-;19680:1;19663:19;;:5;:19;;;19655:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19761:1;19742:21;;:7;:21;;;19734:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19845:6;19815:11;:18;19827:5;19815:18;;;;;;;;;;;;;;;:27;19834:7;19815:27;;;;;;;;;;;;;;;:36;;;;19883:7;19867:32;;19876:5;19867:32;;;19892:6;19867:32;;;;;;:::i;:::-;;;;;;;;19561:346;;;:::o;17173:539::-;17297:1;17279:20;;:6;:20;;;17271:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;17381:1;17360:23;;:9;:23;;;17352:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17436:47;17457:6;17465:9;17476:6;17436:20;:47::i;:::-;17516:71;17538:6;17516:71;;;;;;;;;;;;;;;;;:9;:17;17526:6;17516:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;17496:9;:17;17506:6;17496:17;;;;;;;;;;;;;;;:91;;;;17621:32;17646:6;17621:9;:20;17631:9;17621:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;17598:9;:20;17608:9;17598:20;;;;;;;;;;;;;;;:55;;;;17686:9;17669:35;;17678:6;17669:35;;;17697:6;17669:35;;;;;;:::i;:::-;;;;;;;;17173:539;;;:::o;4254:192::-;4340:7;4373:1;4368;:6;;4376:12;4360:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4400:9;4416:1;4412;:5;;;;:::i;:::-;4400:17;;4437:1;4430:8;;;4254:192;;;;;:::o;23128:236::-;23243:12;:16;23256:2;23243:16;;;;;;;;;;;;;;;;;;;;;;;;;23239:117;;23331:1;23325:3;23309:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:23;;;;:::i;:::-;23299:6;23283:13;23293:2;23283:9;:13::i;:::-;:22;;;;:::i;:::-;:49;;23274:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;23239:117;23128:236;;;:::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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:116::-;5610:21;5625:5;5610:21;:::i;:::-;5603:5;5600:32;5590:60;;5646:1;5643;5636:12;5590:60;5540:116;:::o;5662:133::-;5705:5;5743:6;5730:20;5721:29;;5759:30;5783:5;5759:30;:::i;:::-;5662:133;;;;:::o;5801:468::-;5866:6;5874;5923:2;5911:9;5902:7;5898:23;5894:32;5891:119;;;5929:79;;:::i;:::-;5891:119;6049:1;6074:53;6119:7;6110:6;6099:9;6095:22;6074:53;:::i;:::-;6064:63;;6020:117;6176:2;6202:50;6244:7;6235:6;6224:9;6220:22;6202:50;:::i;:::-;6192:60;;6147:115;5801:468;;;;;:::o;6275:474::-;6343:6;6351;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:53;6596:7;6587:6;6576:9;6572:22;6551:53;:::i;:::-;6541:63;;6497:117;6653:2;6679:53;6724:7;6715:6;6704:9;6700:22;6679:53;:::i;:::-;6669:63;;6624:118;6275:474;;;;;:::o;6755:180::-;6803:77;6800:1;6793:88;6900:4;6897:1;6890:15;6924:4;6921:1;6914:15;6941:320;6985:6;7022:1;7016:4;7012:12;7002:22;;7069:1;7063:4;7059:12;7090:18;7080:81;;7146:4;7138:6;7134:17;7124:27;;7080:81;7208:2;7200:6;7197:14;7177:18;7174:38;7171:84;;7227:18;;:::i;:::-;7171:84;6992:269;6941:320;;;:::o;7267:182::-;7407:34;7403:1;7395:6;7391:14;7384:58;7267:182;:::o;7455:366::-;7597:3;7618:67;7682:2;7677:3;7618:67;:::i;:::-;7611:74;;7694:93;7783:3;7694:93;:::i;:::-;7812:2;7807:3;7803:12;7796:19;;7455:366;;;:::o;7827:419::-;7993:4;8031:2;8020:9;8016:18;8008:26;;8080:9;8074:4;8070:20;8066:1;8055:9;8051:17;8044:47;8108:131;8234:4;8108:131;:::i;:::-;8100:139;;7827:419;;;:::o;8252:225::-;8392:34;8388:1;8380:6;8376:14;8369:58;8461:8;8456:2;8448:6;8444:15;8437:33;8252:225;:::o;8483:366::-;8625:3;8646:67;8710:2;8705:3;8646:67;:::i;:::-;8639:74;;8722:93;8811:3;8722:93;:::i;:::-;8840:2;8835:3;8831:12;8824:19;;8483:366;;;:::o;8855:419::-;9021:4;9059:2;9048:9;9044:18;9036:26;;9108:9;9102:4;9098:20;9094:1;9083:9;9079:17;9072:47;9136:131;9262:4;9136:131;:::i;:::-;9128:139;;8855:419;;;:::o;9280:180::-;9328:77;9325:1;9318:88;9425:4;9422:1;9415:15;9449:4;9446:1;9439:15;9466:191;9506:3;9525:20;9543:1;9525:20;:::i;:::-;9520:25;;9559:20;9577:1;9559:20;:::i;:::-;9554:25;;9602:1;9599;9595:9;9588:16;;9623:3;9620:1;9617:10;9614:36;;;9630:18;;:::i;:::-;9614:36;9466:191;;;;:::o;9663:177::-;9803:29;9799:1;9791:6;9787:14;9780:53;9663:177;:::o;9846:366::-;9988:3;10009:67;10073:2;10068:3;10009:67;:::i;:::-;10002:74;;10085:93;10174:3;10085:93;:::i;:::-;10203:2;10198:3;10194:12;10187:19;;9846:366;;;:::o;10218:419::-;10384:4;10422:2;10411:9;10407:18;10399:26;;10471:9;10465:4;10461:20;10457:1;10446:9;10442:17;10435:47;10499:131;10625:4;10499:131;:::i;:::-;10491:139;;10218:419;;;:::o;10643:223::-;10783:34;10779:1;10771:6;10767:14;10760:58;10852:6;10847:2;10839:6;10835:15;10828:31;10643:223;:::o;10872:366::-;11014:3;11035:67;11099:2;11094:3;11035:67;:::i;:::-;11028:74;;11111:93;11200:3;11111:93;:::i;:::-;11229:2;11224:3;11220:12;11213:19;;10872:366;;;:::o;11244:419::-;11410:4;11448:2;11437:9;11433:18;11425:26;;11497:9;11491:4;11487:20;11483:1;11472:9;11468:17;11461:47;11525:131;11651:4;11525:131;:::i;:::-;11517:139;;11244:419;;;:::o;11669:221::-;11809:34;11805:1;11797:6;11793:14;11786:58;11878:4;11873:2;11865:6;11861:15;11854:29;11669:221;:::o;11896:366::-;12038:3;12059:67;12123:2;12118:3;12059:67;:::i;:::-;12052:74;;12135:93;12224:3;12135:93;:::i;:::-;12253:2;12248:3;12244:12;12237:19;;11896:366;;;:::o;12268:419::-;12434:4;12472:2;12461:9;12457:18;12449:26;;12521:9;12515:4;12511:20;12507:1;12496:9;12492:17;12485:47;12549:131;12675:4;12549:131;:::i;:::-;12541:139;;12268:419;;;:::o;12693:224::-;12833:34;12829:1;12821:6;12817:14;12810:58;12902:7;12897:2;12889:6;12885:15;12878:32;12693:224;:::o;12923:366::-;13065:3;13086:67;13150:2;13145:3;13086:67;:::i;:::-;13079:74;;13162:93;13251:3;13162:93;:::i;:::-;13280:2;13275:3;13271:12;13264:19;;12923:366;;;:::o;13295:419::-;13461:4;13499:2;13488:9;13484:18;13476:26;;13548:9;13542:4;13538:20;13534:1;13523:9;13519:17;13512:47;13576:131;13702:4;13576:131;:::i;:::-;13568:139;;13295:419;;;:::o;13720:222::-;13860:34;13856:1;13848:6;13844:14;13837:58;13929:5;13924:2;13916:6;13912:15;13905:30;13720:222;:::o;13948:366::-;14090:3;14111:67;14175:2;14170:3;14111:67;:::i;:::-;14104:74;;14187:93;14276:3;14187:93;:::i;:::-;14305:2;14300:3;14296:12;14289:19;;13948:366;;;:::o;14320:419::-;14486:4;14524:2;14513:9;14509:18;14501:26;;14573:9;14567:4;14563:20;14559:1;14548:9;14544:17;14537:47;14601:131;14727:4;14601:131;:::i;:::-;14593:139;;14320:419;;;:::o;14745:194::-;14785:4;14805:20;14823:1;14805:20;:::i;:::-;14800:25;;14839:20;14857:1;14839:20;:::i;:::-;14834:25;;14883:1;14880;14876:9;14868:17;;14907:1;14901:4;14898:11;14895:37;;;14912:18;;:::i;:::-;14895:37;14745:194;;;;:::o;14945:180::-;14993:77;14990:1;14983:88;15090:4;15087:1;15080:15;15114:4;15111:1;15104:15;15131:185;15171:1;15188:20;15206:1;15188:20;:::i;:::-;15183:25;;15222:20;15240:1;15222:20;:::i;:::-;15217:25;;15261:1;15251:35;;15266:18;;:::i;:::-;15251:35;15308:1;15305;15301:9;15296:14;;15131:185;;;;:::o;15322:410::-;15362:7;15385:20;15403:1;15385:20;:::i;:::-;15380:25;;15419:20;15437:1;15419:20;:::i;:::-;15414:25;;15474:1;15471;15467:9;15496:30;15514:11;15496:30;:::i;:::-;15485:41;;15675:1;15666:7;15662:15;15659:1;15656:22;15636:1;15629:9;15609:83;15586:139;;15705:18;;:::i;:::-;15586:139;15370:362;15322:410;;;;:::o;15738:168::-;15878:20;15874:1;15866:6;15862:14;15855:44;15738:168;:::o;15912:366::-;16054:3;16075:67;16139:2;16134:3;16075:67;:::i;:::-;16068:74;;16151:93;16240:3;16151:93;:::i;:::-;16269:2;16264:3;16260:12;16253:19;;15912:366;;;:::o;16284:419::-;16450:4;16488:2;16477:9;16473:18;16465:26;;16537:9;16531:4;16527:20;16523:1;16512:9;16508:17;16501:47;16565:131;16691:4;16565:131;:::i;:::-;16557:139;;16284:419;;;:::o
Swarm Source
ipfs://dcf0ab60c474cd3ad4ad7653d5636dc9e24ee29c405132b2442ef58a15529bc5
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.