Polygon Sponsored slots available. Book your slot here!
ERC-20
DeFi
Overview
Max Total Supply
1,819,520,027.03785244 JM
Holders
155 (0.00%)
Total Transfers
-
Market
Price
$0.00 @ 0.000000 POL
Onchain Market Cap
$0.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 8 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xE73672a8...a6115aD1c The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
JustMoney
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: UNLICENSED // @Title JustMoney Bridged Token // @Author Team JustMoney pragma solidity ^0.8.0; import "./IERC20.sol"; import "./BridgeOracle.sol"; /** * @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 Contracts guidelines: functions revert * instead 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 JustMoney is BridgeOracle, IERC20 { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private constant _max = 10**11 * 10**8; uint256 private _totalSupply; uint256 private _totalBurned; bool public isMintingEnabled = true; bool public isBurningEnabled = true; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}. * * The default 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 tokenName, string memory tokenSymbol, uint8 tokenDecimals) { _name = tokenName; _symbol = tokenSymbol; _decimals = tokenDecimals; } modifier mintingEnabled() { require(isMintingEnabled, Errors.MINT_DISABLED); _; } modifier burningEnabled() { require(isBurningEnabled, Errors.BURN_DISABLED); _; } modifier notZeroAddress(address _account) { require(_account != address(0), Errors.NOT_ZERO_ADDRESS); _; } modifier belowCap(uint256 amount) { require(amount <= (_max - _totalSupply - _totalBurned), Errors.ABOVE_CAP); _; } /** * @dev Returns the name of the token. */ function name() public view override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 override returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } function totalBurned() public view returns (uint256) { return _totalBurned; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public override returns (bool) { address spender = _msgSender(); require(amount <= _allowances[from][spender], Errors.NOT_APPROVED); _spendAllowance(from, spender, amount); _transfer(from, to, 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 returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][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 returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, Errors.ALLOWANCE_BELOW_ZERO); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } function enableMinting() public onlyHandlerOracle returns (string memory retMsg) { require(!isMintingEnabled, Errors.MINT_ALREADY_ENABLED); isMintingEnabled = true; emit MintingEnabled(); retMsg = "Enabled Minting"; } function disableMinting() public onlyHandlerOracle returns (string memory retMsg) { require(isMintingEnabled, Errors.MINT_ALREADY_DISABLED); isMintingEnabled = false; emit MintingDisabled(); retMsg = "Disabled Minting"; } function enableBurning() public onlyHandlerOracle returns (string memory retMsg) { require(!isBurningEnabled, Errors.BURN_ALREADY_ENABLED); isBurningEnabled = true; emit BurningEnabled(); retMsg = "Enabled Burning"; } function disableBurning() public onlyHandlerOracle returns (string memory retMsg) { require(isBurningEnabled, Errors.BURN_ALREADY_DISABLED); isBurningEnabled = false; emit BurningDisabled(); retMsg = "Disabled Burning"; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal notZeroAddress(from) notZeroAddress(to) { uint256 fromBalance = _balances[from]; require(fromBalance >= amount, Errors.TRANSFER_EXCEEDS_BALANCE); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); } /** * @dev Creates `amount` new tokens for `to`. * * See {ERC20-_mint}. * * Requirements: * * - the caller must be the bridge or owner. */ function mint(address to, uint256 amount) public onlyOracleAndBridge { _mint(to, 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: * * - minting and burning must be enabled. * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal mintingEnabled notZeroAddress(account) belowCap(amount) { _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); address mintBy = _msgSender(); if ( isBridgeHandler(mintBy) ) { emit BridgeMint(mintBy, account, amount); } else { emit ManualMint(mintBy, 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 burningEnabled notZeroAddress(account) { uint256 accountBalance = _balances[account]; require(accountBalance >= amount, Errors.BURN_EXCEEDS_BALANCE); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); address burnBy = _msgSender(); if ( isBridgeHandler(burnBy) || burnBy == address(_handlerOracle) ) { emit BridgeBurn(account, burnBy, amount); } else { unchecked { _totalBurned += amount; } emit NormalBurn(account, burnBy, amount); } } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This private 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) private notZeroAddress(owner) notZeroAddress(spender) { _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, Errors.INSUFFICIENT_ALLOWANCE); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public { require(amount <= _allowances[account][_msgSender()], Errors.NOT_APPROVED); _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } function withdrawBASE(address payable recipient) external onlyOwner notZeroAddress(recipient) { require(address(this).balance > 0, Errors.NOTHING_TO_WITHDRAW); recipient.transfer(address(this).balance); } function withdrawERC20token(address _token, address payable recipient) external onlyOwner notZeroAddress(recipient) returns (bool) { uint256 bal = IERC20(_token).balanceOf(address(this)); require(bal > 0, Errors.NOTHING_TO_WITHDRAW); return IERC20(_token).transfer(recipient, bal); } event BridgeMint(address indexed by, address indexed to, uint256 value); event ManualMint(address indexed by, address indexed to, uint256 value); event BridgeBurn(address indexed from, address indexed by, uint256 value); event NormalBurn(address indexed from, address indexed to, uint256 value); event MintingEnabled(); event MintingDisabled(); event BurningEnabled(); event BurningDisabled(); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface HandlerOracle { function approveHandlerChange() external returns (bool); function approveManualMint() external returns (bool); function isTokenContract(address tokenContract) external view returns (bool); function isAllowedToChangeOracle(address tokenContract) external view returns (bool); } import "./Ownable.sol"; abstract contract BridgeOracle is Ownable { HandlerOracle internal _handlerOracle; address private _bridgeHandler; event BridgeHandlerSet(address indexed added); /** * @dev Returns true if the address is a bridge handler. */ function isBridgeHandler(address account) public view returns (bool) { return _bridgeHandler == account; } /** * @dev Throws if called by any account other than the oracle or a bridge handler. */ modifier onlyOracleAndBridge() { require(_msgSender() != address(0), Errors.NOT_ZERO_ADDRESS_SENDER); require(isBridgeHandler(_msgSender()) || address(_handlerOracle) == _msgSender(), Errors.NOT_ORACLE_OR_HANDLER); _; } modifier onlyHandlerOracle() { require(_msgSender() != address(0), Errors.ORACLE_NOT_SET); require(_msgSender() == address(_handlerOracle), Errors.IS_NOT_ORACLE); _; } function approveOracleToSetHandler() public onlyOwner returns (bool) { require(address(_handlerOracle) != address(0), Errors.SET_HANDLER_ORACLE_FIRST); require(_handlerOracle.isTokenContract(address(this)) == true, Errors.TOKEN_NOT_ALLOWED_IN_BRIDGE); return _handlerOracle.approveHandlerChange(); } function approveOracleToManualMint() public onlyOwner returns (bool) { require(address(_handlerOracle) != address(0), Errors.SET_HANDLER_ORACLE_FIRST); require(_handlerOracle.isTokenContract(address(this)) == true, Errors.TOKEN_NOT_ALLOWED_IN_BRIDGE); return _handlerOracle.approveManualMint(); } /** * @dev Add handler address (`account`) that can mint and burn. * Can only be called by the 'Handler Oracle Contract' after it was approved. */ function setBridgeHandler(address account) public onlyHandlerOracle { require(account != address(0), Errors.OWNABLE_NOT_ZERO_ADDRESS); require(!isBridgeHandler(account), Errors.ADDRESS_IS_HANDLER); emit BridgeHandlerSet(account); _bridgeHandler = account; } function setHandlerOracle(address newHandlerOracle) public onlyOwner { require(HandlerOracle(newHandlerOracle).isTokenContract(address(this)) == true, Errors.TOKEN_NOT_ALLOWED_IN_BRIDGE); if ( address(_handlerOracle) == address(0) ) { _handlerOracle = HandlerOracle(newHandlerOracle); } else { require(_handlerOracle.isAllowedToChangeOracle(address(this)) == true, Errors.NOT_ALLOWED_TO_EDIT_ORACLE); _handlerOracle = HandlerOracle(newHandlerOracle); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library Errors { string constant MINT_DISABLED = "Token: Minting is disabled"; string constant BURN_DISABLED = "Token: Burning is disabled"; string constant MINT_ALREADY_ENABLED = "Token: Minting is already enabled"; string constant MINT_ALREADY_DISABLED = "Token: Minting is already disabled"; string constant BURN_ALREADY_ENABLED = "Token: Burning is already enabled"; string constant BURN_ALREADY_DISABLED = "Token: Burning is already disabled"; string constant NOT_ZERO_ADDRESS = "Token: Address can not be 0x0"; string constant NOT_APPROVED = "Token: You are not approved to spend this amount of tokens"; string constant TRANSFER_EXCEEDS_BALANCE = "Token: Transfer amount exceeds balance"; string constant BURN_EXCEEDS_BALANCE = "Token: Burn amount exceeds balance"; string constant INSUFFICIENT_ALLOWANCE = "Token: Insufficient allowance"; string constant NOTHING_TO_WITHDRAW = "Token: The balance must be greater than 0"; string constant ALLOWANCE_BELOW_ZERO = "Token: Decreased allowance below zero"; string constant ABOVE_CAP = "Token: Amount is above the cap"; string constant NOT_OWNER = "Ownable: Caller is not the owner"; string constant OWNABLE_NOT_ZERO_ADDRESS = "Ownable: Address can not be 0x0"; string constant NOT_ORACLE_OR_HANDLER = "Oracle: Caller is not the oracle or handler"; string constant TOKEN_NOT_ALLOWED_IN_BRIDGE = "Oracle: Your token is not allowed in JM Bridge"; string constant SET_HANDLER_ORACLE_FIRST = "Oracle: Set the handler oracle address first"; string constant ADDRESS_IS_HANDLER = "Oracle: Address is already a Bridge Handler"; string constant ADDRESS_IS_NOT_HANDLER = "Oracle: Address is not a Bridge Handler"; string constant ORACLE_NOT_SET = "Oracle: No oracle set"; string constant IS_NOT_ORACLE = "Oracle: You are not the oracle"; string constant NOT_ALLOWED_TO_EDIT_ORACLE = "Oracle: Not allowed to edit the Handler Oracle address"; string constant NOT_ZERO_ADDRESS_SENDER = "Oracle: Sender can not be 0x0"; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); /** * @dev 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; import "./Errors.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_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(), Errors.NOT_OWNER); _; } /** * @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), Errors.OWNABLE_NOT_ZERO_ADDRESS); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint8","name":"tokenDecimals","type":"uint8"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"by","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"BridgeBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"added","type":"address"}],"name":"BridgeHandlerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"by","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"BridgeMint","type":"event"},{"anonymous":false,"inputs":[],"name":"BurningDisabled","type":"event"},{"anonymous":false,"inputs":[],"name":"BurningEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"by","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"ManualMint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintingDisabled","type":"event"},{"anonymous":false,"inputs":[],"name":"MintingEnabled","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":"NormalBurn","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":[],"name":"approveOracleToManualMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"approveOracleToSetHandler","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":[],"name":"disableBurning","outputs":[{"internalType":"string","name":"retMsg","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableMinting","outputs":[{"internalType":"string","name":"retMsg","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableBurning","outputs":[{"internalType":"string","name":"retMsg","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableMinting","outputs":[{"internalType":"string","name":"retMsg","type":"string"}],"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":"account","type":"address"}],"name":"isBridgeHandler","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurningEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"account","type":"address"}],"name":"setBridgeHandler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newHandlerOracle","type":"address"}],"name":"setHandlerOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdrawBASE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdrawERC20token","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526001600760006101000a81548160ff0219169083151502179055506001600760016101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040516200470e3803806200470e83398181016040528101906200006d91906200043a565b6200008d62000081620000e360201b60201c565b620000eb60201b60201c565b8260089080519060200190620000a5929190620001af565b508160099080519060200190620000be929190620001af565b5080600a60006101000a81548160ff021916908360ff16021790555050505062000538565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001bd9062000503565b90600052602060002090601f016020900481019282620001e157600085556200022d565b82601f10620001fc57805160ff19168380011785556200022d565b828001600101855582156200022d579182015b828111156200022c5782518255916020019190600101906200020f565b5b5090506200023c919062000240565b5090565b5b808211156200025b57600081600090555060010162000241565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002c8826200027d565b810181811067ffffffffffffffff82111715620002ea57620002e96200028e565b5b80604052505050565b6000620002ff6200025f565b90506200030d8282620002bd565b919050565b600067ffffffffffffffff82111562000330576200032f6200028e565b5b6200033b826200027d565b9050602081019050919050565b60005b83811015620003685780820151818401526020810190506200034b565b8381111562000378576000848401525b50505050565b6000620003956200038f8462000312565b620002f3565b905082815260208101848484011115620003b457620003b362000278565b5b620003c184828562000348565b509392505050565b600082601f830112620003e157620003e062000273565b5b8151620003f38482602086016200037e565b91505092915050565b600060ff82169050919050565b6200041481620003fc565b81146200042057600080fd5b50565b600081519050620004348162000409565b92915050565b60008060006060848603121562000456576200045562000269565b5b600084015167ffffffffffffffff8111156200047757620004766200026e565b5b6200048586828701620003c9565b935050602084015167ffffffffffffffff811115620004a957620004a86200026e565b5b620004b786828701620003c9565b9250506040620004ca8682870162000423565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200051c57607f821691505b602082108103620005325762000531620004d4565b5b50919050565b6141c680620005486000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80637e5cd5c111610104578063a9059cbb116100a2578063e797ec1b11610071578063e797ec1b1461056f578063e7e117861461058d578063edf07bb5146105bd578063f2fde38b146105db576101da565b8063a9059cbb146104d5578063b19f2fc414610505578063d89135cd14610521578063dd62ed3e1461053f576101da565b80638da5cb5b116100de5780638da5cb5b1461044b57806395d89b411461046957806398603cca14610487578063a457c2d7146104a5576101da565b80637e5cd5c1146103df578063859e0d3a146103fd57806388ee3b061461041b576101da565b8063395093511161017c57806370a082311161014b57806370a08231146103595780637581a8e61461038957806375eb259b146103a757806379cc6790146103c3576101da565b806339509351146102d357806340c10f191461030357806342966c681461031f57806355c7ba141461033b576101da565b806318160ddd116101b857806318160ddd1461024957806320c354bd1461026757806323b872dd14610285578063313ce567146102b5576101da565b806306fdde03146101df57806307aa037a146101fd578063095ea7b314610219575b600080fd5b6101e76105f7565b6040516101f491906139c4565b60405180910390f35b61021760048036038101906102129190613a49565b610689565b005b610233600480360381019061022e9190613aac565b6109f9565b6040516102409190613b07565b60405180910390f35b610251610a1c565b60405161025e9190613b31565b60405180910390f35b61026f610a26565b60405161027c9190613b07565b60405180910390f35b61029f600480360381019061029a9190613b4c565b610a39565b6040516102ac9190613b07565b60405180910390f35b6102bd610b43565b6040516102ca9190613bbb565b60405180910390f35b6102ed60048036038101906102e89190613aac565b610b5a565b6040516102fa9190613b07565b60405180910390f35b61031d60048036038101906103189190613aac565b610c04565b005b61033960048036038101906103349190613bd6565b610d8c565b005b610343610da0565b6040516103509190613b07565b60405180910390f35b610373600480360381019061036e9190613a49565b610db3565b6040516103809190613b31565b60405180910390f35b610391610dfc565b60405161039e91906139c4565b60405180910390f35b6103c160048036038101906103bc9190613a49565b61106c565b005b6103dd60048036038101906103d89190613aac565b611381565b005b6103e7611483565b6040516103f491906139c4565b60405180910390f35b6104056116f2565b6040516104129190613b07565b60405180910390f35b61043560048036038101906104309190613a49565b6119ed565b6040516104429190613b07565b60405180910390f35b610453611a47565b6040516104609190613c12565b60405180910390f35b610471611a70565b60405161047e91906139c4565b60405180910390f35b61048f611b02565b60405161049c91906139c4565b60405180910390f35b6104bf60048036038101906104ba9190613aac565b611d71565b6040516104cc9190613b07565b60405180910390f35b6104ef60048036038101906104ea9190613aac565b611e77565b6040516104fc9190613b07565b60405180910390f35b61051f600480360381019061051a9190613c6b565b611e9a565b005b6105296120a3565b6040516105369190613b31565b60405180910390f35b61055960048036038101906105549190613c98565b6120ad565b6040516105669190613b31565b60405180910390f35b610577612134565b60405161058491906139c4565b60405180910390f35b6105a760048036038101906105a29190613cd8565b6123a4565b6040516105b49190613b07565b60405180910390f35b6105c561266a565b6040516105d29190613b07565b60405180910390f35b6105f560048036038101906105f09190613a49565b612965565b005b60606008805461060690613d47565b80601f016020809104026020016040519081016040528092919081815260200182805461063290613d47565b801561067f5780601f106106545761010080835404028352916020019161067f565b820191906000526020600020905b81548152906001019060200180831161066257829003601f168201915b5050505050905090565b610691612acf565b73ffffffffffffffffffffffffffffffffffffffff166106af611a47565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280602081526020017f4f776e61626c653a2043616c6c6572206973206e6f7420746865206f776e65728152509061073d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073491906139c4565b60405180910390fd5b50600115158173ffffffffffffffffffffffffffffffffffffffff1663e4cea52e306040518263ffffffff1660e01b815260040161077b9190613c12565b602060405180830381865afa158015610798573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107bc9190613da4565b1515146040518060600160405280602e8152602001613fbb602e913990610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081091906139c4565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036108b65780600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109f6565b60011515600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638b235199306040518263ffffffff1660e01b81526004016109159190613c12565b602060405180830381865afa158015610932573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109569190613da4565b1515146040518060600160405280603681526020016140ee60369139906109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa91906139c4565b60405180910390fd5b5080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b600080610a04612acf565b9050610a11818585612ad7565b600191505092915050565b6000600554905090565b600760019054906101000a900460ff1681565b600080610a44612acf565b9050600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548311156040518060600160405280603a8152602001613f55603a913990610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1791906139c4565b60405180910390fd5b50610b2c858285612d18565b610b37858585612ddd565b60019150509392505050565b6000600a60009054906101000a900460ff16905090565b600080610b65612acf565b9050610bf9818585600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bf49190613e00565b612ad7565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff16610c24612acf565b73ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f4f7261636c653a2053656e6465722063616e206e6f742062652030783000000081525090610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa91906139c4565b60405180910390fd5b50610cc4610cbf612acf565b6119ed565b80610d235750610cd2612acf565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6040518060600160405280602b8152602001614081602b913990610d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7491906139c4565b60405180910390fd5b50610d8882826130dd565b5050565b610d9d610d97612acf565b82613474565b50565b600760009054906101000a900460ff1681565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600073ffffffffffffffffffffffffffffffffffffffff16610e1e612acf565b73ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601581526020017f4f7261636c653a204e6f206f7261636c6520736574000000000000000000000081525090610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea491906139c4565b60405180910390fd5b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610eef612acf565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280601e81526020017f4f7261636c653a20596f7520617265206e6f7420746865206f7261636c65000081525090610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7491906139c4565b60405180910390fd5b50600760019054906101000a900460ff16156040518060600160405280602181526020016140ac6021913990610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe091906139c4565b60405180910390fd5b506001600760016101000a81548160ff0219169083151502179055507f65521a0db60169023ef4718a72c0d13775b298d16968758a685e034d2ca1c87560405160405180910390a16040518060400160405280600f81526020017f456e61626c6564204275726e696e670000000000000000000000000000000000815250905090565b600073ffffffffffffffffffffffffffffffffffffffff1661108c612acf565b73ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601581526020017f4f7261636c653a204e6f206f7261636c652073657400000000000000000000008152509061111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111291906139c4565b60405180910390fd5b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661115d612acf565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280601e81526020017f4f7261636c653a20596f7520617265206e6f7420746865206f7261636c650000815250906111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e291906139c4565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601f81526020017f4f776e61626c653a20416464726573732063616e206e6f74206265203078300081525090611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b91906139c4565b60405180910390fd5b5061129e816119ed565b156040518060600160405280602b815260200161400e602b9139906112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f091906139c4565b60405180910390fd5b508073ffffffffffffffffffffffffffffffffffffffff167f29cf5705e8ef0d06742df5af365503ef11d8886f3122b65edca07d64cf3d2f0a60405160405180910390a280600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006113ca612acf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548111156040518060600160405280603a8152602001613f55603a913990611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145991906139c4565b60405180910390fd5b506114758261146f612acf565b83612d18565b61147f8282613474565b5050565b6060600073ffffffffffffffffffffffffffffffffffffffff166114a5612acf565b73ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601581526020017f4f7261636c653a204e6f206f7261636c6520736574000000000000000000000081525090611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152b91906139c4565b60405180910390fd5b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611576612acf565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280601e81526020017f4f7261636c653a20596f7520617265206e6f7420746865206f7261636c65000081525090611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb91906139c4565b60405180910390fd5b50600760009054906101000a900460ff1660405180606001604052806022815260200161416f602291399061166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166691906139c4565b60405180910390fd5b506000600760006101000a81548160ff0219169083151502179055507faf79b4370f6af9d950564bbe6b81f7f0834c003c455db9248f4e55e6bf865eb760405160405180910390a16040518060400160405280601081526020017f44697361626c6564204d696e74696e6700000000000000000000000000000000815250905090565b60006116fc612acf565b73ffffffffffffffffffffffffffffffffffffffff1661171a611a47565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280602081526020017f4f776e61626c653a2043616c6c6572206973206e6f7420746865206f776e6572815250906117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f91906139c4565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060600160405280602c8152602001613f8f602c913990611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d91906139c4565b60405180910390fd5b5060011515600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e4cea52e306040518263ffffffff1660e01b81526004016118b69190613c12565b602060405180830381865afa1580156118d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f79190613da4565b1515146040518060600160405280602e8152602001613fbb602e913990611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b91906139c4565b60405180910390fd5b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a97854f56040518163ffffffff1660e01b81526004016020604051808303816000875af11580156119c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e89190613da4565b905090565b60008173ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060098054611a7f90613d47565b80601f0160208091040260200160405190810160405280929190818152602001828054611aab90613d47565b8015611af85780601f10611acd57610100808354040283529160200191611af8565b820191906000526020600020905b815481529060010190602001808311611adb57829003601f168201915b5050505050905090565b6060600073ffffffffffffffffffffffffffffffffffffffff16611b24612acf565b73ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601581526020017f4f7261636c653a204e6f206f7261636c6520736574000000000000000000000081525090611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa91906139c4565b60405180910390fd5b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611bf5612acf565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280601e81526020017f4f7261636c653a20596f7520617265206e6f7420746865206f7261636c65000081525090611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a91906139c4565b60405180910390fd5b50600760019054906101000a900460ff1660405180606001604052806022815260200161405f6022913990611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce591906139c4565b60405180910390fd5b506000600760016101000a81548160ff0219169083151502179055507f9bdcd7b2de47aadf92905c62d9ed9e7d1f02a42a8187d0549f686c76148c7c3560405160405180910390a16040518060400160405280601081526020017f44697361626c6564204275726e696e6700000000000000000000000000000000815250905090565b600080611d7c612acf565b90506000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015604051806060016040528060258152602001613fe96025913990611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5491906139c4565b60405180910390fd5b50611e6b8286868403612ad7565b60019250505092915050565b600080611e82612acf565b9050611e8f818585612ddd565b600191505092915050565b611ea2612acf565b73ffffffffffffffffffffffffffffffffffffffff16611ec0611a47565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280602081526020017f4f776e61626c653a2043616c6c6572206973206e6f7420746865206f776e657281525090611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4591906139c4565b60405180910390fd5b5080600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f546f6b656e3a20416464726573732063616e206e6f742062652030783000000081525090611ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fef91906139c4565b60405180910390fd5b50600047116040518060600160405280602981526020016141466029913990612057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204e91906139c4565b60405180910390fd5b508173ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561209e573d6000803e3d6000fd5b505050565b6000600654905090565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6060600073ffffffffffffffffffffffffffffffffffffffff16612156612acf565b73ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601581526020017f4f7261636c653a204e6f206f7261636c65207365740000000000000000000000815250906121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc91906139c4565b60405180910390fd5b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612227612acf565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280601e81526020017f4f7261636c653a20596f7520617265206e6f7420746865206f7261636c650000815250906122b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ac91906139c4565b60405180910390fd5b50600760009054906101000a900460ff16156040518060600160405280602181526020016140cd6021913990612321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231891906139c4565b60405180910390fd5b506001600760006101000a81548160ff0219169083151502179055507f38cb976174a5c48b8f7b2f07f69b47c271ba7f019948915dc12efb770c2a542c60405160405180910390a16040518060400160405280600f81526020017f456e61626c6564204d696e74696e670000000000000000000000000000000000815250905090565b60006123ae612acf565b73ffffffffffffffffffffffffffffffffffffffff166123cc611a47565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280602081526020017f4f776e61626c653a2043616c6c6572206973206e6f7420746865206f776e65728152509061245a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245191906139c4565b60405180910390fd5b5081600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f546f6b656e3a20416464726573732063616e206e6f742062652030783000000081525090612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb91906139c4565b60405180910390fd5b5060008473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016125409190613c12565b602060405180830381865afa15801561255d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125819190613e6b565b90506000811160405180606001604052806029815260200161414660299139906125e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d891906139c4565b60405180910390fd5b508473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85836040518363ffffffff1660e01b815260040161261d929190613ef7565b6020604051808303816000875af115801561263c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126609190613da4565b9250505092915050565b6000612674612acf565b73ffffffffffffffffffffffffffffffffffffffff16612692611a47565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280602081526020017f4f776e61626c653a2043616c6c6572206973206e6f7420746865206f776e657281525090612720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271791906139c4565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060600160405280602c8152602001613f8f602c9139906127ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c591906139c4565b60405180910390fd5b5060011515600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e4cea52e306040518263ffffffff1660e01b815260040161282e9190613c12565b602060405180830381865afa15801561284b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061286f9190613da4565b1515146040518060600160405280602e8152602001613fbb602e9139906128cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c391906139c4565b60405180910390fd5b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166375a1bb776040518163ffffffff1660e01b81526004016020604051808303816000875af115801561293c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129609190613da4565b905090565b61296d612acf565b73ffffffffffffffffffffffffffffffffffffffff1661298b611a47565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280602081526020017f4f776e61626c653a2043616c6c6572206973206e6f7420746865206f776e657281525090612a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1091906139c4565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601f81526020017f4f776e61626c653a20416464726573732063616e206e6f74206265203078300081525090612ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab991906139c4565b60405180910390fd5b50612acc81613867565b50565b600033905090565b82600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f546f6b656e3a20416464726573732063616e206e6f742062652030783000000081525090612b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7791906139c4565b60405180910390fd5b5082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f546f6b656e3a20416464726573732063616e206e6f742062652030783000000081525090612c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2191906139c4565b60405180910390fd5b5082600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051612d099190613b31565b60405180910390a35050505050565b6000612d2484846120ad565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612dd757818110156040518060400160405280601d81526020017f546f6b656e3a20496e73756666696369656e7420616c6c6f77616e636500000081525090612dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbf91906139c4565b60405180910390fd5b50612dd68484848403612ad7565b5b50505050565b82600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f546f6b656e3a20416464726573732063616e206e6f742062652030783000000081525090612e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7d91906139c4565b60405180910390fd5b5082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f546f6b656e3a20416464726573732063616e206e6f742062652030783000000081525090612f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2791906139c4565b60405180910390fd5b506000600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156040518060600160405280602681526020016140396026913990612fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fca91906139c4565b60405180910390fd5b50838103600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130699190613e00565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516130cd9190613b31565b60405180910390a3505050505050565b600760009054906101000a900460ff166040518060400160405280601a81526020017f546f6b656e3a204d696e74696e672069732064697361626c656400000000000081525090613164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315b91906139c4565b60405180910390fd5b5081600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f546f6b656e3a20416464726573732063616e206e6f74206265203078300000008152509061320e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320591906139c4565b60405180910390fd5b5081600654600554678ac7230489e800006132299190613f20565b6132339190613f20565b8111156040518060400160405280601e81526020017f546f6b656e3a20416d6f756e742069732061626f766520746865206361700000815250906132ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a491906139c4565b60405180910390fd5b5082600560008282546132c09190613e00565b9250508190555082600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133169190613e00565b925050819055508373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161337b9190613b31565b60405180910390a3600061338d612acf565b9050613398816119ed565b15613407578473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc3b8ae385c02b938fbbbd694d1da0761f755ee2c942f26bbfc6723c986d31b9b866040516133fa9190613b31565b60405180910390a361346d565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f6de547f9e15aa8eb4e186426345d83ce982c2e4a1f811761da74ff56a2a23731866040516134649190613b31565b60405180910390a35b5050505050565b600760019054906101000a900460ff166040518060400160405280601a81526020017f546f6b656e3a204275726e696e672069732064697361626c6564000000000000815250906134fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134f291906139c4565b60405180910390fd5b5081600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f546f6b656e3a20416464726573732063616e206e6f7420626520307830000000815250906135a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359c91906139c4565b60405180910390fd5b506000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156040518060600160405280602281526020016141246022913990613648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363f91906139c4565b60405180910390fd5b50828103600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082600560008282546136a19190613f20565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516137069190613b31565b60405180910390a36000613718612acf565b9050613723816119ed565b8061377b5750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b156137ea578073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fabf8a0bc0c6341b64dfa026a551cda9d3beb0e0525758303026bacbc11ad1d8c866040516137dd9190613b31565b60405180910390a3613860565b836006600082825401925050819055508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fe89157ccd232bcbcdb51b17ee427bcd37c60c0d26c4d97408b1309a9333c636e866040516138579190613b31565b60405180910390a35b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561396557808201518184015260208101905061394a565b83811115613974576000848401525b50505050565b6000601f19601f8301169050919050565b60006139968261392b565b6139a08185613936565b93506139b0818560208601613947565b6139b98161397a565b840191505092915050565b600060208201905081810360008301526139de818461398b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a16826139eb565b9050919050565b613a2681613a0b565b8114613a3157600080fd5b50565b600081359050613a4381613a1d565b92915050565b600060208284031215613a5f57613a5e6139e6565b5b6000613a6d84828501613a34565b91505092915050565b6000819050919050565b613a8981613a76565b8114613a9457600080fd5b50565b600081359050613aa681613a80565b92915050565b60008060408385031215613ac357613ac26139e6565b5b6000613ad185828601613a34565b9250506020613ae285828601613a97565b9150509250929050565b60008115159050919050565b613b0181613aec565b82525050565b6000602082019050613b1c6000830184613af8565b92915050565b613b2b81613a76565b82525050565b6000602082019050613b466000830184613b22565b92915050565b600080600060608486031215613b6557613b646139e6565b5b6000613b7386828701613a34565b9350506020613b8486828701613a34565b9250506040613b9586828701613a97565b9150509250925092565b600060ff82169050919050565b613bb581613b9f565b82525050565b6000602082019050613bd06000830184613bac565b92915050565b600060208284031215613bec57613beb6139e6565b5b6000613bfa84828501613a97565b91505092915050565b613c0c81613a0b565b82525050565b6000602082019050613c276000830184613c03565b92915050565b6000613c38826139eb565b9050919050565b613c4881613c2d565b8114613c5357600080fd5b50565b600081359050613c6581613c3f565b92915050565b600060208284031215613c8157613c806139e6565b5b6000613c8f84828501613c56565b91505092915050565b60008060408385031215613caf57613cae6139e6565b5b6000613cbd85828601613a34565b9250506020613cce85828601613a34565b9150509250929050565b60008060408385031215613cef57613cee6139e6565b5b6000613cfd85828601613a34565b9250506020613d0e85828601613c56565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d5f57607f821691505b602082108103613d7257613d71613d18565b5b50919050565b613d8181613aec565b8114613d8c57600080fd5b50565b600081519050613d9e81613d78565b92915050565b600060208284031215613dba57613db96139e6565b5b6000613dc884828501613d8f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e0b82613a76565b9150613e1683613a76565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4b57613e4a613dd1565b5b828201905092915050565b600081519050613e6581613a80565b92915050565b600060208284031215613e8157613e806139e6565b5b6000613e8f84828501613e56565b91505092915050565b6000819050919050565b6000613ebd613eb8613eb3846139eb565b613e98565b6139eb565b9050919050565b6000613ecf82613ea2565b9050919050565b6000613ee182613ec4565b9050919050565b613ef181613ed6565b82525050565b6000604082019050613f0c6000830185613ee8565b613f196020830184613b22565b9392505050565b6000613f2b82613a76565b9150613f3683613a76565b925082821015613f4957613f48613dd1565b5b82820390509291505056fe546f6b656e3a20596f7520617265206e6f7420617070726f76656420746f207370656e64207468697320616d6f756e74206f6620746f6b656e734f7261636c653a20536574207468652068616e646c6572206f7261636c6520616464726573732066697273744f7261636c653a20596f757220746f6b656e206973206e6f7420616c6c6f77656420696e204a4d20427269646765546f6b656e3a2044656372656173656420616c6c6f77616e63652062656c6f77207a65726f4f7261636c653a204164647265737320697320616c72656164792061204272696467652048616e646c6572546f6b656e3a205472616e7366657220616d6f756e7420657863656564732062616c616e6365546f6b656e3a204275726e696e6720697320616c72656164792064697361626c65644f7261636c653a2043616c6c6572206973206e6f7420746865206f7261636c65206f722068616e646c6572546f6b656e3a204275726e696e6720697320616c726561647920656e61626c6564546f6b656e3a204d696e74696e6720697320616c726561647920656e61626c65644f7261636c653a204e6f7420616c6c6f77656420746f2065646974207468652048616e646c6572204f7261636c652061646472657373546f6b656e3a204275726e20616d6f756e7420657863656564732062616c616e6365546f6b656e3a205468652062616c616e6365206d7573742062652067726561746572207468616e2030546f6b656e3a204d696e74696e6720697320616c72656164792064697361626c6564a26469706673582212206188312ef581376b808774c32486612838403dec3d0a10091a1f4cd91b8539aa64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000114a205520532054204d204f204e2045205900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024a4d000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80637e5cd5c111610104578063a9059cbb116100a2578063e797ec1b11610071578063e797ec1b1461056f578063e7e117861461058d578063edf07bb5146105bd578063f2fde38b146105db576101da565b8063a9059cbb146104d5578063b19f2fc414610505578063d89135cd14610521578063dd62ed3e1461053f576101da565b80638da5cb5b116100de5780638da5cb5b1461044b57806395d89b411461046957806398603cca14610487578063a457c2d7146104a5576101da565b80637e5cd5c1146103df578063859e0d3a146103fd57806388ee3b061461041b576101da565b8063395093511161017c57806370a082311161014b57806370a08231146103595780637581a8e61461038957806375eb259b146103a757806379cc6790146103c3576101da565b806339509351146102d357806340c10f191461030357806342966c681461031f57806355c7ba141461033b576101da565b806318160ddd116101b857806318160ddd1461024957806320c354bd1461026757806323b872dd14610285578063313ce567146102b5576101da565b806306fdde03146101df57806307aa037a146101fd578063095ea7b314610219575b600080fd5b6101e76105f7565b6040516101f491906139c4565b60405180910390f35b61021760048036038101906102129190613a49565b610689565b005b610233600480360381019061022e9190613aac565b6109f9565b6040516102409190613b07565b60405180910390f35b610251610a1c565b60405161025e9190613b31565b60405180910390f35b61026f610a26565b60405161027c9190613b07565b60405180910390f35b61029f600480360381019061029a9190613b4c565b610a39565b6040516102ac9190613b07565b60405180910390f35b6102bd610b43565b6040516102ca9190613bbb565b60405180910390f35b6102ed60048036038101906102e89190613aac565b610b5a565b6040516102fa9190613b07565b60405180910390f35b61031d60048036038101906103189190613aac565b610c04565b005b61033960048036038101906103349190613bd6565b610d8c565b005b610343610da0565b6040516103509190613b07565b60405180910390f35b610373600480360381019061036e9190613a49565b610db3565b6040516103809190613b31565b60405180910390f35b610391610dfc565b60405161039e91906139c4565b60405180910390f35b6103c160048036038101906103bc9190613a49565b61106c565b005b6103dd60048036038101906103d89190613aac565b611381565b005b6103e7611483565b6040516103f491906139c4565b60405180910390f35b6104056116f2565b6040516104129190613b07565b60405180910390f35b61043560048036038101906104309190613a49565b6119ed565b6040516104429190613b07565b60405180910390f35b610453611a47565b6040516104609190613c12565b60405180910390f35b610471611a70565b60405161047e91906139c4565b60405180910390f35b61048f611b02565b60405161049c91906139c4565b60405180910390f35b6104bf60048036038101906104ba9190613aac565b611d71565b6040516104cc9190613b07565b60405180910390f35b6104ef60048036038101906104ea9190613aac565b611e77565b6040516104fc9190613b07565b60405180910390f35b61051f600480360381019061051a9190613c6b565b611e9a565b005b6105296120a3565b6040516105369190613b31565b60405180910390f35b61055960048036038101906105549190613c98565b6120ad565b6040516105669190613b31565b60405180910390f35b610577612134565b60405161058491906139c4565b60405180910390f35b6105a760048036038101906105a29190613cd8565b6123a4565b6040516105b49190613b07565b60405180910390f35b6105c561266a565b6040516105d29190613b07565b60405180910390f35b6105f560048036038101906105f09190613a49565b612965565b005b60606008805461060690613d47565b80601f016020809104026020016040519081016040528092919081815260200182805461063290613d47565b801561067f5780601f106106545761010080835404028352916020019161067f565b820191906000526020600020905b81548152906001019060200180831161066257829003601f168201915b5050505050905090565b610691612acf565b73ffffffffffffffffffffffffffffffffffffffff166106af611a47565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280602081526020017f4f776e61626c653a2043616c6c6572206973206e6f7420746865206f776e65728152509061073d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073491906139c4565b60405180910390fd5b50600115158173ffffffffffffffffffffffffffffffffffffffff1663e4cea52e306040518263ffffffff1660e01b815260040161077b9190613c12565b602060405180830381865afa158015610798573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107bc9190613da4565b1515146040518060600160405280602e8152602001613fbb602e913990610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081091906139c4565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036108b65780600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109f6565b60011515600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638b235199306040518263ffffffff1660e01b81526004016109159190613c12565b602060405180830381865afa158015610932573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109569190613da4565b1515146040518060600160405280603681526020016140ee60369139906109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa91906139c4565b60405180910390fd5b5080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b600080610a04612acf565b9050610a11818585612ad7565b600191505092915050565b6000600554905090565b600760019054906101000a900460ff1681565b600080610a44612acf565b9050600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548311156040518060600160405280603a8152602001613f55603a913990610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1791906139c4565b60405180910390fd5b50610b2c858285612d18565b610b37858585612ddd565b60019150509392505050565b6000600a60009054906101000a900460ff16905090565b600080610b65612acf565b9050610bf9818585600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bf49190613e00565b612ad7565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff16610c24612acf565b73ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f4f7261636c653a2053656e6465722063616e206e6f742062652030783000000081525090610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa91906139c4565b60405180910390fd5b50610cc4610cbf612acf565b6119ed565b80610d235750610cd2612acf565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6040518060600160405280602b8152602001614081602b913990610d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7491906139c4565b60405180910390fd5b50610d8882826130dd565b5050565b610d9d610d97612acf565b82613474565b50565b600760009054906101000a900460ff1681565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600073ffffffffffffffffffffffffffffffffffffffff16610e1e612acf565b73ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601581526020017f4f7261636c653a204e6f206f7261636c6520736574000000000000000000000081525090610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea491906139c4565b60405180910390fd5b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610eef612acf565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280601e81526020017f4f7261636c653a20596f7520617265206e6f7420746865206f7261636c65000081525090610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7491906139c4565b60405180910390fd5b50600760019054906101000a900460ff16156040518060600160405280602181526020016140ac6021913990610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe091906139c4565b60405180910390fd5b506001600760016101000a81548160ff0219169083151502179055507f65521a0db60169023ef4718a72c0d13775b298d16968758a685e034d2ca1c87560405160405180910390a16040518060400160405280600f81526020017f456e61626c6564204275726e696e670000000000000000000000000000000000815250905090565b600073ffffffffffffffffffffffffffffffffffffffff1661108c612acf565b73ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601581526020017f4f7261636c653a204e6f206f7261636c652073657400000000000000000000008152509061111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111291906139c4565b60405180910390fd5b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661115d612acf565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280601e81526020017f4f7261636c653a20596f7520617265206e6f7420746865206f7261636c650000815250906111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e291906139c4565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601f81526020017f4f776e61626c653a20416464726573732063616e206e6f74206265203078300081525090611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b91906139c4565b60405180910390fd5b5061129e816119ed565b156040518060600160405280602b815260200161400e602b9139906112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f091906139c4565b60405180910390fd5b508073ffffffffffffffffffffffffffffffffffffffff167f29cf5705e8ef0d06742df5af365503ef11d8886f3122b65edca07d64cf3d2f0a60405160405180910390a280600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006113ca612acf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548111156040518060600160405280603a8152602001613f55603a913990611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145991906139c4565b60405180910390fd5b506114758261146f612acf565b83612d18565b61147f8282613474565b5050565b6060600073ffffffffffffffffffffffffffffffffffffffff166114a5612acf565b73ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601581526020017f4f7261636c653a204e6f206f7261636c6520736574000000000000000000000081525090611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152b91906139c4565b60405180910390fd5b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611576612acf565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280601e81526020017f4f7261636c653a20596f7520617265206e6f7420746865206f7261636c65000081525090611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb91906139c4565b60405180910390fd5b50600760009054906101000a900460ff1660405180606001604052806022815260200161416f602291399061166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166691906139c4565b60405180910390fd5b506000600760006101000a81548160ff0219169083151502179055507faf79b4370f6af9d950564bbe6b81f7f0834c003c455db9248f4e55e6bf865eb760405160405180910390a16040518060400160405280601081526020017f44697361626c6564204d696e74696e6700000000000000000000000000000000815250905090565b60006116fc612acf565b73ffffffffffffffffffffffffffffffffffffffff1661171a611a47565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280602081526020017f4f776e61626c653a2043616c6c6572206973206e6f7420746865206f776e6572815250906117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f91906139c4565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060600160405280602c8152602001613f8f602c913990611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d91906139c4565b60405180910390fd5b5060011515600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e4cea52e306040518263ffffffff1660e01b81526004016118b69190613c12565b602060405180830381865afa1580156118d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f79190613da4565b1515146040518060600160405280602e8152602001613fbb602e913990611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b91906139c4565b60405180910390fd5b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a97854f56040518163ffffffff1660e01b81526004016020604051808303816000875af11580156119c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e89190613da4565b905090565b60008173ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060098054611a7f90613d47565b80601f0160208091040260200160405190810160405280929190818152602001828054611aab90613d47565b8015611af85780601f10611acd57610100808354040283529160200191611af8565b820191906000526020600020905b815481529060010190602001808311611adb57829003601f168201915b5050505050905090565b6060600073ffffffffffffffffffffffffffffffffffffffff16611b24612acf565b73ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601581526020017f4f7261636c653a204e6f206f7261636c6520736574000000000000000000000081525090611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa91906139c4565b60405180910390fd5b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611bf5612acf565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280601e81526020017f4f7261636c653a20596f7520617265206e6f7420746865206f7261636c65000081525090611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a91906139c4565b60405180910390fd5b50600760019054906101000a900460ff1660405180606001604052806022815260200161405f6022913990611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce591906139c4565b60405180910390fd5b506000600760016101000a81548160ff0219169083151502179055507f9bdcd7b2de47aadf92905c62d9ed9e7d1f02a42a8187d0549f686c76148c7c3560405160405180910390a16040518060400160405280601081526020017f44697361626c6564204275726e696e6700000000000000000000000000000000815250905090565b600080611d7c612acf565b90506000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015604051806060016040528060258152602001613fe96025913990611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5491906139c4565b60405180910390fd5b50611e6b8286868403612ad7565b60019250505092915050565b600080611e82612acf565b9050611e8f818585612ddd565b600191505092915050565b611ea2612acf565b73ffffffffffffffffffffffffffffffffffffffff16611ec0611a47565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280602081526020017f4f776e61626c653a2043616c6c6572206973206e6f7420746865206f776e657281525090611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4591906139c4565b60405180910390fd5b5080600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f546f6b656e3a20416464726573732063616e206e6f742062652030783000000081525090611ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fef91906139c4565b60405180910390fd5b50600047116040518060600160405280602981526020016141466029913990612057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204e91906139c4565b60405180910390fd5b508173ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561209e573d6000803e3d6000fd5b505050565b6000600654905090565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6060600073ffffffffffffffffffffffffffffffffffffffff16612156612acf565b73ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601581526020017f4f7261636c653a204e6f206f7261636c65207365740000000000000000000000815250906121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc91906139c4565b60405180910390fd5b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612227612acf565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280601e81526020017f4f7261636c653a20596f7520617265206e6f7420746865206f7261636c650000815250906122b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ac91906139c4565b60405180910390fd5b50600760009054906101000a900460ff16156040518060600160405280602181526020016140cd6021913990612321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231891906139c4565b60405180910390fd5b506001600760006101000a81548160ff0219169083151502179055507f38cb976174a5c48b8f7b2f07f69b47c271ba7f019948915dc12efb770c2a542c60405160405180910390a16040518060400160405280600f81526020017f456e61626c6564204d696e74696e670000000000000000000000000000000000815250905090565b60006123ae612acf565b73ffffffffffffffffffffffffffffffffffffffff166123cc611a47565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280602081526020017f4f776e61626c653a2043616c6c6572206973206e6f7420746865206f776e65728152509061245a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245191906139c4565b60405180910390fd5b5081600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f546f6b656e3a20416464726573732063616e206e6f742062652030783000000081525090612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb91906139c4565b60405180910390fd5b5060008473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016125409190613c12565b602060405180830381865afa15801561255d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125819190613e6b565b90506000811160405180606001604052806029815260200161414660299139906125e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d891906139c4565b60405180910390fd5b508473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85836040518363ffffffff1660e01b815260040161261d929190613ef7565b6020604051808303816000875af115801561263c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126609190613da4565b9250505092915050565b6000612674612acf565b73ffffffffffffffffffffffffffffffffffffffff16612692611a47565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280602081526020017f4f776e61626c653a2043616c6c6572206973206e6f7420746865206f776e657281525090612720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271791906139c4565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060600160405280602c8152602001613f8f602c9139906127ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c591906139c4565b60405180910390fd5b5060011515600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e4cea52e306040518263ffffffff1660e01b815260040161282e9190613c12565b602060405180830381865afa15801561284b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061286f9190613da4565b1515146040518060600160405280602e8152602001613fbb602e9139906128cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c391906139c4565b60405180910390fd5b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166375a1bb776040518163ffffffff1660e01b81526004016020604051808303816000875af115801561293c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129609190613da4565b905090565b61296d612acf565b73ffffffffffffffffffffffffffffffffffffffff1661298b611a47565b73ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280602081526020017f4f776e61626c653a2043616c6c6572206973206e6f7420746865206f776e657281525090612a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1091906139c4565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601f81526020017f4f776e61626c653a20416464726573732063616e206e6f74206265203078300081525090612ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab991906139c4565b60405180910390fd5b50612acc81613867565b50565b600033905090565b82600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f546f6b656e3a20416464726573732063616e206e6f742062652030783000000081525090612b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7791906139c4565b60405180910390fd5b5082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f546f6b656e3a20416464726573732063616e206e6f742062652030783000000081525090612c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2191906139c4565b60405180910390fd5b5082600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051612d099190613b31565b60405180910390a35050505050565b6000612d2484846120ad565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612dd757818110156040518060400160405280601d81526020017f546f6b656e3a20496e73756666696369656e7420616c6c6f77616e636500000081525090612dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbf91906139c4565b60405180910390fd5b50612dd68484848403612ad7565b5b50505050565b82600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f546f6b656e3a20416464726573732063616e206e6f742062652030783000000081525090612e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7d91906139c4565b60405180910390fd5b5082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f546f6b656e3a20416464726573732063616e206e6f742062652030783000000081525090612f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2791906139c4565b60405180910390fd5b506000600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156040518060600160405280602681526020016140396026913990612fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fca91906139c4565b60405180910390fd5b50838103600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130699190613e00565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516130cd9190613b31565b60405180910390a3505050505050565b600760009054906101000a900460ff166040518060400160405280601a81526020017f546f6b656e3a204d696e74696e672069732064697361626c656400000000000081525090613164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315b91906139c4565b60405180910390fd5b5081600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f546f6b656e3a20416464726573732063616e206e6f74206265203078300000008152509061320e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320591906139c4565b60405180910390fd5b5081600654600554678ac7230489e800006132299190613f20565b6132339190613f20565b8111156040518060400160405280601e81526020017f546f6b656e3a20416d6f756e742069732061626f766520746865206361700000815250906132ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a491906139c4565b60405180910390fd5b5082600560008282546132c09190613e00565b9250508190555082600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133169190613e00565b925050819055508373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161337b9190613b31565b60405180910390a3600061338d612acf565b9050613398816119ed565b15613407578473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc3b8ae385c02b938fbbbd694d1da0761f755ee2c942f26bbfc6723c986d31b9b866040516133fa9190613b31565b60405180910390a361346d565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f6de547f9e15aa8eb4e186426345d83ce982c2e4a1f811761da74ff56a2a23731866040516134649190613b31565b60405180910390a35b5050505050565b600760019054906101000a900460ff166040518060400160405280601a81526020017f546f6b656e3a204275726e696e672069732064697361626c6564000000000000815250906134fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134f291906139c4565b60405180910390fd5b5081600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601d81526020017f546f6b656e3a20416464726573732063616e206e6f7420626520307830000000815250906135a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359c91906139c4565b60405180910390fd5b506000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156040518060600160405280602281526020016141246022913990613648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363f91906139c4565b60405180910390fd5b50828103600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082600560008282546136a19190613f20565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516137069190613b31565b60405180910390a36000613718612acf565b9050613723816119ed565b8061377b5750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b156137ea578073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fabf8a0bc0c6341b64dfa026a551cda9d3beb0e0525758303026bacbc11ad1d8c866040516137dd9190613b31565b60405180910390a3613860565b836006600082825401925050819055508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fe89157ccd232bcbcdb51b17ee427bcd37c60c0d26c4d97408b1309a9333c636e866040516138579190613b31565b60405180910390a35b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561396557808201518184015260208101905061394a565b83811115613974576000848401525b50505050565b6000601f19601f8301169050919050565b60006139968261392b565b6139a08185613936565b93506139b0818560208601613947565b6139b98161397a565b840191505092915050565b600060208201905081810360008301526139de818461398b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a16826139eb565b9050919050565b613a2681613a0b565b8114613a3157600080fd5b50565b600081359050613a4381613a1d565b92915050565b600060208284031215613a5f57613a5e6139e6565b5b6000613a6d84828501613a34565b91505092915050565b6000819050919050565b613a8981613a76565b8114613a9457600080fd5b50565b600081359050613aa681613a80565b92915050565b60008060408385031215613ac357613ac26139e6565b5b6000613ad185828601613a34565b9250506020613ae285828601613a97565b9150509250929050565b60008115159050919050565b613b0181613aec565b82525050565b6000602082019050613b1c6000830184613af8565b92915050565b613b2b81613a76565b82525050565b6000602082019050613b466000830184613b22565b92915050565b600080600060608486031215613b6557613b646139e6565b5b6000613b7386828701613a34565b9350506020613b8486828701613a34565b9250506040613b9586828701613a97565b9150509250925092565b600060ff82169050919050565b613bb581613b9f565b82525050565b6000602082019050613bd06000830184613bac565b92915050565b600060208284031215613bec57613beb6139e6565b5b6000613bfa84828501613a97565b91505092915050565b613c0c81613a0b565b82525050565b6000602082019050613c276000830184613c03565b92915050565b6000613c38826139eb565b9050919050565b613c4881613c2d565b8114613c5357600080fd5b50565b600081359050613c6581613c3f565b92915050565b600060208284031215613c8157613c806139e6565b5b6000613c8f84828501613c56565b91505092915050565b60008060408385031215613caf57613cae6139e6565b5b6000613cbd85828601613a34565b9250506020613cce85828601613a34565b9150509250929050565b60008060408385031215613cef57613cee6139e6565b5b6000613cfd85828601613a34565b9250506020613d0e85828601613c56565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d5f57607f821691505b602082108103613d7257613d71613d18565b5b50919050565b613d8181613aec565b8114613d8c57600080fd5b50565b600081519050613d9e81613d78565b92915050565b600060208284031215613dba57613db96139e6565b5b6000613dc884828501613d8f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e0b82613a76565b9150613e1683613a76565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4b57613e4a613dd1565b5b828201905092915050565b600081519050613e6581613a80565b92915050565b600060208284031215613e8157613e806139e6565b5b6000613e8f84828501613e56565b91505092915050565b6000819050919050565b6000613ebd613eb8613eb3846139eb565b613e98565b6139eb565b9050919050565b6000613ecf82613ea2565b9050919050565b6000613ee182613ec4565b9050919050565b613ef181613ed6565b82525050565b6000604082019050613f0c6000830185613ee8565b613f196020830184613b22565b9392505050565b6000613f2b82613a76565b9150613f3683613a76565b925082821015613f4957613f48613dd1565b5b82820390509291505056fe546f6b656e3a20596f7520617265206e6f7420617070726f76656420746f207370656e64207468697320616d6f756e74206f6620746f6b656e734f7261636c653a20536574207468652068616e646c6572206f7261636c6520616464726573732066697273744f7261636c653a20596f757220746f6b656e206973206e6f7420616c6c6f77656420696e204a4d20427269646765546f6b656e3a2044656372656173656420616c6c6f77616e63652062656c6f77207a65726f4f7261636c653a204164647265737320697320616c72656164792061204272696467652048616e646c6572546f6b656e3a205472616e7366657220616d6f756e7420657863656564732062616c616e6365546f6b656e3a204275726e696e6720697320616c72656164792064697361626c65644f7261636c653a2043616c6c6572206973206e6f7420746865206f7261636c65206f722068616e646c6572546f6b656e3a204275726e696e6720697320616c726561647920656e61626c6564546f6b656e3a204d696e74696e6720697320616c726561647920656e61626c65644f7261636c653a204e6f7420616c6c6f77656420746f2065646974207468652048616e646c6572204f7261636c652061646472657373546f6b656e3a204275726e20616d6f756e7420657863656564732062616c616e6365546f6b656e3a205468652062616c616e6365206d7573742062652067726561746572207468616e2030546f6b656e3a204d696e74696e6720697320616c72656164792064697361626c6564a26469706673582212206188312ef581376b808774c32486612838403dec3d0a10091a1f4cd91b8539aa64736f6c634300080d0033
Deployed Bytecode Sourcemap
1351:13515:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2866:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2480:528:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5193:189:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3937:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1688:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5944:333;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3787:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6672:228;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9914:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13242:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1647:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4188:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8350:262;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2180:294:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13634:246:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8074:266;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1683:325:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;660:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1056:85:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3069:94:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8618:266;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7387:409;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4505:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13890:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4041:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4744:141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7806:262;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14121:312;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1345:328:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1477:189:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2866:90:5;2912:13;2944:5;2937:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2866:90;:::o;2480:528:0:-;1279:12:4;:10;:12::i;:::-;1268:23;;:7;:5;:7::i;:::-;:23;;;1293:16;;;;;;;;;;;;;;;;;1260:50;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;2633:4:0::1;2567:70;;2581:16;2567:47;;;2623:4;2567:62;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:70;;;2639:34;;;;;;;;;;;;;;;;;2559:115;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;2725:1;2690:37;;2698:14;;;;;;;;;;;2690:37;;::::0;2685:317:::1;;2775:16;2744:14;;:48;;;;;;;;;;;;;;;;;;2685:317;;;2888:4;2831:61;;:14;;;;;;;;;;;:38;;;2878:4;2831:53;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:61;;;2894:33;;;;;;;;;;;;;;;;;2823:105;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;2974:16;2943:14;;:48;;;;;;;;;;;;;;;;;;2685:317;2480:528:::0;:::o;5193:189:5:-;5268:4;5284:13;5300:12;:10;:12::i;:::-;5284:28;;5322:32;5331:5;5338:7;5347:6;5322:8;:32::i;:::-;5371:4;5364:11;;;5193:189;;;;:::o;3937:98::-;3990:7;4016:12;;4009:19;;3937:98;:::o;1688:35::-;;;;;;;;;;;;;:::o;5944:333::-;6033:4;6049:15;6067:12;:10;:12::i;:::-;6049:30;;6107:11;:17;6119:4;6107:17;;;;;;;;;;;;;;;:26;6125:7;6107:26;;;;;;;;;;;;;;;;6097:6;:36;;6135:19;;;;;;;;;;;;;;;;;6089:66;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;6174:38;6190:4;6196:7;6205:6;6174:15;:38::i;:::-;6222:27;6232:4;6238:2;6242:6;6222:9;:27::i;:::-;6266:4;6259:11;;;5944:333;;;;;:::o;3787:90::-;3837:5;3861:9;;;;;;;;;;;3854:16;;3787:90;:::o;6672:228::-;6752:4;6768:13;6784:12;:10;:12::i;:::-;6768:28;;6806:66;6815:5;6822:7;6861:10;6831:11;:18;6843:5;6831:18;;;;;;;;;;;;;;;:27;6850:7;6831:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;6806:8;:66::i;:::-;6889:4;6882:11;;;6672:228;;;;:::o;9914:103::-;960:1:0;936:26;;:12;:10;:12::i;:::-;:26;;;;964:30;;;;;;;;;;;;;;;;;928:67;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1013:29;1029:12;:10;:12::i;:::-;1013:15;:29::i;:::-;:72;;;;1073:12;:10;:12::i;:::-;1046:39;;1054:14;;;;;;;;;;;1046:39;;;1013:72;1087:28;;;;;;;;;;;;;;;;;1005:111;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;9993:17:5::1;9999:2;10003:6;9993:5;:17::i;:::-;9914:103:::0;;:::o;13242:81::-;13289:27;13295:12;:10;:12::i;:::-;13309:6;13289:5;:27::i;:::-;13242:81;:::o;1647:35::-;;;;;;;;;;;;;:::o;4188:117::-;4254:7;4280:9;:18;4290:7;4280:18;;;;;;;;;;;;;;;;4273:25;;4188:117;;;:::o;8350:262::-;8409:20;1215:1:0;1191:26;;:12;:10;:12::i;:::-;:26;;;;1219:21;;;;;;;;;;;;;;;;;1183:58;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1283:14;;;;;;;;;;;1259:39;;:12;:10;:12::i;:::-;:39;;;1300:20;;;;;;;;;;;;;;;;;1251:70;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;8450:16:5::1;;;;;;;;;;;8449:17;8468:27;;;;;;;;;;;;;;;;;8441:55;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;8534:4;8515:16;;:23;;;;;;;;;;;;;;;;;;8553:16;;;;;;;;;;8579:26;;;;;;;;;;;;;;;;::::0;::::1;;8350:262:::0;:::o;2180:294:0:-;1215:1;1191:26;;:12;:10;:12::i;:::-;:26;;;;1219:21;;;;;;;;;;;;;;;;;1183:58;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1283:14;;;;;;;;;;;1259:39;;:12;:10;:12::i;:::-;:39;;;1300:20;;;;;;;;;;;;;;;;;1251:70;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;2285:1:::1;2266:21;;:7;:21;;;;2289:31;;;;;;;;;;;;;;;;::::0;2258:63:::1;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;2340:24;2356:7;2340:15;:24::i;:::-;2339:25;2366;;;;;;;;;;;;;;;;;2331:61;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;2425:7;2408:25;;;;;;;;;;;;2460:7;2443:14;;:24;;;;;;;;;;;;;;;;;;2180:294:::0;:::o;13634:246:5:-;13720:11;:20;13732:7;13720:20;;;;;;;;;;;;;;;:34;13741:12;:10;:12::i;:::-;13720:34;;;;;;;;;;;;;;;;13710:6;:44;;13756:19;;;;;;;;;;;;;;;;;13702:74;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;13795:46;13811:7;13820:12;:10;:12::i;:::-;13834:6;13795:15;:46::i;:::-;13851:22;13857:7;13866:6;13851:5;:22::i;:::-;13634:246;;:::o;8074:266::-;8134:20;1215:1:0;1191:26;;:12;:10;:12::i;:::-;:26;;;;1219:21;;;;;;;;;;;;;;;;;1183:58;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1283:14;;;;;;;;;;;1259:39;;:12;:10;:12::i;:::-;:39;;;1300:20;;;;;;;;;;;;;;;;;1251:70;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;8174:16:5::1;;;;;;;;;;;8192:28;;;;;;;;;;;;;;;;;8166:55;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;8259:5;8240:16;;:24;;;;;;;;;;;;;;;;;;8279:17;;;;;;;;;;8306:27;;;;;;;;;;;;;;;;::::0;::::1;;8074:266:::0;:::o;1683:325:0:-;1746:4;1279:12:4;:10;:12::i;:::-;1268:23;;:7;:5;:7::i;:::-;:23;;;1293:16;;;;;;;;;;;;;;;;;1260:50;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1805:1:0::1;1770:37;;1778:14;;;;;;;;;;;1770:37;;;;1809:31;;;;;;;;;;;;;;;;;1762:79;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1908:4;1859:53;;:14;;;;;;;;;;;:30;;;1898:4;1859:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;1914:34;;;;;;;;;;;;;;;;;1851:98;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1967:14;;;;;;;;;;;:32;;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1960:41;;1683:325:::0;:::o;660:118::-;723:4;764:7;746:25;;:14;;;;;;;;;;;:25;;;739:32;;660:118;;;:::o;1056:85:4:-;1102:7;1128:6;;;;;;;;;;;1121:13;;1056:85;:::o;3069:94:5:-;3117:13;3149:7;3142:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3069:94;:::o;8618:266::-;8678:20;1215:1:0;1191:26;;:12;:10;:12::i;:::-;:26;;;;1219:21;;;;;;;;;;;;;;;;;1183:58;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1283:14;;;;;;;;;;;1259:39;;:12;:10;:12::i;:::-;:39;;;1300:20;;;;;;;;;;;;;;;;;1251:70;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;8718:16:5::1;;;;;;;;;;;8736:28;;;;;;;;;;;;;;;;;8710:55;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;8803:5;8784:16;;:24;;;;;;;;;;;;;;;;;;8823:17;;;;;;;;;;8850:27;;;;;;;;;;;;;;;;::::0;::::1;;8618:266:::0;:::o;7387:409::-;7472:4;7488:13;7504:12;:10;:12::i;:::-;7488:28;;7526:24;7553:11;:18;7565:5;7553:18;;;;;;;;;;;;;;;:27;7572:7;7553:27;;;;;;;;;;;;;;;;7526:54;;7618:15;7598:16;:35;;7635:27;;;;;;;;;;;;;;;;;7590:73;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;7697:60;7706:5;7713:7;7741:15;7722:16;:34;7697:8;:60::i;:::-;7785:4;7778:11;;;;7387:409;;;;:::o;4505:181::-;4576:4;4592:13;4608:12;:10;:12::i;:::-;4592:28;;4630;4640:5;4647:2;4651:6;4630:9;:28::i;:::-;4675:4;4668:11;;;4505:181;;;;:::o;13890:225::-;1279:12:4;:10;:12::i;:::-;1268:23;;:7;:5;:7::i;:::-;:23;;;1293:16;;;;;;;;;;;;;;;;;1260:50;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;13973:9:5::1;2610:1;2590:22;;:8;:22;;;;2614:23;;;;;;;;;;;;;;;;::::0;2582:56:::1;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;14026:1:::2;14002:21;:25;14029:26;;;;;;;;;;;;;;;;;13994:62;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;14067:9;:18;;:41;14086:21;14067:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;1320:1:4::1;13890:225:5::0;:::o;4041:89::-;4085:7;4111:12;;4104:19;;4041:89;:::o;4744:141::-;4825:7;4851:11;:18;4863:5;4851:18;;;;;;;;;;;;;;;:27;4870:7;4851:27;;;;;;;;;;;;;;;;4844:34;;4744:141;;;;:::o;7806:262::-;7865:20;1215:1:0;1191:26;;:12;:10;:12::i;:::-;:26;;;;1219:21;;;;;;;;;;;;;;;;;1183:58;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1283:14;;;;;;;;;;;1259:39;;:12;:10;:12::i;:::-;:39;;;1300:20;;;;;;;;;;;;;;;;;1251:70;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;7906:16:5::1;;;;;;;;;;;7905:17;7924:27;;;;;;;;;;;;;;;;;7897:55;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;7990:4;7971:16;;:23;;;;;;;;;;;;;;;;;;8009:16;;;;;;;;;;8035:26;;;;;;;;;;;;;;;;::::0;::::1;;7806:262:::0;:::o;14121:312::-;14246:4;1279:12:4;:10;:12::i;:::-;1268:23;;:7;:5;:7::i;:::-;:23;;;1293:16;;;;;;;;;;;;;;;;;1260:50;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;14226:9:5::1;2610:1;2590:22;;:8;:22;;;;2614:23;;;;;;;;;;;;;;;;::::0;2582:56:::1;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;14262:11:::2;14283:6;14276:24;;;14309:4;14276:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14262:53;;14339:1;14333:3;:7;14342:26;;;;;;;;;;;;;;;;;14325:44;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;14394:6;14387:23;;;14411:9;14422:3;14387:39;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14380:46;;;1320:1:4::1;14121:312:5::0;;;;:::o;1345:328:0:-;1408:4;1279:12:4;:10;:12::i;:::-;1268:23;;:7;:5;:7::i;:::-;:23;;;1293:16;;;;;;;;;;;;;;;;;1260:50;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1467:1:0::1;1432:37;;1440:14;;;;;;;;;;;1432:37;;;;1471:31;;;;;;;;;;;;;;;;;1424:79;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1570:4;1521:53;;:14;;;;;;;;;;;:30;;;1560:4;1521:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;1576:34;;;;;;;;;;;;;;;;;1513:98;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1629:14;;;;;;;;;;;:35;;;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1622:44;;1345:328:::0;:::o;1477:189:4:-;1279:12;:10;:12::i;:::-;1268:23;;:7;:5;:7::i;:::-;:23;;;1293:16;;;;;;;;;;;;;;;;;1260:50;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1585:1:::1;1565:22;;:8;:22;;;;1589:31;;;;;;;;;;;;;;;;::::0;1557:64:::1;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1631:28;1650:8;1631:18;:28::i;:::-;1477:189:::0;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;12231:220:5:-;12320:5;2610:1;2590:22;;:8;:22;;;;2614:23;;;;;;;;;;;;;;;;;2582:56;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;12342:7:::1;2610:1;2590:22;;:8;:22;;;;2614:23;;;;;;;;;;;;;;;;::::0;2582:56:::1;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;12391:6:::2;12361:11;:18;12373:5;12361:18;;;;;;;;;;;;;;;:27;12380:7;12361:27;;;;;;;;;;;;;;;:36;;;;12428:7;12412:32;;12421:5;12412:32;;;12437:6;12412:32;;;;;;:::i;:::-;;;;;;;;2648:1:::1;12231:220:::0;;;;:::o;12728:401::-;12820:24;12847:25;12857:5;12864:7;12847:9;:25::i;:::-;12820:52;;12906:17;12886:16;:37;12882:241;;12967:6;12947:16;:26;;12975:29;;;;;;;;;;;;;;;;;12939:66;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;13047:51;13056:5;13063:7;13091:6;13072:16;:25;13047:8;:51::i;:::-;12882:241;12810:319;12728:401;;;:::o;9347:374::-;9432:4;2610:1;2590:22;;:8;:22;;;;2614:23;;;;;;;;;;;;;;;;;2582:56;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;9453:2:::1;2610:1;2590:22;;:8;:22;;;;2614:23;;;;;;;;;;;;;;;;::::0;2582:56:::1;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;9467:19:::2;9489:9;:15;9499:4;9489:15;;;;;;;;;;;;;;;;9467:37;;9537:6;9522:11;:21;;9545:31;;;;;;;;;;;;;;;;;9514:63;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;9631:6;9617:11;:20;9599:9;:15;9609:4;9599:15;;;;;;;;;;;;;;;:38;;;;9666:6;9649:9;:13;9659:2;9649:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;9703:2;9688:26;;9697:4;9688:26;;;9707:6;9688:26;;;;;;:::i;:::-;;;;;;;;9457:264;2648:1:::1;9347:374:::0;;;;:::o;10339:458::-;2356:16;;;;;;;;;;;2374:20;;;;;;;;;;;;;;;;;2348:47;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;10426:7:::1;2610:1;2590:22;;:8;:22;;;;2614:23;;;;;;;;;;;;;;;;::::0;2582:56:::1;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;10444:6:::2;2751:12;;2736;;1558:14;2729:19;;;;:::i;:::-;:34;;;;:::i;:::-;2718:6;:46;;2766:16;;;;;;;;;;;;;;;;::::0;2710:73:::2;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;10478:6:::3;10462:12;;:22;;;;;;;:::i;:::-;;;;;;;;10516:6;10494:9;:18;10504:7;10494:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;10558:7;10537:37;;10554:1;10537:37;;;10567:6;10537:37;;;;;;:::i;:::-;;;;;;;;10585:14;10602:12;:10;:12::i;:::-;10585:29;;10629:23;10645:6;10629:15;:23::i;:::-;10624:167;;;10693:7;10674:35;;10685:6;10674:35;;;10702:6;10674:35;;;;;;:::i;:::-;;;;;;;;10624:167;;;10764:7;10745:35;;10756:6;10745:35;;;10773:6;10745:35;;;;;;:::i;:::-;;;;;;;;10624:167;10452:345;2648:1:::2;2405::::1;10339:458:::0;;:::o;11121:684::-;2467:16;;;;;;;;;;;2485:20;;;;;;;;;;;;;;;;;2459:47;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;11208:7:::1;2610:1;2590:22;;:8;:22;;;;2614:23;;;;;;;;;;;;;;;;::::0;2582:56:::1;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;11227:22:::2;11252:9;:18;11262:7;11252:18;;;;;;;;;;;;;;;;11227:43;;11306:6;11288:14;:24;;11314:27;;;;;;;;;;;;;;;;;11280:62;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;11402:6;11385:14;:23;11364:9;:18;11374:7;11364:18;;;;;;;;;;;;;;;:44;;;;11436:6;11420:12;;:22;;;;;;;:::i;:::-;;;;;;;;11484:1;11458:37;;11467:7;11458:37;;;11488:6;11458:37;;;;;;:::i;:::-;;;;;;;;11506:14;11523:12;:10;:12::i;:::-;11506:29;;11550:23;11566:6;11550:15;:23::i;:::-;:60;;;;11595:14;;;;;;;;;;;11577:33;;:6;:33;;;11550:60;11545:254;;;11652:6;11632:35;;11643:7;11632:35;;;11660:6;11632:35;;;;;;:::i;:::-;;;;;;;;11545:254;;;11726:6;11710:12;;:22;;;;;;;;;;;11773:6;11753:35;;11764:7;11753:35;;;11781:6;11753:35;;;;;;:::i;:::-;;;;;;;;11545:254;11217:588;;2516:1:::1;11121:684:::0;;:::o;1820:187:4:-;1893:16;1912:6;;;;;;;;;;;1893:25;;1937:8;1928:6;;:17;;;;;;;;;;;;;;;;;;1991:8;1960:40;;1981:8;1960:40;;;;;;;;;;;;1883:124;1820:187;:::o;7:99:6:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:329::-;2290:6;2339:2;2327:9;2318:7;2314:23;2310:32;2307:119;;;2345:79;;:::i;:::-;2307:119;2465:1;2490:53;2535:7;2526:6;2515:9;2511:22;2490:53;:::i;:::-;2480:63;;2436:117;2231:329;;;;:::o;2566:77::-;2603:7;2632:5;2621:16;;2566:77;;;:::o;2649:122::-;2722:24;2740:5;2722:24;:::i;:::-;2715:5;2712:35;2702:63;;2761:1;2758;2751:12;2702:63;2649:122;:::o;2777:139::-;2823:5;2861:6;2848:20;2839:29;;2877:33;2904:5;2877:33;:::i;:::-;2777:139;;;;:::o;2922:474::-;2990:6;2998;3047:2;3035:9;3026:7;3022:23;3018:32;3015:119;;;3053:79;;:::i;:::-;3015:119;3173:1;3198:53;3243:7;3234:6;3223:9;3219:22;3198:53;:::i;:::-;3188:63;;3144:117;3300:2;3326:53;3371:7;3362:6;3351:9;3347:22;3326:53;:::i;:::-;3316:63;;3271:118;2922:474;;;;;:::o;3402:90::-;3436:7;3479:5;3472:13;3465:21;3454:32;;3402:90;;;:::o;3498:109::-;3579:21;3594:5;3579:21;:::i;:::-;3574:3;3567:34;3498:109;;:::o;3613:210::-;3700:4;3738:2;3727:9;3723:18;3715:26;;3751:65;3813:1;3802:9;3798:17;3789:6;3751:65;:::i;:::-;3613:210;;;;:::o;3829:118::-;3916:24;3934:5;3916:24;:::i;:::-;3911:3;3904:37;3829:118;;:::o;3953:222::-;4046:4;4084:2;4073:9;4069:18;4061:26;;4097:71;4165:1;4154:9;4150:17;4141:6;4097:71;:::i;:::-;3953:222;;;;:::o;4181:619::-;4258:6;4266;4274;4323:2;4311:9;4302:7;4298:23;4294:32;4291:119;;;4329:79;;:::i;:::-;4291:119;4449:1;4474:53;4519:7;4510:6;4499:9;4495:22;4474:53;:::i;:::-;4464:63;;4420:117;4576:2;4602:53;4647:7;4638:6;4627:9;4623:22;4602:53;:::i;:::-;4592:63;;4547:118;4704:2;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4675:118;4181:619;;;;;:::o;4806:86::-;4841:7;4881:4;4874:5;4870:16;4859:27;;4806:86;;;:::o;4898:112::-;4981:22;4997:5;4981:22;:::i;:::-;4976:3;4969:35;4898:112;;:::o;5016:214::-;5105:4;5143:2;5132:9;5128:18;5120:26;;5156:67;5220:1;5209:9;5205:17;5196:6;5156:67;:::i;:::-;5016:214;;;;:::o;5236:329::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:118::-;5658:24;5676:5;5658:24;:::i;:::-;5653:3;5646:37;5571:118;;:::o;5695:222::-;5788:4;5826:2;5815:9;5811:18;5803:26;;5839:71;5907:1;5896:9;5892:17;5883:6;5839:71;:::i;:::-;5695:222;;;;:::o;5923:104::-;5968:7;5997:24;6015:5;5997:24;:::i;:::-;5986:35;;5923:104;;;:::o;6033:138::-;6114:32;6140:5;6114:32;:::i;:::-;6107:5;6104:43;6094:71;;6161:1;6158;6151:12;6094:71;6033:138;:::o;6177:155::-;6231:5;6269:6;6256:20;6247:29;;6285:41;6320:5;6285:41;:::i;:::-;6177:155;;;;:::o;6338:345::-;6405:6;6454:2;6442:9;6433:7;6429:23;6425:32;6422:119;;;6460:79;;:::i;:::-;6422:119;6580:1;6605:61;6658:7;6649:6;6638:9;6634:22;6605:61;:::i;:::-;6595:71;;6551:125;6338:345;;;;:::o;6689:474::-;6757:6;6765;6814:2;6802:9;6793:7;6789:23;6785:32;6782:119;;;6820:79;;:::i;:::-;6782:119;6940:1;6965:53;7010:7;7001:6;6990:9;6986:22;6965:53;:::i;:::-;6955:63;;6911:117;7067:2;7093:53;7138:7;7129:6;7118:9;7114:22;7093:53;:::i;:::-;7083:63;;7038:118;6689:474;;;;;:::o;7169:490::-;7245:6;7253;7302:2;7290:9;7281:7;7277:23;7273:32;7270:119;;;7308:79;;:::i;:::-;7270:119;7428:1;7453:53;7498:7;7489:6;7478:9;7474:22;7453:53;:::i;:::-;7443:63;;7399:117;7555:2;7581:61;7634:7;7625:6;7614:9;7610:22;7581:61;:::i;:::-;7571:71;;7526:126;7169:490;;;;;:::o;7665:180::-;7713:77;7710:1;7703:88;7810:4;7807:1;7800:15;7834:4;7831:1;7824:15;7851:320;7895:6;7932:1;7926:4;7922:12;7912:22;;7979:1;7973:4;7969:12;8000:18;7990:81;;8056:4;8048:6;8044:17;8034:27;;7990:81;8118:2;8110:6;8107:14;8087:18;8084:38;8081:84;;8137:18;;:::i;:::-;8081:84;7902:269;7851:320;;;:::o;8177:116::-;8247:21;8262:5;8247:21;:::i;:::-;8240:5;8237:32;8227:60;;8283:1;8280;8273:12;8227:60;8177:116;:::o;8299:137::-;8353:5;8384:6;8378:13;8369:22;;8400:30;8424:5;8400:30;:::i;:::-;8299:137;;;;:::o;8442:345::-;8509:6;8558:2;8546:9;8537:7;8533:23;8529:32;8526:119;;;8564:79;;:::i;:::-;8526:119;8684:1;8709:61;8762:7;8753:6;8742:9;8738:22;8709:61;:::i;:::-;8699:71;;8655:125;8442:345;;;;:::o;8793:180::-;8841:77;8838:1;8831:88;8938:4;8935:1;8928:15;8962:4;8959:1;8952:15;8979:305;9019:3;9038:20;9056:1;9038:20;:::i;:::-;9033:25;;9072:20;9090:1;9072:20;:::i;:::-;9067:25;;9226:1;9158:66;9154:74;9151:1;9148:81;9145:107;;;9232:18;;:::i;:::-;9145:107;9276:1;9273;9269:9;9262:16;;8979:305;;;;:::o;9290:143::-;9347:5;9378:6;9372:13;9363:22;;9394:33;9421:5;9394:33;:::i;:::-;9290:143;;;;:::o;9439:351::-;9509:6;9558:2;9546:9;9537:7;9533:23;9529:32;9526:119;;;9564:79;;:::i;:::-;9526:119;9684:1;9709:64;9765:7;9756:6;9745:9;9741:22;9709:64;:::i;:::-;9699:74;;9655:128;9439:351;;;;:::o;9796:60::-;9824:3;9845:5;9838:12;;9796:60;;;:::o;9862:142::-;9912:9;9945:53;9963:34;9972:24;9990:5;9972:24;:::i;:::-;9963:34;:::i;:::-;9945:53;:::i;:::-;9932:66;;9862:142;;;:::o;10010:126::-;10060:9;10093:37;10124:5;10093:37;:::i;:::-;10080:50;;10010:126;;;:::o;10142:134::-;10200:9;10233:37;10264:5;10233:37;:::i;:::-;10220:50;;10142:134;;;:::o;10282:147::-;10377:45;10416:5;10377:45;:::i;:::-;10372:3;10365:58;10282:147;;:::o;10435:348::-;10564:4;10602:2;10591:9;10587:18;10579:26;;10615:79;10691:1;10680:9;10676:17;10667:6;10615:79;:::i;:::-;10704:72;10772:2;10761:9;10757:18;10748:6;10704:72;:::i;:::-;10435:348;;;;;:::o;10789:191::-;10829:4;10849:20;10867:1;10849:20;:::i;:::-;10844:25;;10883:20;10901:1;10883:20;:::i;:::-;10878:25;;10922:1;10919;10916:8;10913:34;;;10927:18;;:::i;:::-;10913:34;10972:1;10969;10965:9;10957:17;;10789:191;;;;:::o
Swarm Source
ipfs://6188312ef581376b808774c32486612838403dec3d0a10091a1f4cd91b8539aa
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.