Feature Tip: Add private address tag to any address under My Name Tag !
Overview
Max Total Supply
1,000,000,000 OOE
Holders
2,749 (0.00%)
Market
Price
$0.01 @ 0.000003 ETH (+11.36%)
Onchain Market Cap
$7,479,030.00
Circulating Supply Market Cap
$3,746,171.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
178.399704452604583005 OOEValue
$1.33 ( ~0.000487334523592355 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OpenOcean
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-05-18 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); } pragma solidity ^0.8.0; /** * @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); } pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 this function is * overridden; * * 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 virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); 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] + 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); 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); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += 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 += amount; _balances[account] += 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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This 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 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 { } } pragma solidity ^0.8.0; /** * @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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { 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; } } pragma solidity ^0.8.0; contract OpenOcean is ERC20, Ownable { constructor()ERC20("OpenOcean", "OOE"){ // 1,000,000,000 uint totalSupply = 1000000000 * (10 ** decimals()); _mint(address(0x7eB534Edd88eDB01EC2e16413bd295cF0d0E8AF3), totalSupply); } function decimals() public pure override returns(uint8){ return 18; } function mint(address to, uint amount) public onlyOwner(){ _mint(to, amount); } function burn(uint amount) public { _burn(_msgSender(), amount); } }
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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":[],"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
60806040523480156200001157600080fd5b506040518060400160405280600981526020017f4f70656e4f6365616e00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4f4f4500000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200033e565b508060049080519060200190620000af9291906200033e565b5050506000620000c4620001c360201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600062000175620001cb60201b60201c565b600a6200018391906200052e565b633b9aca006200019491906200066b565b9050620001bc737eb534edd88edb01ec2e16413bd295cf0d0e8af382620001d460201b60201c565b50620007ad565b600033905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000247576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023e9062000426565b60405180910390fd5b6200025b600083836200033960201b60201c565b80600260008282546200026f919062000476565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002c6919062000476565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200032d919062000448565b60405180910390a35050565b505050565b8280546200034c90620006e3565b90600052602060002090601f016020900481019282620003705760008555620003bc565b82601f106200038b57805160ff1916838001178555620003bc565b82800160010185558215620003bc579182015b82811115620003bb5782518255916020019190600101906200039e565b5b509050620003cb9190620003cf565b5090565b5b80821115620003ea576000816000905550600101620003d0565b5090565b6000620003fd601f8362000465565b91506200040a8262000784565b602082019050919050565b6200042081620006cc565b82525050565b600060208201905081810360008301526200044181620003ee565b9050919050565b60006020820190506200045f600083018462000415565b92915050565b600082825260208201905092915050565b60006200048382620006cc565b91506200049083620006cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004c857620004c762000719565b5b828201905092915050565b6000808291508390505b60018511156200052557808604811115620004fd57620004fc62000719565b5b60018516156200050d5780820291505b80810290506200051d8562000777565b9450620004dd565b94509492505050565b60006200053b82620006cc565b91506200054883620006d6565b9250620005777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200057f565b905092915050565b60008262000591576001905062000664565b81620005a1576000905062000664565b8160018114620005ba5760028114620005c557620005fb565b600191505062000664565b60ff841115620005da57620005d962000719565b5b8360020a915084821115620005f457620005f362000719565b5b5062000664565b5060208310610133831016604e8410600b8410161715620006355782820a9050838111156200062f576200062e62000719565b5b62000664565b620006448484846001620004d3565b925090508184048111156200065e576200065d62000719565b5b81810290505b9392505050565b60006200067882620006cc565b91506200068583620006cc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006c157620006c062000719565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620006fc57607f821691505b6020821081141562000713576200071262000748565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611e6180620007bd6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d71461029d578063a9059cbb146102cd578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b806370a0823114610227578063715018a6146102575780638da5cb5b1461026157806395d89b411461027f57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806342966c681461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a91906116ee565b60405180910390f35b61013d6004803603810190610138919061143a565b6103db565b60405161014a91906116d3565b60405180910390f35b61015b6103f9565b6040516101689190611890565b60405180910390f35b61018b600480360381019061018691906113eb565b610403565b60405161019891906116d3565b60405180910390f35b6101a9610504565b6040516101b691906118ab565b60405180910390f35b6101d960048036038101906101d4919061143a565b61050d565b6040516101e691906116d3565b60405180910390f35b6102096004803603810190610204919061143a565b6105b9565b005b61022560048036038101906102209190611476565b610643565b005b610241600480360381019061023c9190611386565b610657565b60405161024e9190611890565b60405180910390f35b61025f61069f565b005b6102696107dc565b60405161027691906116b8565b60405180910390f35b610287610806565b60405161029491906116ee565b60405180910390f35b6102b760048036038101906102b2919061143a565b610898565b6040516102c491906116d3565b60405180910390f35b6102e760048036038101906102e2919061143a565b61098c565b6040516102f491906116d3565b60405180910390f35b610317600480360381019061031291906113af565b6109aa565b6040516103249190611890565b60405180910390f35b61034760048036038101906103429190611386565b610a31565b005b606060038054610358906119f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610384906119f4565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b60006103ef6103e8610bdd565b8484610be5565b6001905092915050565b6000600254905090565b6000610410848484610db0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d2906117b0565b60405180910390fd5b6104f8856104e7610bdd565b85846104f39190611938565b610be5565b60019150509392505050565b60006012905090565b60006105af61051a610bdd565b848460016000610528610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105aa91906118e2565b610be5565b6001905092915050565b6105c1610bdd565b73ffffffffffffffffffffffffffffffffffffffff166105df6107dc565b73ffffffffffffffffffffffffffffffffffffffff1614610635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062c906117d0565b60405180910390fd5b61063f828261102f565b5050565b61065461064e610bdd565b82611183565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106a7610bdd565b73ffffffffffffffffffffffffffffffffffffffff166106c56107dc565b73ffffffffffffffffffffffffffffffffffffffff161461071b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610712906117d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610815906119f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610841906119f4565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b600080600160006108a7610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90611850565b60405180910390fd5b61098161096f610bdd565b85858461097c9190611938565b610be5565b600191505092915050565b60006109a0610999610bdd565b8484610db0565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a39610bdd565b73ffffffffffffffffffffffffffffffffffffffff16610a576107dc565b73ffffffffffffffffffffffffffffffffffffffff1614610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa4906117d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1490611750565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90611830565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90611770565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610da39190611890565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790611810565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790611710565b60405180910390fd5b610e9b838383611357565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890611790565b60405180910390fd5b8181610f2d9190611938565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fbd91906118e2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110219190611890565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561109f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109690611870565b60405180910390fd5b6110ab60008383611357565b80600260008282546110bd91906118e2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461111291906118e2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111779190611890565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea906117f0565b60405180910390fd5b6111ff82600083611357565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90611730565b60405180910390fd5b81816112919190611938565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112e59190611938565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161134a9190611890565b60405180910390a3505050565b505050565b60008135905061136b81611dfd565b92915050565b60008135905061138081611e14565b92915050565b60006020828403121561139857600080fd5b60006113a68482850161135c565b91505092915050565b600080604083850312156113c257600080fd5b60006113d08582860161135c565b92505060206113e18582860161135c565b9150509250929050565b60008060006060848603121561140057600080fd5b600061140e8682870161135c565b935050602061141f8682870161135c565b925050604061143086828701611371565b9150509250925092565b6000806040838503121561144d57600080fd5b600061145b8582860161135c565b925050602061146c85828601611371565b9150509250929050565b60006020828403121561148857600080fd5b600061149684828501611371565b91505092915050565b6114a88161196c565b82525050565b6114b78161197e565b82525050565b60006114c8826118c6565b6114d281856118d1565b93506114e28185602086016119c1565b6114eb81611a84565b840191505092915050565b60006115036023836118d1565b915061150e82611a95565b604082019050919050565b60006115266022836118d1565b915061153182611ae4565b604082019050919050565b60006115496026836118d1565b915061155482611b33565b604082019050919050565b600061156c6022836118d1565b915061157782611b82565b604082019050919050565b600061158f6026836118d1565b915061159a82611bd1565b604082019050919050565b60006115b26028836118d1565b91506115bd82611c20565b604082019050919050565b60006115d56020836118d1565b91506115e082611c6f565b602082019050919050565b60006115f86021836118d1565b915061160382611c98565b604082019050919050565b600061161b6025836118d1565b915061162682611ce7565b604082019050919050565b600061163e6024836118d1565b915061164982611d36565b604082019050919050565b60006116616025836118d1565b915061166c82611d85565b604082019050919050565b6000611684601f836118d1565b915061168f82611dd4565b602082019050919050565b6116a3816119aa565b82525050565b6116b2816119b4565b82525050565b60006020820190506116cd600083018461149f565b92915050565b60006020820190506116e860008301846114ae565b92915050565b6000602082019050818103600083015261170881846114bd565b905092915050565b60006020820190508181036000830152611729816114f6565b9050919050565b6000602082019050818103600083015261174981611519565b9050919050565b600060208201905081810360008301526117698161153c565b9050919050565b600060208201905081810360008301526117898161155f565b9050919050565b600060208201905081810360008301526117a981611582565b9050919050565b600060208201905081810360008301526117c9816115a5565b9050919050565b600060208201905081810360008301526117e9816115c8565b9050919050565b60006020820190508181036000830152611809816115eb565b9050919050565b600060208201905081810360008301526118298161160e565b9050919050565b6000602082019050818103600083015261184981611631565b9050919050565b6000602082019050818103600083015261186981611654565b9050919050565b6000602082019050818103600083015261188981611677565b9050919050565b60006020820190506118a5600083018461169a565b92915050565b60006020820190506118c060008301846116a9565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118ed826119aa565b91506118f8836119aa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561192d5761192c611a26565b5b828201905092915050565b6000611943826119aa565b915061194e836119aa565b92508282101561196157611960611a26565b5b828203905092915050565b60006119778261198a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119df5780820151818401526020810190506119c4565b838111156119ee576000848401525b50505050565b60006002820490506001821680611a0c57607f821691505b60208210811415611a2057611a1f611a55565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611e068161196c565b8114611e1157600080fd5b50565b611e1d816119aa565b8114611e2857600080fd5b5056fea2646970667358221220ebc52b549d2569929991a4a3e9846c3d024f59f061c5d5bbc335c74b3fd71c8864736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d71461029d578063a9059cbb146102cd578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b806370a0823114610227578063715018a6146102575780638da5cb5b1461026157806395d89b411461027f57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806342966c681461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a91906116ee565b60405180910390f35b61013d6004803603810190610138919061143a565b6103db565b60405161014a91906116d3565b60405180910390f35b61015b6103f9565b6040516101689190611890565b60405180910390f35b61018b600480360381019061018691906113eb565b610403565b60405161019891906116d3565b60405180910390f35b6101a9610504565b6040516101b691906118ab565b60405180910390f35b6101d960048036038101906101d4919061143a565b61050d565b6040516101e691906116d3565b60405180910390f35b6102096004803603810190610204919061143a565b6105b9565b005b61022560048036038101906102209190611476565b610643565b005b610241600480360381019061023c9190611386565b610657565b60405161024e9190611890565b60405180910390f35b61025f61069f565b005b6102696107dc565b60405161027691906116b8565b60405180910390f35b610287610806565b60405161029491906116ee565b60405180910390f35b6102b760048036038101906102b2919061143a565b610898565b6040516102c491906116d3565b60405180910390f35b6102e760048036038101906102e2919061143a565b61098c565b6040516102f491906116d3565b60405180910390f35b610317600480360381019061031291906113af565b6109aa565b6040516103249190611890565b60405180910390f35b61034760048036038101906103429190611386565b610a31565b005b606060038054610358906119f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610384906119f4565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b60006103ef6103e8610bdd565b8484610be5565b6001905092915050565b6000600254905090565b6000610410848484610db0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d2906117b0565b60405180910390fd5b6104f8856104e7610bdd565b85846104f39190611938565b610be5565b60019150509392505050565b60006012905090565b60006105af61051a610bdd565b848460016000610528610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105aa91906118e2565b610be5565b6001905092915050565b6105c1610bdd565b73ffffffffffffffffffffffffffffffffffffffff166105df6107dc565b73ffffffffffffffffffffffffffffffffffffffff1614610635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062c906117d0565b60405180910390fd5b61063f828261102f565b5050565b61065461064e610bdd565b82611183565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106a7610bdd565b73ffffffffffffffffffffffffffffffffffffffff166106c56107dc565b73ffffffffffffffffffffffffffffffffffffffff161461071b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610712906117d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610815906119f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610841906119f4565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b600080600160006108a7610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90611850565b60405180910390fd5b61098161096f610bdd565b85858461097c9190611938565b610be5565b600191505092915050565b60006109a0610999610bdd565b8484610db0565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a39610bdd565b73ffffffffffffffffffffffffffffffffffffffff16610a576107dc565b73ffffffffffffffffffffffffffffffffffffffff1614610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa4906117d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1490611750565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90611830565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90611770565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610da39190611890565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790611810565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790611710565b60405180910390fd5b610e9b838383611357565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890611790565b60405180910390fd5b8181610f2d9190611938565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fbd91906118e2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110219190611890565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561109f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109690611870565b60405180910390fd5b6110ab60008383611357565b80600260008282546110bd91906118e2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461111291906118e2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111779190611890565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea906117f0565b60405180910390fd5b6111ff82600083611357565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90611730565b60405180910390fd5b81816112919190611938565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112e59190611938565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161134a9190611890565b60405180910390a3505050565b505050565b60008135905061136b81611dfd565b92915050565b60008135905061138081611e14565b92915050565b60006020828403121561139857600080fd5b60006113a68482850161135c565b91505092915050565b600080604083850312156113c257600080fd5b60006113d08582860161135c565b92505060206113e18582860161135c565b9150509250929050565b60008060006060848603121561140057600080fd5b600061140e8682870161135c565b935050602061141f8682870161135c565b925050604061143086828701611371565b9150509250925092565b6000806040838503121561144d57600080fd5b600061145b8582860161135c565b925050602061146c85828601611371565b9150509250929050565b60006020828403121561148857600080fd5b600061149684828501611371565b91505092915050565b6114a88161196c565b82525050565b6114b78161197e565b82525050565b60006114c8826118c6565b6114d281856118d1565b93506114e28185602086016119c1565b6114eb81611a84565b840191505092915050565b60006115036023836118d1565b915061150e82611a95565b604082019050919050565b60006115266022836118d1565b915061153182611ae4565b604082019050919050565b60006115496026836118d1565b915061155482611b33565b604082019050919050565b600061156c6022836118d1565b915061157782611b82565b604082019050919050565b600061158f6026836118d1565b915061159a82611bd1565b604082019050919050565b60006115b26028836118d1565b91506115bd82611c20565b604082019050919050565b60006115d56020836118d1565b91506115e082611c6f565b602082019050919050565b60006115f86021836118d1565b915061160382611c98565b604082019050919050565b600061161b6025836118d1565b915061162682611ce7565b604082019050919050565b600061163e6024836118d1565b915061164982611d36565b604082019050919050565b60006116616025836118d1565b915061166c82611d85565b604082019050919050565b6000611684601f836118d1565b915061168f82611dd4565b602082019050919050565b6116a3816119aa565b82525050565b6116b2816119b4565b82525050565b60006020820190506116cd600083018461149f565b92915050565b60006020820190506116e860008301846114ae565b92915050565b6000602082019050818103600083015261170881846114bd565b905092915050565b60006020820190508181036000830152611729816114f6565b9050919050565b6000602082019050818103600083015261174981611519565b9050919050565b600060208201905081810360008301526117698161153c565b9050919050565b600060208201905081810360008301526117898161155f565b9050919050565b600060208201905081810360008301526117a981611582565b9050919050565b600060208201905081810360008301526117c9816115a5565b9050919050565b600060208201905081810360008301526117e9816115c8565b9050919050565b60006020820190508181036000830152611809816115eb565b9050919050565b600060208201905081810360008301526118298161160e565b9050919050565b6000602082019050818103600083015261184981611631565b9050919050565b6000602082019050818103600083015261186981611654565b9050919050565b6000602082019050818103600083015261188981611677565b9050919050565b60006020820190506118a5600083018461169a565b92915050565b60006020820190506118c060008301846116a9565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118ed826119aa565b91506118f8836119aa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561192d5761192c611a26565b5b828201905092915050565b6000611943826119aa565b915061194e836119aa565b92508282101561196157611960611a26565b5b828203905092915050565b60006119778261198a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119df5780820151818401526020810190506119c4565b838111156119ee576000848401525b50505050565b60006002820490506001821680611a0c57607f821691505b60208210811415611a2057611a1f611a55565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611e068161196c565b8114611e1157600080fd5b50565b611e1d816119aa565b8114611e2857600080fd5b5056fea2646970667358221220ebc52b549d2569929991a4a3e9846c3d024f59f061c5d5bbc335c74b3fd71c8864736f6c63430008040033
Deployed Bytecode Sourcemap
17311:556:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6267:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8434:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7387:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9085:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17584:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9916:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17679:93;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17784:80;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7558:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16726:148;;;:::i;:::-;;16075:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6486:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10634:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7898:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8136:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17029:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6267:100;6321:13;6354:5;6347:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6267:100;:::o;8434:169::-;8517:4;8534:39;8543:12;:10;:12::i;:::-;8557:7;8566:6;8534:8;:39::i;:::-;8591:4;8584:11;;8434:169;;;;:::o;7387:108::-;7448:7;7475:12;;7468:19;;7387:108;:::o;9085:422::-;9191:4;9208:36;9218:6;9226:9;9237:6;9208:9;:36::i;:::-;9257:24;9284:11;:19;9296:6;9284:19;;;;;;;;;;;;;;;:33;9304:12;:10;:12::i;:::-;9284:33;;;;;;;;;;;;;;;;9257:60;;9356:6;9336:16;:26;;9328:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9418:57;9427:6;9435:12;:10;:12::i;:::-;9468:6;9449:16;:25;;;;:::i;:::-;9418:8;:57::i;:::-;9495:4;9488:11;;;9085:422;;;;;:::o;17584:83::-;17633:5;17657:2;17650:9;;17584:83;:::o;9916:215::-;10004:4;10021:80;10030:12;:10;:12::i;:::-;10044:7;10090:10;10053:11;:25;10065:12;:10;:12::i;:::-;10053:25;;;;;;;;;;;;;;;:34;10079:7;10053:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10021:8;:80::i;:::-;10119:4;10112:11;;9916:215;;;;:::o;17679:93::-;16306:12;:10;:12::i;:::-;16295:23;;:7;:5;:7::i;:::-;:23;;;16287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17747:17:::1;17753:2;17757:6;17747:5;:17::i;:::-;17679:93:::0;;:::o;17784:80::-;17829:27;17835:12;:10;:12::i;:::-;17849:6;17829:5;:27::i;:::-;17784:80;:::o;7558:127::-;7632:7;7659:9;:18;7669:7;7659:18;;;;;;;;;;;;;;;;7652:25;;7558:127;;;:::o;16726:148::-;16306:12;:10;:12::i;:::-;16295:23;;:7;:5;:7::i;:::-;:23;;;16287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16833:1:::1;16796:40;;16817:6;;;;;;;;;;;16796:40;;;;;;;;;;;;16864:1;16847:6;;:19;;;;;;;;;;;;;;;;;;16726:148::o:0;16075:87::-;16121:7;16148:6;;;;;;;;;;;16141:13;;16075:87;:::o;6486:104::-;6542:13;6575:7;6568:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6486:104;:::o;10634:377::-;10727:4;10744:24;10771:11;:25;10783:12;:10;:12::i;:::-;10771:25;;;;;;;;;;;;;;;:34;10797:7;10771:34;;;;;;;;;;;;;;;;10744:61;;10844:15;10824:16;:35;;10816:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10912:67;10921:12;:10;:12::i;:::-;10935:7;10963:15;10944:16;:34;;;;:::i;:::-;10912:8;:67::i;:::-;10999:4;10992:11;;;10634:377;;;;:::o;7898:175::-;7984:4;8001:42;8011:12;:10;:12::i;:::-;8025:9;8036:6;8001:9;:42::i;:::-;8061:4;8054:11;;7898:175;;;;:::o;8136:151::-;8225:7;8252:11;:18;8264:5;8252:18;;;;;;;;;;;;;;;:27;8271:7;8252:27;;;;;;;;;;;;;;;;8245:34;;8136:151;;;;:::o;17029:244::-;16306:12;:10;:12::i;:::-;16295:23;;:7;:5;:7::i;:::-;:23;;;16287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17138:1:::1;17118:22;;:8;:22;;;;17110:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17228:8;17199:38;;17220:6;;;;;;;;;;;17199:38;;;;;;;;;;;;17257:8;17248:6;;:17;;;;;;;;;;;;;;;;;;17029:244:::0;:::o;3916:98::-;3969:7;3996:10;3989:17;;3916:98;:::o;13990:346::-;14109:1;14092:19;;:5;:19;;;;14084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14190:1;14171:21;;:7;:21;;;;14163:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14274:6;14244:11;:18;14256:5;14244:18;;;;;;;;;;;;;;;:27;14263:7;14244:27;;;;;;;;;;;;;;;:36;;;;14312:7;14296:32;;14305:5;14296:32;;;14321:6;14296:32;;;;;;:::i;:::-;;;;;;;;13990:346;;;:::o;11501:604::-;11625:1;11607:20;;:6;:20;;;;11599:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11709:1;11688:23;;:9;:23;;;;11680:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11764:47;11785:6;11793:9;11804:6;11764:20;:47::i;:::-;11824:21;11848:9;:17;11858:6;11848:17;;;;;;;;;;;;;;;;11824:41;;11901:6;11884:13;:23;;11876:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11997:6;11981:13;:22;;;;:::i;:::-;11961:9;:17;11971:6;11961:17;;;;;;;;;;;;;;;:42;;;;12038:6;12014:9;:20;12024:9;12014:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12079:9;12062:35;;12071:6;12062:35;;;12090:6;12062:35;;;;;;:::i;:::-;;;;;;;;11501:604;;;;:::o;12387:338::-;12490:1;12471:21;;:7;:21;;;;12463:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12541:49;12570:1;12574:7;12583:6;12541:20;:49::i;:::-;12619:6;12603:12;;:22;;;;;;;:::i;:::-;;;;;;;;12658:6;12636:9;:18;12646:7;12636:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;12701:7;12680:37;;12697:1;12680:37;;;12710:6;12680:37;;;;;;:::i;:::-;;;;;;;;12387:338;;:::o;13058:494::-;13161:1;13142:21;;:7;:21;;;;13134:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13214:49;13235:7;13252:1;13256:6;13214:20;:49::i;:::-;13276:22;13301:9;:18;13311:7;13301:18;;;;;;;;;;;;;;;;13276:43;;13356:6;13338:14;:24;;13330:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13450:6;13433:14;:23;;;;:::i;:::-;13412:9;:18;13422:7;13412:18;;;;;;;;;;;;;;;:44;;;;13483:6;13467:12;;:22;;;;;;;:::i;:::-;;;;;;;;13533:1;13507:37;;13516:7;13507:37;;;13537:6;13507:37;;;;;;:::i;:::-;;;;;;;;13058:494;;;:::o;14939:92::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;2008:6;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:366::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6320:220;;;:::o;6546:366::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6692:220;;;:::o;6918:366::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;7064:220;;;:::o;7290:118::-;7377:24;7395:5;7377:24;:::i;:::-;7372:3;7365:37;7355:53;;:::o;7414:112::-;7497:22;7513:5;7497:22;:::i;:::-;7492:3;7485:35;7475:51;;:::o;7532:222::-;7625:4;7663:2;7652:9;7648:18;7640:26;;7676:71;7744:1;7733:9;7729:17;7720:6;7676:71;:::i;:::-;7630:124;;;;:::o;7760:210::-;7847:4;7885:2;7874:9;7870:18;7862:26;;7898:65;7960:1;7949:9;7945:17;7936:6;7898:65;:::i;:::-;7852:118;;;;:::o;7976:313::-;8089:4;8127:2;8116:9;8112:18;8104:26;;8176:9;8170:4;8166:20;8162:1;8151:9;8147:17;8140:47;8204:78;8277:4;8268:6;8204:78;:::i;:::-;8196:86;;8094:195;;;;:::o;8295:419::-;8461:4;8499:2;8488:9;8484:18;8476:26;;8548:9;8542:4;8538:20;8534:1;8523:9;8519:17;8512:47;8576:131;8702:4;8576:131;:::i;:::-;8568:139;;8466:248;;;:::o;8720:419::-;8886:4;8924:2;8913:9;8909:18;8901:26;;8973:9;8967:4;8963:20;8959:1;8948:9;8944:17;8937:47;9001:131;9127:4;9001:131;:::i;:::-;8993:139;;8891:248;;;:::o;9145:419::-;9311:4;9349:2;9338:9;9334:18;9326:26;;9398:9;9392:4;9388:20;9384:1;9373:9;9369:17;9362:47;9426:131;9552:4;9426:131;:::i;:::-;9418:139;;9316:248;;;:::o;9570:419::-;9736:4;9774:2;9763:9;9759:18;9751:26;;9823:9;9817:4;9813:20;9809:1;9798:9;9794:17;9787:47;9851:131;9977:4;9851:131;:::i;:::-;9843:139;;9741:248;;;:::o;9995:419::-;10161:4;10199:2;10188:9;10184:18;10176:26;;10248:9;10242:4;10238:20;10234:1;10223:9;10219:17;10212:47;10276:131;10402:4;10276:131;:::i;:::-;10268:139;;10166:248;;;:::o;10420:419::-;10586:4;10624:2;10613:9;10609:18;10601:26;;10673:9;10667:4;10663:20;10659:1;10648:9;10644:17;10637:47;10701:131;10827:4;10701:131;:::i;:::-;10693:139;;10591:248;;;:::o;10845:419::-;11011:4;11049:2;11038:9;11034:18;11026:26;;11098:9;11092:4;11088:20;11084:1;11073:9;11069:17;11062:47;11126:131;11252:4;11126:131;:::i;:::-;11118:139;;11016:248;;;:::o;11270:419::-;11436:4;11474:2;11463:9;11459:18;11451:26;;11523:9;11517:4;11513:20;11509:1;11498:9;11494:17;11487:47;11551:131;11677:4;11551:131;:::i;:::-;11543:139;;11441:248;;;:::o;11695:419::-;11861:4;11899:2;11888:9;11884:18;11876:26;;11948:9;11942:4;11938:20;11934:1;11923:9;11919:17;11912:47;11976:131;12102:4;11976:131;:::i;:::-;11968:139;;11866:248;;;:::o;12120:419::-;12286:4;12324:2;12313:9;12309:18;12301:26;;12373:9;12367:4;12363:20;12359:1;12348:9;12344:17;12337:47;12401:131;12527:4;12401:131;:::i;:::-;12393:139;;12291:248;;;:::o;12545:419::-;12711:4;12749:2;12738:9;12734:18;12726:26;;12798:9;12792:4;12788:20;12784:1;12773:9;12769:17;12762:47;12826:131;12952:4;12826:131;:::i;:::-;12818:139;;12716:248;;;:::o;12970:419::-;13136:4;13174:2;13163:9;13159:18;13151:26;;13223:9;13217:4;13213:20;13209:1;13198:9;13194:17;13187:47;13251:131;13377:4;13251:131;:::i;:::-;13243:139;;13141:248;;;:::o;13395:222::-;13488:4;13526:2;13515:9;13511:18;13503:26;;13539:71;13607:1;13596:9;13592:17;13583:6;13539:71;:::i;:::-;13493:124;;;;:::o;13623:214::-;13712:4;13750:2;13739:9;13735:18;13727:26;;13763:67;13827:1;13816:9;13812:17;13803:6;13763:67;:::i;:::-;13717:120;;;;:::o;13843:99::-;13895:6;13929:5;13923:12;13913:22;;13902:40;;;:::o;13948:169::-;14032:11;14066:6;14061:3;14054:19;14106:4;14101:3;14097:14;14082:29;;14044:73;;;;:::o;14123:305::-;14163:3;14182:20;14200:1;14182:20;:::i;:::-;14177:25;;14216:20;14234:1;14216:20;:::i;:::-;14211:25;;14370:1;14302:66;14298:74;14295:1;14292:81;14289:2;;;14376:18;;:::i;:::-;14289:2;14420:1;14417;14413:9;14406:16;;14167:261;;;;:::o;14434:191::-;14474:4;14494:20;14512:1;14494:20;:::i;:::-;14489:25;;14528:20;14546:1;14528:20;:::i;:::-;14523:25;;14567:1;14564;14561:8;14558:2;;;14572:18;;:::i;:::-;14558:2;14617:1;14614;14610:9;14602:17;;14479:146;;;;:::o;14631:96::-;14668:7;14697:24;14715:5;14697:24;:::i;:::-;14686:35;;14676:51;;;:::o;14733:90::-;14767:7;14810:5;14803:13;14796:21;14785:32;;14775:48;;;:::o;14829:126::-;14866:7;14906:42;14899:5;14895:54;14884:65;;14874:81;;;:::o;14961:77::-;14998:7;15027:5;15016:16;;15006:32;;;:::o;15044:86::-;15079:7;15119:4;15112:5;15108:16;15097:27;;15087:43;;;:::o;15136:307::-;15204:1;15214:113;15228:6;15225:1;15222:13;15214:113;;;15313:1;15308:3;15304:11;15298:18;15294:1;15289:3;15285:11;15278:39;15250:2;15247:1;15243:10;15238:15;;15214:113;;;15345:6;15342:1;15339:13;15336:2;;;15425:1;15416:6;15411:3;15407:16;15400:27;15336:2;15185:258;;;;:::o;15449:320::-;15493:6;15530:1;15524:4;15520:12;15510:22;;15577:1;15571:4;15567:12;15598:18;15588:2;;15654:4;15646:6;15642:17;15632:27;;15588:2;15716;15708:6;15705:14;15685:18;15682:38;15679:2;;;15735:18;;:::i;:::-;15679:2;15500:269;;;;:::o;15775:180::-;15823:77;15820:1;15813:88;15920:4;15917:1;15910:15;15944:4;15941:1;15934:15;15961:180;16009:77;16006:1;15999:88;16106:4;16103:1;16096:15;16130:4;16127:1;16120:15;16147:102;16188:6;16239:2;16235:7;16230:2;16223:5;16219:14;16215:28;16205:38;;16195:54;;;:::o;16255:222::-;16395:34;16391:1;16383:6;16379:14;16372:58;16464:5;16459:2;16451:6;16447:15;16440:30;16361:116;:::o;16483:221::-;16623:34;16619:1;16611:6;16607:14;16600:58;16692:4;16687:2;16679:6;16675:15;16668:29;16589:115;:::o;16710:225::-;16850:34;16846:1;16838:6;16834:14;16827:58;16919:8;16914:2;16906:6;16902:15;16895:33;16816:119;:::o;16941:221::-;17081:34;17077:1;17069:6;17065:14;17058:58;17150:4;17145:2;17137:6;17133:15;17126:29;17047:115;:::o;17168:225::-;17308:34;17304:1;17296:6;17292:14;17285:58;17377:8;17372:2;17364:6;17360:15;17353:33;17274:119;:::o;17399:227::-;17539:34;17535:1;17527:6;17523:14;17516:58;17608:10;17603:2;17595:6;17591:15;17584:35;17505:121;:::o;17632:182::-;17772:34;17768:1;17760:6;17756:14;17749:58;17738:76;:::o;17820:220::-;17960:34;17956:1;17948:6;17944:14;17937:58;18029:3;18024:2;18016:6;18012:15;18005:28;17926:114;:::o;18046:224::-;18186:34;18182:1;18174:6;18170:14;18163:58;18255:7;18250:2;18242:6;18238:15;18231:32;18152:118;:::o;18276:223::-;18416:34;18412:1;18404:6;18400:14;18393:58;18485:6;18480:2;18472:6;18468:15;18461:31;18382:117;:::o;18505:224::-;18645:34;18641:1;18633:6;18629:14;18622:58;18714:7;18709:2;18701:6;18697:15;18690:32;18611:118;:::o;18735:181::-;18875:33;18871:1;18863:6;18859:14;18852:57;18841:75;:::o;18922:122::-;18995:24;19013:5;18995:24;:::i;:::-;18988:5;18985:35;18975:2;;19034:1;19031;19024:12;18975:2;18965:79;:::o;19050:122::-;19123:24;19141:5;19123:24;:::i;:::-;19116:5;19113:35;19103:2;;19162:1;19159;19152:12;19103:2;19093:79;:::o
Swarm Source
ipfs://ebc52b549d2569929991a4a3e9846c3d024f59f061c5d5bbc335c74b3fd71c88
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.