add 771602f7Adds two numbers, throws on overflow.
| inputs | 0 | uint256 | a | |
| 1 | uint256 | b |
div a391c15bInteger division of two numbers, truncating the quotient.
| inputs | 0 | uint256 | a | |
| 1 | uint256 | b |
mul c8a4ac9cMultiplies two numbers, throws on overflow.
| inputs | 0 | uint256 | a | |
| 1 | uint256 | b |
pwr f74e9bdex to the power of y
| inputs | 0 | uint256 | x | |
| 1 | uint256 | y |
sq 08fe23cagives square. multiplies x by x
| inputs | 0 | uint256 | x |
sqrt 677342cegives square root of given x.
| inputs | 0 | uint256 | x |
sub b67d77c5Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
| inputs | 0 | uint256 | a | |
| 1 | uint256 | b |