[ Download CSV Export ]
OVERVIEW
HUSD is a U.S. dollar-backed stablecoin issued by Stable Universal.
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x1c6fada7c70c4151cd440ed6988a9eb9c6727fdf9c6d597943cbeea258bea839 | 978909 | 106 days 57 mins ago | 0x342f3bc7ee6367b4a331439bfa94305d5f895a8e | Huobi: Heco-Peg HUSD Token | 1 HT |
[ Download CSV Export ]
Contract Name:
HRC20HUSD
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at hecoinfo.com on 2021-02-03 */ pragma solidity ^0.5.0; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } function isOwner() public view returns (bool) { return msg.sender == _owner; } // function renounceOwnership() public onlyOwner { // emit OwnershipTransferred(_owner, address(0)); // _owner = address(0); // } function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library Roles { struct Role { mapping (address => bool) bearer; } function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } contract PauserRole is Ownable { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; constructor () internal { _addPauser(msg.sender); } modifier onlyPauser() { require(isPauser(msg.sender), "PauserRole: caller does not have the Pauser role"); _; } function isPauser(address account) public view returns (bool) { return _pausers.has(account); } function addPauser(address account) public onlyOwner { _addPauser(account); } function removePauser(address account) public onlyOwner { _removePauser(account); } function renouncePauser() public { _removePauser(msg.sender); } function _addPauser(address account) internal { _pausers.add(account); emit PauserAdded(account); } function _removePauser(address account) internal { _pausers.remove(account); emit PauserRemoved(account); } } contract Pausable is PauserRole { event Paused(address account); event Unpaused(address account); bool private _paused; constructor () internal { _paused = false; } function paused() public view returns (bool) { return _paused; } modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } function pause() public onlyPauser whenNotPaused { _paused = true; emit Paused(msg.sender); } function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(msg.sender); } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } contract ERC20 is IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; event Issue(address indexed account, uint256 amount); event Redeem(address indexed account, uint256 value); function totalSupply() public view returns (uint256) { return _totalSupply; } function balanceOf(address account) public view returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); return true; } function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function _approve(address owner, address spender, uint256 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } function _issue(address account, uint256 amount) internal { require(account != address(0), "CoinFactory: issue to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); emit Issue(account, amount); } function _redeem(address account, uint256 value) internal { require(account != address(0), "CoinFactory: redeem from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); emit Redeem(account, value); } } contract ERC20Pausable is ERC20, Pausable { function transfer(address to, uint256 value) public whenNotPaused returns (bool) { return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) { return super.transferFrom(from, to, value); } function approve(address spender, uint256 value) public whenNotPaused returns (bool) { return super.approve(spender, value); } function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool) { return super.increaseAllowance(spender, addedValue); } function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool) { return super.decreaseAllowance(spender, subtractedValue); } } contract CoinFactoryAdminRole is Ownable { using Roles for Roles.Role; event CoinFactoryAdminRoleAdded(address indexed account); event CoinFactoryAdminRoleRemoved(address indexed account); Roles.Role private _coinFactoryAdmins; constructor () internal { _addCoinFactoryAdmin(msg.sender); } modifier onlyCoinFactoryAdmin() { require(isCoinFactoryAdmin(msg.sender), "CoinFactoryAdminRole: caller does not have the CoinFactoryAdmin role"); _; } function isCoinFactoryAdmin(address account) public view returns (bool) { return _coinFactoryAdmins.has(account); } function addCoinFactoryAdmin(address account) public onlyOwner { _addCoinFactoryAdmin(account); } function removeCoinFactoryAdmin(address account) public onlyOwner { _removeCoinFactoryAdmin(account); } function renounceCoinFactoryAdmin() public { _removeCoinFactoryAdmin(msg.sender); } function _addCoinFactoryAdmin(address account) internal { _coinFactoryAdmins.add(account); emit CoinFactoryAdminRoleAdded(account); } function _removeCoinFactoryAdmin(address account) internal { _coinFactoryAdmins.remove(account); emit CoinFactoryAdminRoleRemoved(account); } } contract CoinFactory is ERC20, CoinFactoryAdminRole { function issue(address account, uint256 amount) public onlyCoinFactoryAdmin returns (bool) { _issue(account, amount); return true; } function redeem(address account, uint256 amount) public returns (bool) { require(msg.sender == account || isCoinFactoryAdmin(msg.sender), "CoinFactoryAdminRole: only address onwer or CoinFactoryAdmin can redeem"); _redeem(account, amount); return true; } } contract BlacklistAdminRole is Ownable { using Roles for Roles.Role; event BlacklistAdminAdded(address indexed account); event BlacklistAdminRemoved(address indexed account); Roles.Role private _blacklistAdmins; constructor () internal { _addBlacklistAdmin(msg.sender); } modifier onlyBlacklistAdmin() { require(isBlacklistAdmin(msg.sender), "BlacklistAdminRole: caller does not have the BlacklistAdmin role"); _; } function isBlacklistAdmin(address account) public view returns (bool) { return _blacklistAdmins.has(account); } function addBlacklistAdmin(address account) public onlyOwner { _addBlacklistAdmin(account); } function removeBlacklistAdmin(address account) public onlyOwner { _removeBlacklistAdmin(account); } function renounceBlacklistAdmin() public { _removeBlacklistAdmin(msg.sender); } function _addBlacklistAdmin(address account) internal { _blacklistAdmins.add(account); emit BlacklistAdminAdded(account); } function _removeBlacklistAdmin(address account) internal { _blacklistAdmins.remove(account); emit BlacklistAdminRemoved(account); } } contract Blacklist is ERC20, BlacklistAdminRole { mapping (address => bool) private _blacklist; event BlacklistAdded(address indexed account); event BlacklistRemoved(address indexed account); function isBlacklist(address account) public view returns (bool) { return _blacklist[account]; } function addBlacklist(address[] memory accounts) public onlyBlacklistAdmin returns (bool) { for(uint i = 0; i < accounts.length; i++) { _addBlacklist(accounts[i]); } } function removeBlacklist(address[] memory accounts) public onlyBlacklistAdmin returns (bool) { for(uint i = 0; i < accounts.length; i++) { _removeBlacklist(accounts[i]); } } function _addBlacklist(address account) internal { _blacklist[account] = true; emit BlacklistAdded(account); } function _removeBlacklist(address account) internal { _blacklist[account] = false; emit BlacklistRemoved(account); } } contract HRC20HUSD is ERC20, ERC20Pausable, CoinFactory, Blacklist { string public name; string public symbol; uint8 public decimals; uint256 private _totalSupply; constructor (string memory _name, string memory _symbol, uint8 _decimals) public { _totalSupply = 0; name = _name; symbol = _symbol; decimals = _decimals; } function transfer(address to, uint256 value) public whenNotPaused returns (bool) { require(!isBlacklist(msg.sender), "Token: caller in blacklist can't transfer"); require(!isBlacklist(to), "Token: not allow to transfer to recipient address in blacklist"); return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) { require(!isBlacklist(msg.sender), "Token: caller in blacklist can't transferFrom"); require(!isBlacklist(from), "Token: from in blacklist can't transfer"); require(!isBlacklist(to), "Token: not allow to transfer to recipient address in blacklist"); return super.transferFrom(from, to, value); } }
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"}],"payable":false,"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":"account","type":"address"}],"name":"BlacklistAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BlacklistAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BlacklistAdminRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BlacklistRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"CoinFactoryAdminRoleAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"CoinFactoryAdminRoleRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Issue","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Redeem","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"constant":false,"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"addBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBlacklistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addCoinFactoryAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklistAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isCoinFactoryAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"issue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"removeBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBlacklistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeCoinFactoryAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceBlacklistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceCoinFactoryAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162003bee38038062003bee833981810160405260608110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b838201915060208201858111156200012c57600080fd5b82518660018202830111640100000000821117156200014a57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018057808201518184015260208101905062000163565b50505050905090810190601f168015620001ae5780820380516001836020036101000a031916815260200191505b5060405260200180519060200190929190505050336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36200028f336200032a60201b60201c565b6000600560006101000a81548160ff021916908315150217905550620002bb336200038b60201b60201c565b620002cc33620003ec60201b60201c565b6000600c819055508260099080519060200190620002ec92919062000611565b5081600a90805190602001906200030592919062000611565b5080600b60006101000a81548160ff021916908360ff160217905550505050620006c0565b620003458160046200044d60201b62002e391790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b620003a68160066200044d60201b62002e391790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f9e8b5fbf24fd7f86d2666e8f27ffdeb7c0aa870faa1980ad7290677152938dfa60405160405180910390a250565b620004078160076200044d60201b62002e391790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167fa6124c7f565d239231ddc9de42e684db7443c994c658117542be9c50f561943860405160405180910390a250565b6200045f82826200053160201b60201c565b15620004d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062003bcc6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200065457805160ff191683800117855562000685565b8280016001018555821562000685579182015b828111156200068457825182559160200191906001019062000667565b5b50905062000694919062000698565b5090565b620006bd91905b80821115620006b95760008160009055506001016200069f565b5090565b90565b6134fc80620006d06000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c80636ef8d66d1161011a57806395d89b41116100ad578063cf7d6db71161007c578063cf7d6db714610b19578063d3ce790514610b75578063dd62ed3e14610bb9578063e5c855c914610c31578063f2fde38b14610c7557610206565b806395d89b4114610986578063998b479214610a09578063a457c2d714610a4d578063a9059cbb14610ab357610206565b80638456cb59116100e95780638456cb59146108aa578063867904b4146108b45780638da5cb5b1461091a5780638f32d59b1461096457610206565b80636ef8d66d1461073457806370a082311461073e5780637911ef9d1461079657806382dc1ec41461086657610206565b806332068e911161019d5780633f4ba83a1161016c5780633f4ba83a1461062457806346fbf68e1461062e5780635c975abb1461068a5780635e612bab146106ac5780636b2c0f55146106f057610206565b806332068e9114610488578063333e99db1461049257806339509351146104ee5780633d2cc56c1461055457610206565b80631e9a6950116101d95780631e9a69501461036e57806323b872dd146103d4578063243f24731461045a578063313ce5671461046457610206565b806306fdde031461020b578063095ea7b31461028e57806316d2e650146102f457806318160ddd14610350575b600080fd5b610213610cb9565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610253578082015181840152602081019050610238565b50505050905090810190601f1680156102805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102da600480360360408110156102a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d57565b604051808215151515815260200191505060405180910390f35b6103366004803603602081101561030a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dee565b604051808215151515815260200191505060405180910390f35b610358610e0b565b6040518082815260200191505060405180910390f35b6103ba6004803603604081101561038457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e15565b604051808215151515815260200191505060405180910390f35b610440600480360360608110156103ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ebf565b604051808215151515815260200191505060405180910390f35b610462611075565b005b61046c611080565b604051808260ff1660ff16815260200191505060405180910390f35b610490611093565b005b6104d4600480360360208110156104a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061109e565b604051808215151515815260200191505060405180910390f35b61053a6004803603604081101561050457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110f4565b604051808215151515815260200191505060405180910390f35b61060a6004803603602081101561056a57600080fd5b810190808035906020019064010000000081111561058757600080fd5b82018360208201111561059957600080fd5b803590602001918460208302840111640100000000831117156105bb57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929050505061118b565b604051808215151515815260200191505060405180910390f35b61062c611229565b005b6106706004803603602081101561064457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611389565b604051808215151515815260200191505060405180910390f35b6106926113a6565b604051808215151515815260200191505060405180910390f35b6106ee600480360360208110156106c257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113bd565b005b6107326004803603602081101561070657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611443565b005b61073c6114c9565b005b6107806004803603602081101561075457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114d4565b6040518082815260200191505060405180910390f35b61084c600480360360208110156107ac57600080fd5b81019080803590602001906401000000008111156107c957600080fd5b8201836020820111156107db57600080fd5b803590602001918460208302840111640100000000831117156107fd57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929050505061151d565b604051808215151515815260200191505060405180910390f35b6108a86004803603602081101561087c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115bb565b005b6108b2611641565b005b610900600480360360408110156108ca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117a2565b604051808215151515815260200191505060405180910390f35b610922611816565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61096c61183f565b604051808215151515815260200191505060405180910390f35b61098e611896565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109ce5780820151818401526020810190506109b3565b50505050905090810190601f1680156109fb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a4b60048036036020811015610a1f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611934565b005b610a9960048036036040811015610a6357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119ba565b604051808215151515815260200191505060405180910390f35b610aff60048036036040811015610ac957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a51565b604051808215151515815260200191505060405180910390f35b610b5b60048036036020811015610b2f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ba6565b604051808215151515815260200191505060405180910390f35b610bb760048036036020811015610b8b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bc3565b005b610c1b60048036036040811015610bcf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c49565b6040518082815260200191505060405180910390f35b610c7360048036036020811015610c4757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cd0565b005b610cb760048036036020811015610c8b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d56565b005b60098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d4f5780601f10610d2457610100808354040283529160200191610d4f565b820191906000526020600020905b815481529060010190602001808311610d3257829003601f168201915b505050505081565b6000600560009054906101000a900460ff1615610ddc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610de68383611ddc565b905092915050565b6000610e04826007611df390919063ffffffff16565b9050919050565b6000600354905090565b60008273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e565750610e5533611ba6565b5b610eab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260478152602001806132b46047913960600191505060405180910390fd5b610eb58383611ed1565b6001905092915050565b6000600560009054906101000a900460ff1615610f44576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610f4d3361109e565b15610fa3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d81526020018061349b602d913960400191505060405180910390fd5b610fac8461109e565b15611002576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602781526020018061328d6027913960400191505060405180910390fd5b61100b8361109e565b15611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180613439603e913960400191505060405180910390fd5b61106c8484846120bf565b90509392505050565b61107e33612158565b565b600b60009054906101000a900460ff1681565b61109c336121b2565b565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600560009054906101000a900460ff1615611179576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611183838361220c565b905092915050565b600061119633610dee565b6111eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604081526020018061334d6040913960400191505060405180910390fd5b60008090505b82518110156112235761121683828151811061120957fe5b60200260200101516122b1565b80806001019150506111f1565b50919050565b61123233611389565b611287576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806132156030913960400191505060405180910390fd5b600560009054906101000a900460ff16611309576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600061139f826004611df390919063ffffffff16565b9050919050565b6000600560009054906101000a900460ff16905090565b6113c561183f565b611437576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61144081612158565b50565b61144b61183f565b6114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6114c68161234f565b50565b6114d23361234f565b565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061152833610dee565b61157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604081526020018061334d6040913960400191505060405180910390fd5b60008090505b82518110156115b5576115a883828151811061159b57fe5b60200260200101516123a9565b8080600101915050611583565b50919050565b6115c361183f565b611635576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61163e81612447565b50565b61164a33611389565b61169f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806132156030913960400191505060405180910390fd5b600560009054906101000a900460ff1615611722576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60006117ad33611ba6565b611802576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604481526020018061338d6044913960600191505060405180910390fd5b61180c83836124a1565b6001905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b600a8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561192c5780601f106119015761010080835404028352916020019161192c565b820191906000526020600020905b81548152906001019060200180831161190f57829003601f168201915b505050505081565b61193c61183f565b6119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6119b78161268f565b50565b6000600560009054906101000a900460ff1615611a3f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611a4983836126e9565b905092915050565b6000600560009054906101000a900460ff1615611ad6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611adf3361109e565b15611b35576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806133246029913960400191505060405180910390fd5b611b3e8361109e565b15611b94576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180613439603e913960400191505060405180910390fd5b611b9e838361278e565b905092915050565b6000611bbc826006611df390919063ffffffff16565b9050919050565b611bcb61183f565b611c3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611c4681612825565b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611cd861183f565b611d4a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611d53816121b2565b50565b611d5e61183f565b611dd0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611dd98161287f565b50565b6000611de93384846129c3565b6001905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e7a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806133f26022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f57576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806132fb6029913960400191505060405180910390fd5b611f6c81600354612bba90919063ffffffff16565b600381905550611fc481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bba90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a38173ffffffffffffffffffffffffffffffffffffffff167f222838db2794d11532d940e8dec38ae307ed0b63cd97c233322e221f998767a6826040518082815260200191505060405180910390a25050565b6000600560009054906101000a900460ff1615612144576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61214f848484612c43565b90509392505050565b61216c816007612cf490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fba73eacdfe215f630abb6a8a78e5be613e50918b52e691bba35d46c06e20d6c860405160405180910390a250565b6121c6816006612cf490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f15bf0aef1cc552f782bc5ad7121d42ea78efbfbec8dd9e16fb9f37967ad763fb60405160405180910390a250565b60006122a733846122a285600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612db190919063ffffffff16565b6129c3565b6001905092915050565b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f44d5fe68b00f68950fb9c1ff0a61ef7f747b1a36359a7e3a7f3324db4b87896760405160405180910390a250565b612363816004612cf490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f1747ca720b1a174a464b6513ace29b1d3190b5f632b9f34147017c81425bfde860405160405180910390a250565b61245b816004612e3990919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612527576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806131cc6026913960400191505060405180910390fd5b61253c81600354612db190919063ffffffff16565b60038190555061259481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612db190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a38173ffffffffffffffffffffffffffffffffffffffff167fc65a3f767206d2fdcede0b094a4840e01c0dd0be1888b5ba800346eaa0123c16826040518082815260200191505060405180910390a25050565b6126a3816006612e3990919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f9e8b5fbf24fd7f86d2666e8f27ffdeb7c0aa870faa1980ad7290677152938dfa60405160405180910390a250565b6000612784338461277f85600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bba90919063ffffffff16565b6129c3565b6001905092915050565b6000600560009054906101000a900460ff1615612813576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61281d8383612f14565b905092915050565b612839816007612e3990919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fa6124c7f565d239231ddc9de42e684db7443c994c658117542be9c50f561943860405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806132456026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806134776024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612acf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061326b6022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600082821115612c32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b6000612c50848484612f2b565b612ce98433612ce485600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bba90919063ffffffff16565b6129c3565b600190509392505050565b612cfe8282611df3565b612d53576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806133d16021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080828401905083811015612e2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b612e438282611df3565b15612eb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000612f21338484612f2b565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fb1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806134146025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613037576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806131f26023913960400191505060405180910390fd5b61308981600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bba90919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061311e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612db190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505056fe436f696e466163746f72793a20697373756520746f20746865207a65726f206164647265737345524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373546f6b656e3a2066726f6d20696e20626c61636b6c6973742063616e2774207472616e73666572436f696e466163746f727941646d696e526f6c653a206f6e6c792061646472657373206f6e776572206f7220436f696e466163746f727941646d696e2063616e2072656465656d436f696e466163746f72793a2072656465656d2066726f6d20746865207a65726f2061646472657373546f6b656e3a2063616c6c657220696e20626c61636b6c6973742063616e2774207472616e73666572426c61636b6c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f7420686176652074686520426c61636b6c69737441646d696e20726f6c65436f696e466163746f727941646d696e526f6c653a2063616c6c657220646f6573206e6f7420686176652074686520436f696e466163746f727941646d696e20726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373546f6b656e3a206e6f7420616c6c6f7720746f207472616e7366657220746f20726563697069656e74206164647265737320696e20626c61636b6c69737445524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373546f6b656e3a2063616c6c657220696e20626c61636b6c6973742063616e2774207472616e7366657246726f6da265627a7a72315820643a013f5f7bb99f428ddc95964bfb8b6be52e6ecc117ea40df37835c215b19264736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000134865636f2d506567204855534420546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044855534400000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000134865636f2d506567204855534420546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044855534400000000000000000000000000000000000000000000000000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [4] : 4865636f2d506567204855534420546f6b656e00000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4855534400000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
13790:1176:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13790:1176:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13866:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;13866:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9071:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9071:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11950:125;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11950:125:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5826:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11155:286;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11155:286:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14519:436;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14519:436:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12319:93;;;:::i;:::-;;13918:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10489:97;;;:::i;:::-;;12957:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12957:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;9219:167;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9219:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13075:203;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13075:203:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;13075:203:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;13075:203:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;13075:203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;13075:203:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4634:118;;;:::i;:::-;;3333:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3333:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4222:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12198:113;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12198:113:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;3549:97;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3549:97:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;3654:77;;;:::i;:::-;;5925:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5925:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13286:209;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13286:209:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;13286:209:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;13286:209:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;13286:209:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;13286:209:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3450:91;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3450:91:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;4510:116;;;:::i;:::-;;10992:155;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10992:155:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1404:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1605:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13891:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;13891:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10245:111;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10245:111:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;9394:177;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9394:177:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14188:323;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14188:323:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10108:129;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10108:129:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12083:107;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12083:107:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;6207:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6207:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10364:117;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10364:117:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;1865:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1865:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;13866:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9071:140::-;9150:4;4353:7;;;;;;;;;;;4352:8;4344:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9174:29;9188:7;9197:5;9174:13;:29::i;:::-;9167:36;;9071:140;;;;:::o;11950:125::-;12014:4;12038:29;12059:7;12038:16;:20;;:29;;;;:::i;:::-;12031:36;;11950:125;;;:::o;5826:91::-;5870:7;5897:12;;5890:19;;5826:91;:::o;11155:286::-;11220:4;11259:7;11245:21;;:10;:21;;;:55;;;;11270:30;11289:10;11270:18;:30::i;:::-;11245:55;11237:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11387:24;11395:7;11404:6;11387:7;:24::i;:::-;11429:4;11422:11;;11155:286;;;;:::o;14519:436::-;14612:4;4353:7;;;;;;;;;;;4352:8;4344:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14638:23;14650:10;14638:11;:23::i;:::-;14637:24;14629:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14731:17;14743:4;14731:11;:17::i;:::-;14730:18;14722:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14812:15;14824:2;14812:11;:15::i;:::-;14811:16;14803:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14912:35;14931:4;14937:2;14941:5;14912:18;:35::i;:::-;14905:42;;14519:436;;;;;:::o;12319:93::-;12371:33;12393:10;12371:21;:33::i;:::-;12319:93::o;13918:21::-;;;;;;;;;;;;;:::o;10489:97::-;10543:35;10567:10;10543:23;:35::i;:::-;10489:97::o;12957:110::-;13016:4;13040:10;:19;13051:7;13040:19;;;;;;;;;;;;;;;;;;;;;;;;;13033:26;;12957:110;;;:::o;9219:167::-;9310:4;4353:7;;;;;;;;;;;4352:8;4344:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9334:44;9358:7;9367:10;9334:23;:44::i;:::-;9327:51;;9219:167;;;;:::o;13075:203::-;13159:4;11825:28;11842:10;11825:16;:28::i;:::-;11817:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13180:6;13189:1;13180:10;;13176:95;13196:8;:15;13192:1;:19;13176:95;;;13233:26;13247:8;13256:1;13247:11;;;;;;;;;;;;;;13233:13;:26::i;:::-;13213:3;;;;;;;13176:95;;;;13075:203;;;:::o;4634:118::-;3232:20;3241:10;3232:8;:20::i;:::-;3224:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4450:7;;;;;;;;;;;4442:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4703:5;4693:7;;:15;;;;;;;;;;;;;;;;;;4724:20;4733:10;4724:20;;;;;;;;;;;;;;;;;;;;;;4634:118::o;3333:109::-;3389:4;3413:21;3426:7;3413:8;:12;;:21;;;;:::i;:::-;3406:28;;3333:109;;;:::o;4222:78::-;4261:4;4285:7;;;;;;;;;;;4278:14;;4222:78;:::o;12198:113::-;1531:9;:7;:9::i;:::-;1523:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12273:30;12295:7;12273:21;:30::i;:::-;12198:113;:::o;3549:97::-;1531:9;:7;:9::i;:::-;1523:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3616:22;3630:7;3616:13;:22::i;:::-;3549:97;:::o;3654:77::-;3698:25;3712:10;3698:13;:25::i;:::-;3654:77::o;5925:110::-;5982:7;6009:9;:18;6019:7;6009:18;;;;;;;;;;;;;;;;6002:25;;5925:110;;;:::o;13286:209::-;13373:4;11825:28;11842:10;11825:16;:28::i;:::-;11817:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13394:6;13403:1;13394:10;;13390:98;13410:8;:15;13406:1;:19;13390:98;;;13447:29;13464:8;13473:1;13464:11;;;;;;;;;;;;;;13447:16;:29::i;:::-;13427:3;;;;;;;13390:98;;;;13286:209;;;:::o;3450:91::-;1531:9;:7;:9::i;:::-;1523:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3514:19;3525:7;3514:10;:19::i;:::-;3450:91;:::o;4510:116::-;3232:20;3241:10;3232:8;:20::i;:::-;3224:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4353:7;;;;;;;;;;;4352:8;4344:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4580:4;4570:7;;:14;;;;;;;;;;;;;;;;;;4600:18;4607:10;4600:18;;;;;;;;;;;;;;;;;;;;;;4510:116::o;10992:155::-;11077:4;9977:30;9996:10;9977:18;:30::i;:::-;9969:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11094:23;11101:7;11110:6;11094;:23::i;:::-;11135:4;11128:11;;10992:155;;;;:::o;1404:79::-;1442:7;1469:6;;;;;;;;;;;1462:13;;1404:79;:::o;1605:92::-;1645:4;1683:6;;;;;;;;;;;1669:20;;:10;:20;;;1662:27;;1605:92;:::o;13891:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10245:111::-;1531:9;:7;:9::i;:::-;1523:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10319:29;10340:7;10319:20;:29::i;:::-;10245:111;:::o;9394:177::-;9490:4;4353:7;;;;;;;;;;;4352:8;4344:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9514:49;9538:7;9547:15;9514:23;:49::i;:::-;9507:56;;9394:177;;;;:::o;14188:323::-;14263:4;4353:7;;;;;;;;;;;4352:8;4344:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14289:23;14301:10;14289:11;:23::i;:::-;14288:24;14280:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14378:15;14390:2;14378:11;:15::i;:::-;14377:16;14369:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14478:25;14493:2;14497:5;14478:14;:25::i;:::-;14471:32;;14188:323;;;;:::o;10108:129::-;10174:4;10198:31;10221:7;10198:18;:22;;:31;;;;:::i;:::-;10191:38;;10108:129;;;:::o;12083:107::-;1531:9;:7;:9::i;:::-;1523:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12155:27;12174:7;12155:18;:27::i;:::-;12083:107;:::o;6207:134::-;6279:7;6306:11;:18;6318:5;6306:18;;;;;;;;;;;;;;;:27;6325:7;6306:27;;;;;;;;;;;;;;;;6299:34;;6207:134;;;;:::o;10364:117::-;1531:9;:7;:9::i;:::-;1523:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10441:32;10465:7;10441:23;:32::i;:::-;10364:117;:::o;1865:109::-;1531:9;:7;:9::i;:::-;1523:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1938:28;1957:8;1938:18;:28::i;:::-;1865:109;:::o;6349:148::-;6414:4;6431:36;6440:10;6452:7;6461:5;6431:8;:36::i;:::-;6485:4;6478:11;;6349:148;;;;:::o;2691:203::-;2763:4;2807:1;2788:21;;:7;:21;;;;2780:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2866:4;:11;;:20;2878:7;2866:20;;;;;;;;;;;;;;;;;;;;;;;;;2859:27;;2691:203;;;;:::o;8349:354::-;8445:1;8426:21;;:7;:21;;;;8418:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8521:23;8538:5;8521:12;;:16;;:23;;;;:::i;:::-;8506:12;:38;;;;8576:29;8599:5;8576:9;:18;8586:7;8576:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;8555:9;:18;8565:7;8555:18;;;;;;;;;;;;;;;:50;;;;8647:1;8621:36;;8630:7;8621:36;;;8651:5;8621:36;;;;;;;;;;;;;;;;;;8680:7;8673:22;;;8689:5;8673:22;;;;;;;;;;;;;;;;;;8349:354;;:::o;8903:160::-;8996:4;4353:7;;;;;;;;;;;4352:8;4344:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9020:35;9039:4;9045:2;9049:5;9020:18;:35::i;:::-;9013:42;;8903:160;;;;;:::o;12574:154::-;12642:32;12666:7;12642:16;:23;;:32;;;;:::i;:::-;12712:7;12690:30;;;;;;;;;;;;12574:154;:::o;10758:164::-;10828:34;10854:7;10828:18;:25;;:34;;;;:::i;:::-;10906:7;10878:36;;;;;;;;;;;;10758:164;:::o;6769:206::-;6849:4;6866:79;6875:10;6887:7;6896:48;6933:10;6896:11;:23;6908:10;6896:23;;;;;;;;;;;;;;;:32;6920:7;6896:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;6866:8;:79::i;:::-;6963:4;6956:11;;6769:206;;;;:::o;13503:133::-;13585:4;13563:10;:19;13574:7;13563:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;13620:7;13605:23;;;;;;;;;;;;13503:133;:::o;3869:130::-;3929:24;3945:7;3929:8;:15;;:24;;;;:::i;:::-;3983:7;3969:22;;;;;;;;;;;;3869:130;:::o;13644:139::-;13729:5;13707:10;:19;13718:7;13707:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;13767:7;13750:25;;;;;;;;;;;;13644:139;:::o;3739:122::-;3796:21;3809:7;3796:8;:12;;:21;;;;:::i;:::-;3845:7;3833:20;;;;;;;;;;;;3739:122;:::o;7987:354::-;8083:1;8064:21;;:7;:21;;;;8056:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8156:24;8173:6;8156:12;;:16;;:24;;;;:::i;:::-;8141:12;:39;;;;8212:30;8235:6;8212:9;:18;8222:7;8212:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;8191:9;:18;8201:7;8191:18;;;;;;;;;;;;;;;:51;;;;8279:7;8258:37;;8275:1;8258:37;;;8288:6;8258:37;;;;;;;;;;;;;;;;;;8317:7;8311:22;;;8326:6;8311:22;;;;;;;;;;;;;;;;;;7987:354;;:::o;10594:156::-;10661:31;10684:7;10661:18;:22;;:31;;;;:::i;:::-;10734:7;10708:34;;;;;;;;;;;;10594:156;:::o;6983:216::-;7068:4;7085:84;7094:10;7106:7;7115:53;7152:15;7115:11;:23;7127:10;7115:23;;;;;;;;;;;;;;;:32;7139:7;7115:32;;;;;;;;;;;;;;;;:36;;:53;;;;:::i;:::-;7085:8;:84::i;:::-;7187:4;7180:11;;6983:216;;;;:::o;8763:132::-;8838:4;4353:7;;;;;;;;;;;4352:8;4344:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8862:25;8877:2;8881:5;8862:14;:25::i;:::-;8855:32;;8763:132;;;;:::o;12420:146::-;12485:29;12506:7;12485:16;:20;;:29;;;;:::i;:::-;12550:7;12530:28;;;;;;;;;;;;12420:146;:::o;1982:229::-;2076:1;2056:22;;:8;:22;;;;2048:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2166:8;2137:38;;2158:6;;;;;;;;;;;2137:38;;;;;;;;;;;;2195:8;2186:6;;:17;;;;;;;;;;;;;;;;;;1982:229;:::o;7644:335::-;7754:1;7737:19;;:5;:19;;;;7729:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7835:1;7816:21;;:7;:21;;;;7808:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7919:5;7889:11;:18;7901:5;7889:18;;;;;;;;;;;;;;;:27;7908:7;7889:27;;;;;;;;;;;;;;;:35;;;;7956:7;7940:31;;7949:5;7940:31;;;7965:5;7940:31;;;;;;;;;;;;;;;;;;7644:335;;;:::o;244:184::-;302:7;335:1;330;:6;;322:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;382:9;398:1;394;:5;382:17;;419:1;412:8;;;244:184;;;;:::o;6505:256::-;6594:4;6611:36;6621:6;6629:9;6640:6;6611:9;:36::i;:::-;6658:73;6667:6;6675:10;6687:43;6723:6;6687:11;:19;6699:6;6687:19;;;;;;;;;;;;;;;:31;6707:10;6687:31;;;;;;;;;;;;;;;;:35;;:43;;;;:::i;:::-;6658:8;:73::i;:::-;6749:4;6742:11;;6505:256;;;;;:::o;2500:183::-;2580:18;2584:4;2590:7;2580:3;:18::i;:::-;2572:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2670:5;2647:4;:11;;:20;2659:7;2647:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;2500:183;;:::o;55:181::-;113:7;133:9;149:1;145;:5;133:17;;174:1;169;:6;;161:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227:1;220:8;;;55:181;;;;:::o;2314:178::-;2392:18;2396:4;2402:7;2392:3;:18::i;:::-;2391:19;2383:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2480:4;2457;:11;;:20;2469:7;2457:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;2314:178;;:::o;6043:156::-;6112:4;6129:40;6139:10;6151:9;6162:6;6129:9;:40::i;:::-;6187:4;6180:11;;6043:156;;;;:::o;7207:429::-;7323:1;7305:20;;:6;:20;;;;7297:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7407:1;7386:23;;:9;:23;;;;7378:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7482:29;7504:6;7482:9;:17;7492:6;7482:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;7462:9;:17;7472:6;7462:17;;;;;;;;;;;;;;;:49;;;;7545:32;7570:6;7545:9;:20;7555:9;7545:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;7522:9;:20;7532:9;7522:20;;;;;;;;;;;;;;;:55;;;;7610:9;7593:35;;7602:6;7593:35;;;7621:6;7593:35;;;;;;;;;;;;;;;;;;7207:429;;;:::o
Swarm Source
bzzr://643a013f5f7bb99f428ddc95964bfb8b6be52e6ecc117ea40df37835c215b192
Age | Block | Fee Address | Jailed | Incoming |
---|